diff --git a/src/grammar.json b/src/grammar.json index e911ef3..d51952e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -8591,21 +8591,190 @@ ] }, "line_comment": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": ".*" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "\\/\\/" + } + } + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "doc", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_line_doc_comment" + }, + "named": true, + "value": "doc_comment" + } + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": ".*" + } + } + } + ] + } + ] + }, + "_line_doc_comment": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "outer", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_outer_line_doc_comment" + }, + "named": true, + "value": "outer_doc_comment" } - ] + }, + { + "type": "FIELD", + "name": "inner", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inner_line_doc_comment" + }, + "named": true, + "value": "inner_doc_comment" + } + } + ] + }, + "_inner_line_doc_comment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "STRING", + "value": "!" + } } }, + "_outer_line_doc_comment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "\\/[^\\/]" + } + } + }, + "block_comment": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "doc", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_block_doc_comment" + }, + "named": true, + "value": "doc_comment" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "*/" + } + ] + }, + "_block_doc_comment": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "inner", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_inner_block_doc_comment" + }, + "named": true, + "value": "inner_doc_comment" + } + }, + { + "type": "FIELD", + "name": "outer", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_outer_block_doc_comment" + }, + "named": true, + "value": "outer_doc_comment" + } + } + ] + }, "_path": { "type": "CHOICE", "members": [ @@ -8837,7 +9006,19 @@ }, { "type": "SYMBOL", - "name": "block_comment" + "name": "_outer_block_doc_comment" + }, + { + "type": "SYMBOL", + "name": "_inner_block_doc_comment" + }, + { + "type": "STRING", + "value": "*/" + }, + { + "type": "SYMBOL", + "name": "_error_sentinel" } ], "inline": [ @@ -8859,4 +9040,3 @@ "_pattern" ] } - diff --git a/src/node-types.json b/src/node-types.json index ac4bd26..c2b6169 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -881,6 +881,22 @@ ] } }, + { + "type": "block_comment", + "named": true, + "fields": { + "doc": { + "multiple": false, + "required": false, + "types": [ + { + "type": "doc_comment", + "named": true + } + ] + } + } + }, { "type": "boolean_literal", "named": true, @@ -1451,6 +1467,32 @@ ] } }, + { + "type": "doc_comment", + "named": true, + "fields": { + "inner": { + "multiple": false, + "required": false, + "types": [ + { + "type": "inner_doc_comment", + "named": true + } + ] + }, + "outer": { + "multiple": false, + "required": false, + "types": [ + { + "type": "outer_doc_comment", + "named": true + } + ] + } + } + }, { "type": "dynamic_type", "named": true, @@ -2589,6 +2631,22 @@ ] } }, + { + "type": "line_comment", + "named": true, + "fields": { + "doc": { + "multiple": false, + "required": false, + "types": [ + { + "type": "doc_comment", + "named": true + } + ] + } + } + }, { "type": "loop_expression", "named": true, @@ -4835,6 +4893,10 @@ "type": "*", "named": false }, + { + "type": "*/", + "named": false + }, { "type": "*=", "named": false @@ -4883,6 +4945,14 @@ "type": "/", "named": false }, + { + "type": "/*", + "named": false + }, + { + "type": "//", + "named": false + }, { "type": "/=", "named": false @@ -4991,10 +5061,6 @@ "type": "block", "named": false }, - { - "type": "block_comment", - "named": true - }, { "type": "break", "named": false @@ -5083,6 +5149,10 @@ "type": "in", "named": false }, + { + "type": "inner_doc_comment", + "named": true + }, { "type": "integer_literal", "named": true @@ -5099,10 +5169,6 @@ "type": "lifetime", "named": false }, - { - "type": "line_comment", - "named": true - }, { "type": "literal", "named": false @@ -5139,6 +5205,10 @@ "type": "mutable_specifier", "named": true }, + { + "type": "outer_doc_comment", + "named": true + }, { "type": "pat", "named": false diff --git a/src/parser.c b/src/parser.c index d054d77..bdf0809 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3470 -#define LARGE_STATE_COUNT 858 -#define SYMBOL_COUNT 324 +#define STATE_COUNT 3511 +#define LARGE_STATE_COUNT 1006 +#define SYMBOL_COUNT 337 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 142 -#define EXTERNAL_TOKEN_COUNT 4 -#define FIELD_COUNT 28 +#define TOKEN_COUNT 151 +#define EXTERNAL_TOKEN_COUNT 7 +#define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 271 +#define PRODUCTION_ID_COUNT 274 enum ts_symbol_identifiers { sym_identifier = 1, @@ -148,203 +148,216 @@ enum ts_symbol_identifiers { sym_escape_sequence = 129, anon_sym_true = 130, anon_sym_false = 131, - sym_line_comment = 132, - sym_shebang = 133, - sym_self = 134, - sym_super = 135, - sym_crate = 136, - sym_metavariable = 137, - sym__string_content = 138, - sym_raw_string_literal = 139, - sym_float_literal = 140, - sym_block_comment = 141, - sym_source_file = 142, - sym__statement = 143, - sym_empty_statement = 144, - sym_expression_statement = 145, - sym_macro_definition = 146, - sym_macro_rule = 147, - sym__token_pattern = 148, - sym_token_tree_pattern = 149, - sym_token_binding_pattern = 150, - sym_token_repetition_pattern = 151, - sym_fragment_specifier = 152, - sym_token_tree = 153, - sym_token_repetition = 154, - sym_attribute_item = 155, - sym_inner_attribute_item = 156, - sym_attribute = 157, - sym_mod_item = 158, - sym_foreign_mod_item = 159, - sym_declaration_list = 160, - sym_struct_item = 161, - sym_union_item = 162, - sym_enum_item = 163, - sym_enum_variant_list = 164, - sym_enum_variant = 165, - sym_field_declaration_list = 166, - sym_field_declaration = 167, - sym_ordered_field_declaration_list = 168, - sym_extern_crate_declaration = 169, - sym_const_item = 170, - sym_static_item = 171, - sym_type_item = 172, - sym_function_item = 173, - sym_function_signature_item = 174, - sym_function_modifiers = 175, - sym_where_clause = 176, - sym_where_predicate = 177, - sym_impl_item = 178, - sym_trait_item = 179, - sym_associated_type = 180, - sym_trait_bounds = 181, - sym_higher_ranked_trait_bound = 182, - sym_removed_trait_bound = 183, - sym_type_parameters = 184, - sym_const_parameter = 185, - sym_constrained_type_parameter = 186, - sym_optional_type_parameter = 187, - sym_let_declaration = 188, - sym_use_declaration = 189, - sym__use_clause = 190, - sym_scoped_use_list = 191, - sym_use_list = 192, - sym_use_as_clause = 193, - sym_use_wildcard = 194, - sym_parameters = 195, - sym_self_parameter = 196, - sym_variadic_parameter = 197, - sym_parameter = 198, - sym_extern_modifier = 199, - sym_visibility_modifier = 200, - sym__type = 201, - sym_bracketed_type = 202, - sym_qualified_type = 203, - sym_lifetime = 204, - sym_array_type = 205, - sym_for_lifetimes = 206, - sym_function_type = 207, - sym_tuple_type = 208, - sym_unit_type = 209, - sym_generic_function = 210, - sym_generic_type = 211, - sym_generic_type_with_turbofish = 212, - sym_bounded_type = 213, - sym_type_arguments = 214, - sym_type_binding = 215, - sym_reference_type = 216, - sym_pointer_type = 217, - sym_empty_type = 218, - sym_abstract_type = 219, - sym_dynamic_type = 220, - sym__expression_except_range = 221, - sym__expression = 222, - sym_macro_invocation = 223, - sym_delim_token_tree = 224, - sym__delim_tokens = 225, - sym__non_delim_token = 226, - sym_scoped_identifier = 227, - sym_scoped_type_identifier_in_expression_position = 228, - sym_scoped_type_identifier = 229, - sym_range_expression = 230, - sym_unary_expression = 231, - sym_try_expression = 232, - sym_reference_expression = 233, - sym_binary_expression = 234, - sym_assignment_expression = 235, - sym_compound_assignment_expr = 236, - sym_type_cast_expression = 237, - sym_return_expression = 238, - sym_yield_expression = 239, - sym_call_expression = 240, - sym_arguments = 241, - sym_array_expression = 242, - sym_parenthesized_expression = 243, - sym_tuple_expression = 244, - sym_unit_expression = 245, - sym_struct_expression = 246, - sym_field_initializer_list = 247, - sym_shorthand_field_initializer = 248, - sym_field_initializer = 249, - sym_base_field_initializer = 250, - sym_if_expression = 251, - sym_let_condition = 252, - sym__let_chain = 253, - sym__condition = 254, - sym_else_clause = 255, - sym_match_expression = 256, - sym_match_block = 257, - sym_match_arm = 258, - sym_last_match_arm = 259, - sym_match_pattern = 260, - sym_while_expression = 261, - sym_loop_expression = 262, - sym_for_expression = 263, - sym_const_block = 264, - sym_closure_expression = 265, - sym_closure_parameters = 266, - sym_label = 267, - sym_break_expression = 268, - sym_continue_expression = 269, - sym_index_expression = 270, - sym_await_expression = 271, - sym_field_expression = 272, - sym_unsafe_block = 273, - sym_async_block = 274, - sym_try_block = 275, - sym_block = 276, - sym__pattern = 277, - sym_tuple_pattern = 278, - sym_slice_pattern = 279, - sym_tuple_struct_pattern = 280, - sym_struct_pattern = 281, - sym_field_pattern = 282, - sym_remaining_field_pattern = 283, - sym_mut_pattern = 284, - sym_range_pattern = 285, - sym_ref_pattern = 286, - sym_captured_pattern = 287, - sym_reference_pattern = 288, - sym_or_pattern = 289, - sym__literal = 290, - sym__literal_pattern = 291, - sym_negative_literal = 292, - sym_string_literal = 293, - sym_boolean_literal = 294, - aux_sym_source_file_repeat1 = 295, - aux_sym_macro_definition_repeat1 = 296, - aux_sym_token_tree_pattern_repeat1 = 297, - aux_sym_token_tree_repeat1 = 298, - aux_sym__non_special_token_repeat1 = 299, - aux_sym_declaration_list_repeat1 = 300, - aux_sym_enum_variant_list_repeat1 = 301, - aux_sym_enum_variant_list_repeat2 = 302, - aux_sym_field_declaration_list_repeat1 = 303, - aux_sym_ordered_field_declaration_list_repeat1 = 304, - aux_sym_function_modifiers_repeat1 = 305, - aux_sym_where_clause_repeat1 = 306, - aux_sym_trait_bounds_repeat1 = 307, - aux_sym_type_parameters_repeat1 = 308, - aux_sym_use_list_repeat1 = 309, - aux_sym_parameters_repeat1 = 310, - aux_sym_for_lifetimes_repeat1 = 311, - aux_sym_tuple_type_repeat1 = 312, - aux_sym_type_arguments_repeat1 = 313, - aux_sym_delim_token_tree_repeat1 = 314, - aux_sym_arguments_repeat1 = 315, - aux_sym_tuple_expression_repeat1 = 316, - aux_sym_field_initializer_list_repeat1 = 317, - aux_sym_match_block_repeat1 = 318, - aux_sym_closure_parameters_repeat1 = 319, - aux_sym_tuple_pattern_repeat1 = 320, - aux_sym_slice_pattern_repeat1 = 321, - aux_sym_struct_pattern_repeat1 = 322, - aux_sym_string_literal_repeat1 = 323, - alias_sym_closure_pattern = 324, - alias_sym_field_identifier = 325, - alias_sym_let_chain = 326, - alias_sym_shorthand_field_identifier = 327, - alias_sym_type_identifier = 328, + anon_sym_SLASH_SLASH = 132, + aux_sym_line_comment_token1 = 133, + aux_sym_line_comment_token2 = 134, + aux_sym_line_comment_token3 = 135, + sym__inner_line_doc_comment = 136, + sym__outer_line_doc_comment = 137, + anon_sym_SLASH_STAR = 138, + anon_sym_STAR_SLASH = 139, + sym_shebang = 140, + sym_self = 141, + sym_super = 142, + sym_crate = 143, + sym_metavariable = 144, + sym__string_content = 145, + sym_raw_string_literal = 146, + sym_float_literal = 147, + sym__outer_block_doc_comment = 148, + sym__inner_block_doc_comment = 149, + sym__error_sentinel = 150, + sym_source_file = 151, + sym__statement = 152, + sym_empty_statement = 153, + sym_expression_statement = 154, + sym_macro_definition = 155, + sym_macro_rule = 156, + sym__token_pattern = 157, + sym_token_tree_pattern = 158, + sym_token_binding_pattern = 159, + sym_token_repetition_pattern = 160, + sym_fragment_specifier = 161, + sym_token_tree = 162, + sym_token_repetition = 163, + sym_attribute_item = 164, + sym_inner_attribute_item = 165, + sym_attribute = 166, + sym_mod_item = 167, + sym_foreign_mod_item = 168, + sym_declaration_list = 169, + sym_struct_item = 170, + sym_union_item = 171, + sym_enum_item = 172, + sym_enum_variant_list = 173, + sym_enum_variant = 174, + sym_field_declaration_list = 175, + sym_field_declaration = 176, + sym_ordered_field_declaration_list = 177, + sym_extern_crate_declaration = 178, + sym_const_item = 179, + sym_static_item = 180, + sym_type_item = 181, + sym_function_item = 182, + sym_function_signature_item = 183, + sym_function_modifiers = 184, + sym_where_clause = 185, + sym_where_predicate = 186, + sym_impl_item = 187, + sym_trait_item = 188, + sym_associated_type = 189, + sym_trait_bounds = 190, + sym_higher_ranked_trait_bound = 191, + sym_removed_trait_bound = 192, + sym_type_parameters = 193, + sym_const_parameter = 194, + sym_constrained_type_parameter = 195, + sym_optional_type_parameter = 196, + sym_let_declaration = 197, + sym_use_declaration = 198, + sym__use_clause = 199, + sym_scoped_use_list = 200, + sym_use_list = 201, + sym_use_as_clause = 202, + sym_use_wildcard = 203, + sym_parameters = 204, + sym_self_parameter = 205, + sym_variadic_parameter = 206, + sym_parameter = 207, + sym_extern_modifier = 208, + sym_visibility_modifier = 209, + sym__type = 210, + sym_bracketed_type = 211, + sym_qualified_type = 212, + sym_lifetime = 213, + sym_array_type = 214, + sym_for_lifetimes = 215, + sym_function_type = 216, + sym_tuple_type = 217, + sym_unit_type = 218, + sym_generic_function = 219, + sym_generic_type = 220, + sym_generic_type_with_turbofish = 221, + sym_bounded_type = 222, + sym_type_arguments = 223, + sym_type_binding = 224, + sym_reference_type = 225, + sym_pointer_type = 226, + sym_empty_type = 227, + sym_abstract_type = 228, + sym_dynamic_type = 229, + sym__expression_except_range = 230, + sym__expression = 231, + sym_macro_invocation = 232, + sym_delim_token_tree = 233, + sym__delim_tokens = 234, + sym__non_delim_token = 235, + sym_scoped_identifier = 236, + sym_scoped_type_identifier_in_expression_position = 237, + sym_scoped_type_identifier = 238, + sym_range_expression = 239, + sym_unary_expression = 240, + sym_try_expression = 241, + sym_reference_expression = 242, + sym_binary_expression = 243, + sym_assignment_expression = 244, + sym_compound_assignment_expr = 245, + sym_type_cast_expression = 246, + sym_return_expression = 247, + sym_yield_expression = 248, + sym_call_expression = 249, + sym_arguments = 250, + sym_array_expression = 251, + sym_parenthesized_expression = 252, + sym_tuple_expression = 253, + sym_unit_expression = 254, + sym_struct_expression = 255, + sym_field_initializer_list = 256, + sym_shorthand_field_initializer = 257, + sym_field_initializer = 258, + sym_base_field_initializer = 259, + sym_if_expression = 260, + sym_let_condition = 261, + sym__let_chain = 262, + sym__condition = 263, + sym_else_clause = 264, + sym_match_expression = 265, + sym_match_block = 266, + sym_match_arm = 267, + sym_last_match_arm = 268, + sym_match_pattern = 269, + sym_while_expression = 270, + sym_loop_expression = 271, + sym_for_expression = 272, + sym_const_block = 273, + sym_closure_expression = 274, + sym_closure_parameters = 275, + sym_label = 276, + sym_break_expression = 277, + sym_continue_expression = 278, + sym_index_expression = 279, + sym_await_expression = 280, + sym_field_expression = 281, + sym_unsafe_block = 282, + sym_async_block = 283, + sym_try_block = 284, + sym_block = 285, + sym__pattern = 286, + sym_tuple_pattern = 287, + sym_slice_pattern = 288, + sym_tuple_struct_pattern = 289, + sym_struct_pattern = 290, + sym_field_pattern = 291, + sym_remaining_field_pattern = 292, + sym_mut_pattern = 293, + sym_range_pattern = 294, + sym_ref_pattern = 295, + sym_captured_pattern = 296, + sym_reference_pattern = 297, + sym_or_pattern = 298, + sym__literal = 299, + sym__literal_pattern = 300, + sym_negative_literal = 301, + sym_string_literal = 302, + sym_boolean_literal = 303, + sym_line_comment = 304, + sym__line_doc_comment = 305, + sym_block_comment = 306, + sym__block_doc_comment = 307, + aux_sym_source_file_repeat1 = 308, + aux_sym_macro_definition_repeat1 = 309, + aux_sym_token_tree_pattern_repeat1 = 310, + aux_sym_token_tree_repeat1 = 311, + aux_sym__non_special_token_repeat1 = 312, + aux_sym_declaration_list_repeat1 = 313, + aux_sym_enum_variant_list_repeat1 = 314, + aux_sym_enum_variant_list_repeat2 = 315, + aux_sym_field_declaration_list_repeat1 = 316, + aux_sym_ordered_field_declaration_list_repeat1 = 317, + aux_sym_function_modifiers_repeat1 = 318, + aux_sym_where_clause_repeat1 = 319, + aux_sym_trait_bounds_repeat1 = 320, + aux_sym_type_parameters_repeat1 = 321, + aux_sym_use_list_repeat1 = 322, + aux_sym_parameters_repeat1 = 323, + aux_sym_for_lifetimes_repeat1 = 324, + aux_sym_tuple_type_repeat1 = 325, + aux_sym_type_arguments_repeat1 = 326, + aux_sym_delim_token_tree_repeat1 = 327, + aux_sym_arguments_repeat1 = 328, + aux_sym_tuple_expression_repeat1 = 329, + aux_sym_field_initializer_list_repeat1 = 330, + aux_sym_match_block_repeat1 = 331, + aux_sym_closure_parameters_repeat1 = 332, + aux_sym_tuple_pattern_repeat1 = 333, + aux_sym_slice_pattern_repeat1 = 334, + aux_sym_struct_pattern_repeat1 = 335, + aux_sym_string_literal_repeat1 = 336, + alias_sym_closure_pattern = 337, + alias_sym_field_identifier = 338, + alias_sym_let_chain = 339, + alias_sym_shorthand_field_identifier = 340, + alias_sym_type_identifier = 341, }; static const char * const ts_symbol_names[] = { @@ -480,7 +493,14 @@ static const char * const ts_symbol_names[] = { [sym_escape_sequence] = "escape_sequence", [anon_sym_true] = "true", [anon_sym_false] = "false", - [sym_line_comment] = "line_comment", + [anon_sym_SLASH_SLASH] = "//", + [aux_sym_line_comment_token1] = "line_comment_token1", + [aux_sym_line_comment_token2] = "line_comment_token2", + [aux_sym_line_comment_token3] = "line_comment_token3", + [sym__inner_line_doc_comment] = "inner_doc_comment", + [sym__outer_line_doc_comment] = "outer_doc_comment", + [anon_sym_SLASH_STAR] = "/*", + [anon_sym_STAR_SLASH] = "*/", [sym_shebang] = "shebang", [sym_self] = "self", [sym_super] = "super", @@ -489,7 +509,9 @@ static const char * const ts_symbol_names[] = { [sym__string_content] = "_string_content", [sym_raw_string_literal] = "raw_string_literal", [sym_float_literal] = "float_literal", - [sym_block_comment] = "block_comment", + [sym__outer_block_doc_comment] = "outer_doc_comment", + [sym__inner_block_doc_comment] = "inner_doc_comment", + [sym__error_sentinel] = "_error_sentinel", [sym_source_file] = "source_file", [sym__statement] = "_statement", [sym_empty_statement] = "empty_statement", @@ -643,6 +665,10 @@ static const char * const ts_symbol_names[] = { [sym_negative_literal] = "negative_literal", [sym_string_literal] = "string_literal", [sym_boolean_literal] = "boolean_literal", + [sym_line_comment] = "line_comment", + [sym__line_doc_comment] = "doc_comment", + [sym_block_comment] = "block_comment", + [sym__block_doc_comment] = "doc_comment", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_macro_definition_repeat1] = "macro_definition_repeat1", [aux_sym_token_tree_pattern_repeat1] = "token_tree_pattern_repeat1", @@ -812,7 +838,14 @@ static const TSSymbol ts_symbol_map[] = { [sym_escape_sequence] = sym_escape_sequence, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, - [sym_line_comment] = sym_line_comment, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [aux_sym_line_comment_token1] = aux_sym_line_comment_token1, + [aux_sym_line_comment_token2] = aux_sym_line_comment_token2, + [aux_sym_line_comment_token3] = aux_sym_line_comment_token3, + [sym__inner_line_doc_comment] = sym__inner_block_doc_comment, + [sym__outer_line_doc_comment] = sym__outer_block_doc_comment, + [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, + [anon_sym_STAR_SLASH] = anon_sym_STAR_SLASH, [sym_shebang] = sym_shebang, [sym_self] = sym_self, [sym_super] = sym_super, @@ -821,7 +854,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__string_content] = sym__string_content, [sym_raw_string_literal] = sym_raw_string_literal, [sym_float_literal] = sym_float_literal, - [sym_block_comment] = sym_block_comment, + [sym__outer_block_doc_comment] = sym__outer_block_doc_comment, + [sym__inner_block_doc_comment] = sym__inner_block_doc_comment, + [sym__error_sentinel] = sym__error_sentinel, [sym_source_file] = sym_source_file, [sym__statement] = sym__statement, [sym_empty_statement] = sym_empty_statement, @@ -975,6 +1010,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_negative_literal] = sym_negative_literal, [sym_string_literal] = sym_string_literal, [sym_boolean_literal] = sym_boolean_literal, + [sym_line_comment] = sym_line_comment, + [sym__line_doc_comment] = sym__line_doc_comment, + [sym_block_comment] = sym_block_comment, + [sym__block_doc_comment] = sym__line_doc_comment, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_macro_definition_repeat1] = aux_sym_macro_definition_repeat1, [aux_sym_token_tree_pattern_repeat1] = aux_sym_token_tree_pattern_repeat1, @@ -1540,10 +1579,38 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_line_comment] = { + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [aux_sym_line_comment_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_line_comment_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_line_comment_token3] = { + .visible = false, + .named = false, + }, + [sym__inner_line_doc_comment] = { .visible = true, .named = true, }, + [sym__outer_line_doc_comment] = { + .visible = true, + .named = true, + }, + [anon_sym_SLASH_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_SLASH] = { + .visible = true, + .named = false, + }, [sym_shebang] = { .visible = true, .named = true, @@ -1576,10 +1643,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_block_comment] = { + [sym__outer_block_doc_comment] = { + .visible = true, + .named = true, + }, + [sym__inner_block_doc_comment] = { .visible = true, .named = true, }, + [sym__error_sentinel] = { + .visible = false, + .named = true, + }, [sym_source_file] = { .visible = true, .named = true, @@ -2197,6 +2272,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_line_comment] = { + .visible = true, + .named = true, + }, + [sym__line_doc_comment] = { + .visible = true, + .named = true, + }, + [sym_block_comment] = { + .visible = true, + .named = true, + }, + [sym__block_doc_comment] = { + .visible = true, + .named = true, + }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2345,25 +2436,28 @@ enum ts_field_identifiers { field_condition = 7, field_consequence = 8, field_default_type = 9, - field_element = 10, - field_field = 11, - field_function = 12, - field_left = 13, - field_length = 14, - field_list = 15, - field_macro = 16, - field_name = 17, - field_operator = 18, - field_parameters = 19, - field_path = 20, - field_pattern = 21, - field_return_type = 22, - field_right = 23, - field_trait = 24, - field_type = 25, - field_type_arguments = 26, - field_type_parameters = 27, - field_value = 28, + field_doc = 10, + field_element = 11, + field_field = 12, + field_function = 13, + field_inner = 14, + field_left = 15, + field_length = 16, + field_list = 17, + field_macro = 18, + field_name = 19, + field_operator = 20, + field_outer = 21, + field_parameters = 22, + field_path = 23, + field_pattern = 24, + field_return_type = 25, + field_right = 26, + field_trait = 27, + field_type = 28, + field_type_arguments = 29, + field_type_parameters = 30, + field_value = 31, }; static const char * const ts_field_names[] = { @@ -2377,15 +2471,18 @@ static const char * const ts_field_names[] = { [field_condition] = "condition", [field_consequence] = "consequence", [field_default_type] = "default_type", + [field_doc] = "doc", [field_element] = "element", [field_field] = "field", [field_function] = "function", + [field_inner] = "inner", [field_left] = "left", [field_length] = "length", [field_list] = "list", [field_macro] = "macro", [field_name] = "name", [field_operator] = "operator", + [field_outer] = "outer", [field_parameters] = "parameters", [field_path] = "path", [field_pattern] = "pattern", @@ -2400,982 +2497,993 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, - [3] = {.index = 0, .length = 1}, - [4] = {.index = 1, .length = 1}, - [6] = {.index = 2, .length = 1}, - [8] = {.index = 3, .length = 2}, - [9] = {.index = 3, .length = 2}, + [3] = {.index = 1, .length = 1}, + [4] = {.index = 2, .length = 1}, + [5] = {.index = 2, .length = 1}, + [6] = {.index = 3, .length = 1}, + [8] = {.index = 4, .length = 1}, [10] = {.index = 5, .length = 2}, - [11] = {.index = 7, .length = 2}, - [12] = {.index = 9, .length = 2}, + [11] = {.index = 5, .length = 2}, + [12] = {.index = 7, .length = 2}, [13] = {.index = 9, .length = 2}, - [14] = {.index = 11, .length = 1}, - [15] = {.index = 12, .length = 1}, - [16] = {.index = 13, .length = 2}, - [17] = {.index = 15, .length = 1}, - [18] = {.index = 16, .length = 1}, - [19] = {.index = 16, .length = 1}, - [20] = {.index = 17, .length = 2}, - [21] = {.index = 13, .length = 2}, - [22] = {.index = 17, .length = 2}, - [23] = {.index = 13, .length = 2}, - [24] = {.index = 19, .length = 1}, - [25] = {.index = 20, .length = 2}, - [26] = {.index = 22, .length = 2}, - [27] = {.index = 24, .length = 2}, - [28] = {.index = 26, .length = 1}, + [14] = {.index = 11, .length = 3}, + [15] = {.index = 14, .length = 2}, + [16] = {.index = 14, .length = 2}, + [17] = {.index = 16, .length = 1}, + [18] = {.index = 17, .length = 1}, + [19] = {.index = 18, .length = 2}, + [20] = {.index = 20, .length = 1}, + [21] = {.index = 21, .length = 1}, + [22] = {.index = 21, .length = 1}, + [23] = {.index = 22, .length = 2}, + [24] = {.index = 18, .length = 2}, + [25] = {.index = 22, .length = 2}, + [26] = {.index = 18, .length = 2}, + [27] = {.index = 24, .length = 1}, + [28] = {.index = 25, .length = 2}, [29] = {.index = 27, .length = 2}, - [30] = {.index = 20, .length = 2}, - [31] = {.index = 29, .length = 2}, - [32] = {.index = 31, .length = 1}, - [33] = {.index = 32, .length = 1}, - [34] = {.index = 33, .length = 2}, - [35] = {.index = 9, .length = 2}, - [36] = {.index = 9, .length = 2}, - [37] = {.index = 35, .length = 2}, - [38] = {.index = 37, .length = 2}, - [39] = {.index = 19, .length = 1}, - [40] = {.index = 39, .length = 1}, - [41] = {.index = 9, .length = 2}, - [42] = {.index = 9, .length = 2}, - [43] = {.index = 40, .length = 3}, - [44] = {.index = 43, .length = 2}, - [45] = {.index = 45, .length = 2}, - [46] = {.index = 45, .length = 2}, - [47] = {.index = 47, .length = 2}, - [48] = {.index = 37, .length = 2}, - [49] = {.index = 0, .length = 1}, - [50] = {.index = 49, .length = 1}, - [51] = {.index = 49, .length = 1}, - [52] = {.index = 50, .length = 1}, - [53] = {.index = 51, .length = 1}, - [54] = {.index = 52, .length = 1}, - [55] = {.index = 53, .length = 2}, - [56] = {.index = 55, .length = 2}, - [57] = {.index = 55, .length = 2}, - [59] = {.index = 57, .length = 1}, - [60] = {.index = 57, .length = 1}, - [61] = {.index = 58, .length = 1}, - [63] = {.index = 59, .length = 2}, - [64] = {.index = 58, .length = 1}, - [65] = {.index = 61, .length = 2}, - [66] = {.index = 63, .length = 3}, - [67] = {.index = 66, .length = 2}, - [68] = {.index = 68, .length = 3}, - [69] = {.index = 71, .length = 3}, - [71] = {.index = 74, .length = 2}, - [72] = {.index = 74, .length = 2}, - [73] = {.index = 76, .length = 2}, - [74] = {.index = 78, .length = 3}, - [75] = {.index = 81, .length = 2}, - [76] = {.index = 83, .length = 1}, - [78] = {.index = 84, .length = 2}, - [79] = {.index = 86, .length = 2}, - [80] = {.index = 88, .length = 3}, - [81] = {.index = 91, .length = 2}, - [82] = {.index = 93, .length = 2}, - [83] = {.index = 95, .length = 2}, - [84] = {.index = 97, .length = 2}, - [85] = {.index = 99, .length = 2}, - [86] = {.index = 97, .length = 2}, - [87] = {.index = 99, .length = 2}, - [88] = {.index = 101, .length = 1}, - [89] = {.index = 95, .length = 2}, - [90] = {.index = 101, .length = 1}, - [91] = {.index = 102, .length = 1}, - [92] = {.index = 103, .length = 3}, + [30] = {.index = 29, .length = 2}, + [31] = {.index = 31, .length = 1}, + [32] = {.index = 32, .length = 2}, + [33] = {.index = 25, .length = 2}, + [34] = {.index = 34, .length = 2}, + [35] = {.index = 36, .length = 1}, + [36] = {.index = 37, .length = 1}, + [37] = {.index = 38, .length = 2}, + [38] = {.index = 14, .length = 2}, + [39] = {.index = 14, .length = 2}, + [40] = {.index = 40, .length = 2}, + [41] = {.index = 42, .length = 2}, + [42] = {.index = 24, .length = 1}, + [43] = {.index = 44, .length = 1}, + [44] = {.index = 14, .length = 2}, + [45] = {.index = 14, .length = 2}, + [46] = {.index = 45, .length = 3}, + [47] = {.index = 48, .length = 2}, + [48] = {.index = 50, .length = 2}, + [49] = {.index = 50, .length = 2}, + [50] = {.index = 52, .length = 2}, + [51] = {.index = 42, .length = 2}, + [52] = {.index = 2, .length = 1}, + [53] = {.index = 54, .length = 1}, + [54] = {.index = 54, .length = 1}, + [55] = {.index = 55, .length = 1}, + [56] = {.index = 56, .length = 1}, + [57] = {.index = 57, .length = 1}, + [58] = {.index = 58, .length = 2}, + [59] = {.index = 60, .length = 2}, + [60] = {.index = 60, .length = 2}, + [62] = {.index = 62, .length = 1}, + [63] = {.index = 62, .length = 1}, + [64] = {.index = 63, .length = 1}, + [66] = {.index = 64, .length = 2}, + [67] = {.index = 63, .length = 1}, + [68] = {.index = 66, .length = 2}, + [69] = {.index = 68, .length = 3}, + [70] = {.index = 71, .length = 2}, + [71] = {.index = 73, .length = 3}, + [72] = {.index = 76, .length = 3}, + [74] = {.index = 79, .length = 2}, + [75] = {.index = 79, .length = 2}, + [76] = {.index = 81, .length = 2}, + [77] = {.index = 83, .length = 3}, + [78] = {.index = 86, .length = 2}, + [79] = {.index = 88, .length = 1}, + [81] = {.index = 89, .length = 2}, + [82] = {.index = 91, .length = 2}, + [83] = {.index = 93, .length = 3}, + [84] = {.index = 96, .length = 2}, + [85] = {.index = 98, .length = 2}, + [86] = {.index = 100, .length = 2}, + [87] = {.index = 102, .length = 2}, + [88] = {.index = 104, .length = 2}, + [89] = {.index = 102, .length = 2}, + [90] = {.index = 104, .length = 2}, + [91] = {.index = 106, .length = 1}, + [92] = {.index = 100, .length = 2}, [93] = {.index = 106, .length = 1}, [94] = {.index = 107, .length = 1}, - [95] = {.index = 11, .length = 1}, - [96] = {.index = 108, .length = 1}, - [97] = {.index = 109, .length = 2}, - [98] = {.index = 111, .length = 1}, - [99] = {.index = 111, .length = 1}, - [100] = {.index = 112, .length = 3}, - [101] = {.index = 115, .length = 1}, - [102] = {.index = 112, .length = 3}, - [103] = {.index = 116, .length = 2}, - [104] = {.index = 0, .length = 1}, - [105] = {.index = 118, .length = 2}, - [106] = {.index = 120, .length = 3}, - [107] = {.index = 123, .length = 3}, - [108] = {.index = 126, .length = 4}, - [109] = {.index = 130, .length = 3}, - [110] = {.index = 133, .length = 3}, - [111] = {.index = 136, .length = 2}, - [112] = {.index = 138, .length = 2}, - [113] = {.index = 138, .length = 2}, - [114] = {.index = 140, .length = 2}, - [115] = {.index = 142, .length = 3}, - [116] = {.index = 145, .length = 3}, - [117] = {.index = 140, .length = 2}, - [118] = {.index = 142, .length = 3}, - [119] = {.index = 148, .length = 2}, - [121] = {.index = 150, .length = 3}, - [122] = {.index = 153, .length = 3}, - [123] = {.index = 156, .length = 4}, - [124] = {.index = 118, .length = 2}, - [125] = {.index = 160, .length = 3}, - [126] = {.index = 163, .length = 2}, - [127] = {.index = 165, .length = 3}, - [128] = {.index = 168, .length = 2}, - [129] = {.index = 170, .length = 2}, - [130] = {.index = 172, .length = 3}, - [131] = {.index = 175, .length = 3}, - [132] = {.index = 178, .length = 2}, - [133] = {.index = 180, .length = 2}, - [134] = {.index = 182, .length = 3}, - [135] = {.index = 185, .length = 2}, - [136] = {.index = 187, .length = 2}, - [137] = {.index = 189, .length = 1}, + [95] = {.index = 108, .length = 3}, + [96] = {.index = 111, .length = 1}, + [97] = {.index = 112, .length = 1}, + [98] = {.index = 16, .length = 1}, + [99] = {.index = 113, .length = 1}, + [100] = {.index = 114, .length = 2}, + [101] = {.index = 116, .length = 1}, + [102] = {.index = 116, .length = 1}, + [103] = {.index = 117, .length = 3}, + [104] = {.index = 120, .length = 1}, + [105] = {.index = 117, .length = 3}, + [106] = {.index = 121, .length = 2}, + [107] = {.index = 2, .length = 1}, + [108] = {.index = 123, .length = 2}, + [109] = {.index = 125, .length = 3}, + [110] = {.index = 128, .length = 3}, + [111] = {.index = 131, .length = 4}, + [112] = {.index = 135, .length = 3}, + [113] = {.index = 138, .length = 3}, + [114] = {.index = 141, .length = 2}, + [115] = {.index = 143, .length = 2}, + [116] = {.index = 143, .length = 2}, + [117] = {.index = 145, .length = 2}, + [118] = {.index = 147, .length = 3}, + [119] = {.index = 150, .length = 3}, + [120] = {.index = 145, .length = 2}, + [121] = {.index = 147, .length = 3}, + [122] = {.index = 153, .length = 2}, + [124] = {.index = 155, .length = 3}, + [125] = {.index = 158, .length = 3}, + [126] = {.index = 161, .length = 4}, + [127] = {.index = 123, .length = 2}, + [128] = {.index = 165, .length = 3}, + [129] = {.index = 168, .length = 2}, + [130] = {.index = 170, .length = 3}, + [131] = {.index = 173, .length = 2}, + [132] = {.index = 175, .length = 2}, + [133] = {.index = 177, .length = 3}, + [134] = {.index = 180, .length = 3}, + [135] = {.index = 183, .length = 2}, + [136] = {.index = 185, .length = 2}, + [137] = {.index = 187, .length = 3}, [138] = {.index = 190, .length = 2}, - [139] = {.index = 192, .length = 1}, - [140] = {.index = 193, .length = 2}, + [139] = {.index = 192, .length = 2}, + [140] = {.index = 194, .length = 1}, [141] = {.index = 195, .length = 2}, - [142] = {.index = 197, .length = 2}, - [143] = {.index = 199, .length = 3}, - [144] = {.index = 199, .length = 3}, - [145] = {.index = 101, .length = 1}, - [146] = {.index = 202, .length = 2}, - [147] = {.index = 178, .length = 2}, - [148] = {.index = 204, .length = 4}, - [149] = {.index = 208, .length = 3}, - [150] = {.index = 211, .length = 4}, - [151] = {.index = 215, .length = 2}, - [152] = {.index = 217, .length = 3}, - [153] = {.index = 215, .length = 2}, - [154] = {.index = 217, .length = 3}, - [155] = {.index = 220, .length = 3}, - [156] = {.index = 223, .length = 3}, - [157] = {.index = 226, .length = 4}, - [158] = {.index = 223, .length = 3}, - [159] = {.index = 226, .length = 4}, - [160] = {.index = 220, .length = 3}, - [161] = {.index = 230, .length = 2}, - [162] = {.index = 232, .length = 2}, - [163] = {.index = 234, .length = 2}, - [164] = {.index = 236, .length = 2}, - [165] = {.index = 238, .length = 1}, - [166] = {.index = 238, .length = 1}, - [167] = {.index = 239, .length = 2}, - [168] = {.index = 241, .length = 3}, - [169] = {.index = 244, .length = 2}, - [170] = {.index = 246, .length = 2}, - [171] = {.index = 195, .length = 2}, - [172] = {.index = 248, .length = 4}, - [173] = {.index = 252, .length = 3}, - [174] = {.index = 255, .length = 3}, - [175] = {.index = 258, .length = 3}, - [176] = {.index = 261, .length = 3}, - [177] = {.index = 264, .length = 4}, - [178] = {.index = 268, .length = 2}, - [179] = {.index = 270, .length = 2}, - [180] = {.index = 272, .length = 3}, - [181] = {.index = 275, .length = 4}, - [182] = {.index = 279, .length = 3}, - [183] = {.index = 239, .length = 2}, - [184] = {.index = 282, .length = 2}, + [142] = {.index = 197, .length = 1}, + [143] = {.index = 198, .length = 2}, + [144] = {.index = 200, .length = 2}, + [145] = {.index = 202, .length = 2}, + [146] = {.index = 204, .length = 3}, + [147] = {.index = 204, .length = 3}, + [148] = {.index = 106, .length = 1}, + [149] = {.index = 207, .length = 2}, + [150] = {.index = 183, .length = 2}, + [151] = {.index = 209, .length = 4}, + [152] = {.index = 213, .length = 3}, + [153] = {.index = 216, .length = 4}, + [154] = {.index = 220, .length = 2}, + [155] = {.index = 222, .length = 3}, + [156] = {.index = 220, .length = 2}, + [157] = {.index = 222, .length = 3}, + [158] = {.index = 225, .length = 3}, + [159] = {.index = 228, .length = 3}, + [160] = {.index = 231, .length = 4}, + [161] = {.index = 228, .length = 3}, + [162] = {.index = 231, .length = 4}, + [163] = {.index = 225, .length = 3}, + [164] = {.index = 235, .length = 2}, + [165] = {.index = 237, .length = 2}, + [166] = {.index = 239, .length = 2}, + [167] = {.index = 241, .length = 2}, + [168] = {.index = 243, .length = 1}, + [169] = {.index = 243, .length = 1}, + [170] = {.index = 244, .length = 2}, + [171] = {.index = 246, .length = 3}, + [172] = {.index = 249, .length = 2}, + [173] = {.index = 251, .length = 2}, + [174] = {.index = 200, .length = 2}, + [175] = {.index = 253, .length = 4}, + [176] = {.index = 257, .length = 3}, + [177] = {.index = 260, .length = 3}, + [178] = {.index = 263, .length = 3}, + [179] = {.index = 266, .length = 3}, + [180] = {.index = 269, .length = 4}, + [181] = {.index = 273, .length = 2}, + [182] = {.index = 275, .length = 2}, + [183] = {.index = 277, .length = 3}, + [184] = {.index = 280, .length = 4}, [185] = {.index = 284, .length = 3}, - [186] = {.index = 287, .length = 3}, - [187] = {.index = 290, .length = 2}, - [188] = {.index = 292, .length = 3}, - [189] = {.index = 195, .length = 2}, - [190] = {.index = 295, .length = 3}, - [191] = {.index = 298, .length = 2}, - [192] = {.index = 300, .length = 2}, - [193] = {.index = 302, .length = 3}, - [194] = {.index = 305, .length = 3}, - [195] = {.index = 270, .length = 2}, - [196] = {.index = 308, .length = 4}, - [197] = {.index = 312, .length = 5}, - [198] = {.index = 317, .length = 4}, - [199] = {.index = 321, .length = 3}, - [200] = {.index = 321, .length = 3}, - [201] = {.index = 324, .length = 3}, - [202] = {.index = 327, .length = 4}, - [203] = {.index = 324, .length = 3}, - [204] = {.index = 327, .length = 4}, - [205] = {.index = 331, .length = 4}, - [206] = {.index = 331, .length = 4}, - [207] = {.index = 335, .length = 3}, - [208] = {.index = 338, .length = 3}, - [209] = {.index = 341, .length = 3}, - [210] = {.index = 344, .length = 2}, - [211] = {.index = 346, .length = 2}, - [212] = {.index = 118, .length = 2}, - [213] = {.index = 348, .length = 2}, - [214] = {.index = 350, .length = 3}, - [215] = {.index = 348, .length = 2}, - [216] = {.index = 350, .length = 3}, - [217] = {.index = 353, .length = 3}, - [218] = {.index = 356, .length = 4}, - [219] = {.index = 353, .length = 3}, - [220] = {.index = 356, .length = 4}, - [221] = {.index = 360, .length = 4}, - [222] = {.index = 364, .length = 4}, - [223] = {.index = 368, .length = 3}, - [224] = {.index = 371, .length = 4}, - [225] = {.index = 375, .length = 3}, - [226] = {.index = 378, .length = 3}, - [227] = {.index = 381, .length = 3}, - [228] = {.index = 384, .length = 4}, - [229] = {.index = 388, .length = 2}, - [230] = {.index = 390, .length = 3}, - [231] = {.index = 393, .length = 4}, - [232] = {.index = 397, .length = 3}, - [233] = {.index = 400, .length = 3}, - [234] = {.index = 403, .length = 2}, - [235] = {.index = 405, .length = 3}, - [236] = {.index = 408, .length = 5}, - [237] = {.index = 413, .length = 4}, - [238] = {.index = 413, .length = 4}, - [239] = {.index = 417, .length = 3}, - [240] = {.index = 420, .length = 3}, - [241] = {.index = 423, .length = 3}, - [242] = {.index = 426, .length = 3}, - [243] = {.index = 429, .length = 2}, - [244] = {.index = 431, .length = 3}, + [186] = {.index = 244, .length = 2}, + [187] = {.index = 287, .length = 2}, + [188] = {.index = 289, .length = 3}, + [189] = {.index = 292, .length = 3}, + [190] = {.index = 295, .length = 2}, + [191] = {.index = 297, .length = 3}, + [192] = {.index = 200, .length = 2}, + [193] = {.index = 300, .length = 3}, + [194] = {.index = 303, .length = 2}, + [195] = {.index = 305, .length = 2}, + [196] = {.index = 307, .length = 3}, + [197] = {.index = 310, .length = 3}, + [198] = {.index = 275, .length = 2}, + [199] = {.index = 313, .length = 4}, + [200] = {.index = 317, .length = 5}, + [201] = {.index = 322, .length = 4}, + [202] = {.index = 326, .length = 3}, + [203] = {.index = 326, .length = 3}, + [204] = {.index = 329, .length = 3}, + [205] = {.index = 332, .length = 4}, + [206] = {.index = 329, .length = 3}, + [207] = {.index = 332, .length = 4}, + [208] = {.index = 336, .length = 4}, + [209] = {.index = 336, .length = 4}, + [210] = {.index = 340, .length = 3}, + [211] = {.index = 343, .length = 3}, + [212] = {.index = 346, .length = 3}, + [213] = {.index = 349, .length = 2}, + [214] = {.index = 351, .length = 2}, + [215] = {.index = 123, .length = 2}, + [216] = {.index = 353, .length = 2}, + [217] = {.index = 355, .length = 3}, + [218] = {.index = 353, .length = 2}, + [219] = {.index = 355, .length = 3}, + [220] = {.index = 358, .length = 3}, + [221] = {.index = 361, .length = 4}, + [222] = {.index = 358, .length = 3}, + [223] = {.index = 361, .length = 4}, + [224] = {.index = 365, .length = 4}, + [225] = {.index = 369, .length = 4}, + [226] = {.index = 373, .length = 3}, + [227] = {.index = 376, .length = 4}, + [228] = {.index = 380, .length = 3}, + [229] = {.index = 383, .length = 3}, + [230] = {.index = 386, .length = 3}, + [231] = {.index = 389, .length = 4}, + [232] = {.index = 393, .length = 2}, + [233] = {.index = 395, .length = 3}, + [234] = {.index = 398, .length = 4}, + [235] = {.index = 402, .length = 3}, + [236] = {.index = 405, .length = 3}, + [237] = {.index = 408, .length = 2}, + [238] = {.index = 410, .length = 3}, + [239] = {.index = 413, .length = 5}, + [240] = {.index = 418, .length = 4}, + [241] = {.index = 418, .length = 4}, + [242] = {.index = 422, .length = 3}, + [243] = {.index = 425, .length = 3}, + [244] = {.index = 428, .length = 3}, [245] = {.index = 431, .length = 3}, - [246] = {.index = 434, .length = 3}, - [247] = {.index = 437, .length = 4}, - [248] = {.index = 434, .length = 3}, - [249] = {.index = 437, .length = 4}, - [250] = {.index = 441, .length = 4}, - [251] = {.index = 441, .length = 4}, - [252] = {.index = 445, .length = 4}, - [253] = {.index = 449, .length = 5}, - [254] = {.index = 454, .length = 4}, - [255] = {.index = 458, .length = 2}, - [256] = {.index = 460, .length = 4}, - [257] = {.index = 464, .length = 4}, - [258] = {.index = 468, .length = 3}, - [259] = {.index = 471, .length = 4}, - [260] = {.index = 475, .length = 4}, - [261] = {.index = 479, .length = 3}, - [262] = {.index = 482, .length = 4}, - [263] = {.index = 482, .length = 4}, - [264] = {.index = 486, .length = 5}, - [265] = {.index = 491, .length = 4}, - [266] = {.index = 495, .length = 5}, - [267] = {.index = 500, .length = 4}, - [268] = {.index = 504, .length = 4}, - [269] = {.index = 508, .length = 3}, - [270] = {.index = 511, .length = 5}, + [246] = {.index = 434, .length = 2}, + [247] = {.index = 436, .length = 3}, + [248] = {.index = 436, .length = 3}, + [249] = {.index = 439, .length = 3}, + [250] = {.index = 442, .length = 4}, + [251] = {.index = 439, .length = 3}, + [252] = {.index = 442, .length = 4}, + [253] = {.index = 446, .length = 4}, + [254] = {.index = 446, .length = 4}, + [255] = {.index = 450, .length = 4}, + [256] = {.index = 454, .length = 5}, + [257] = {.index = 459, .length = 4}, + [258] = {.index = 463, .length = 2}, + [259] = {.index = 465, .length = 4}, + [260] = {.index = 469, .length = 4}, + [261] = {.index = 473, .length = 3}, + [262] = {.index = 476, .length = 4}, + [263] = {.index = 480, .length = 4}, + [264] = {.index = 484, .length = 3}, + [265] = {.index = 487, .length = 4}, + [266] = {.index = 487, .length = 4}, + [267] = {.index = 491, .length = 5}, + [268] = {.index = 496, .length = 4}, + [269] = {.index = 500, .length = 5}, + [270] = {.index = 505, .length = 4}, + [271] = {.index = 509, .length = 4}, + [272] = {.index = 513, .length = 3}, + [273] = {.index = 516, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = - {field_name, 1}, + {field_inner, 0}, [1] = - {field_value, 1}, + {field_outer, 0}, [2] = - {field_body, 1}, + {field_name, 1}, [3] = + {field_value, 1}, + [4] = {field_body, 1}, - {field_name, 0}, [5] = + {field_body, 1}, + {field_name, 0}, + [7] = {field_arguments, 1}, {field_function, 0}, - [7] = + [9] = {field_body, 1}, {field_parameters, 0}, - [9] = + [11] = + {field_doc, 1}, + {field_inner, 1, .inherited = true}, + {field_outer, 1, .inherited = true}, + [14] = {field_name, 2}, {field_path, 0}, - [11] = + [16] = {field_value, 2}, - [12] = + [17] = {field_type, 1}, - [13] = + [18] = {field_type, 0}, {field_type_arguments, 1}, - [15] = + [20] = {field_parameters, 1}, - [16] = + [21] = {field_trait, 1}, - [17] = + [22] = {field_parameters, 1}, {field_trait, 0}, - [19] = + [24] = {field_macro, 0}, - [20] = + [25] = {field_body, 2}, {field_name, 1}, - [22] = + [27] = {field_condition, 1}, {field_consequence, 2}, - [24] = + [29] = {field_body, 2}, {field_type, 1}, - [26] = + [31] = {field_pattern, 1}, - [27] = + [32] = {field_body, 2}, {field_value, 1}, - [29] = + [34] = {field_body, 2}, {field_parameters, 1}, - [31] = + [36] = {field_list, 1}, - [32] = + [37] = {field_argument, 1}, - [33] = + [38] = {field_body, 2}, {field_condition, 1}, - [35] = + [40] = {field_function, 0}, {field_type_arguments, 2}, - [37] = + [42] = {field_type, 0}, {field_type_arguments, 2}, - [39] = + [44] = {field_body, 2}, - [40] = + [45] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [43] = + [48] = {field_left, 0}, {field_right, 2}, - [45] = + [50] = {field_field, 2}, {field_value, 0}, - [47] = + [52] = {field_type, 2}, {field_value, 0}, - [49] = + [54] = {field_arguments, 1}, - [50] = + [55] = {field_element, 1}, - [51] = + [56] = {field_type, 2}, - [52] = + [57] = {field_parameters, 2}, - [53] = + [58] = {field_alias, 2}, {field_type, 0}, - [55] = + [60] = {field_parameters, 2}, {field_trait, 1}, - [57] = + [62] = {field_type, 0}, - [58] = + [63] = {field_name, 0}, - [59] = + [64] = {field_pattern, 0}, {field_type, 2}, - [61] = + [66] = {field_body, 3}, {field_name, 1}, - [63] = + [68] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [66] = + [71] = {field_name, 1}, {field_parameters, 2}, - [68] = + [73] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [71] = + [76] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [74] = + [79] = {field_bounds, 1}, {field_left, 0}, - [76] = + [81] = {field_type, 2}, {field_type_parameters, 1}, - [78] = + [83] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [81] = + [86] = {field_body, 3}, {field_type, 1}, - [83] = + [88] = {field_pattern, 2}, - [84] = + [89] = {field_body, 3}, {field_parameters, 2}, - [86] = + [91] = {field_name, 1}, {field_type_parameters, 2}, - [88] = + [93] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [91] = + [96] = {field_bounds, 2}, {field_name, 1}, - [93] = + [98] = {field_body, 3}, {field_type, 2}, - [95] = + [100] = {field_body, 3}, {field_name, 2}, - [97] = + [102] = {field_list, 2}, {field_path, 0}, - [99] = + [104] = {field_alias, 2}, {field_path, 0}, - [101] = + [106] = {field_name, 2}, - [102] = + [107] = {field_argument, 2}, - [103] = + [108] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [106] = + [111] = {field_body, 3}, - [107] = + [112] = {field_length, 3}, - [108] = + [113] = {field_type, 3}, - [109] = + [114] = {field_parameters, 1}, {field_return_type, 3}, - [111] = + [116] = {field_trait, 3}, - [112] = + [117] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [115] = + [120] = {field_parameters, 3}, - [116] = + [121] = {field_pattern, 1}, {field_type, 3}, - [118] = + [123] = {field_name, 1}, {field_type, 3}, - [120] = + [125] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [123] = + [128] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [126] = + [131] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [130] = + [135] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [133] = + [138] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [136] = + [141] = {field_pattern, 1}, {field_value, 3}, - [138] = + [143] = {field_default_type, 2}, {field_name, 0}, - [140] = + [145] = {field_trait, 1}, {field_type, 3}, - [142] = + [147] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [145] = + [150] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [148] = + [153] = {field_alternative, 3}, {field_pattern, 1}, - [150] = + [155] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [153] = + [158] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [156] = + [161] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [160] = + [165] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [163] = + [168] = {field_type, 3}, {field_type_parameters, 2}, - [165] = + [170] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [168] = + [173] = {field_body, 4}, {field_type, 2}, - [170] = + [175] = {field_body, 4}, {field_name, 2}, - [172] = + [177] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [175] = + [180] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [178] = + [183] = {field_name, 0}, {field_value, 2}, - [180] = + [185] = {field_name, 2}, {field_parameters, 3}, - [182] = + [187] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [185] = + [190] = {field_name, 2}, {field_type_parameters, 3}, - [187] = + [192] = {field_body, 4}, {field_name, 3}, - [189] = + [194] = {field_name, 3}, - [190] = + [195] = {field_body, 4}, {field_condition, 3}, - [192] = + [197] = {field_length, 4}, - [193] = + [198] = {field_element, 1}, {field_length, 3}, - [195] = + [200] = {field_name, 0}, {field_type, 2}, - [197] = + [202] = {field_parameters, 2}, {field_return_type, 4}, - [199] = + [204] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [202] = + [207] = {field_name, 0}, {field_pattern, 2}, - [204] = + [209] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [208] = + [213] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [211] = + [216] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [215] = + [220] = {field_trait, 2}, {field_type, 4}, - [217] = + [222] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [220] = + [225] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [223] = + [228] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [226] = + [231] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [230] = + [235] = {field_pattern, 2}, {field_type, 4}, - [232] = + [237] = {field_pattern, 2}, {field_value, 4}, - [234] = + [239] = {field_alternative, 4}, {field_pattern, 2}, - [236] = + [241] = {field_pattern, 0}, {field_value, 2}, - [238] = + [243] = {field_condition, 2}, - [239] = + [244] = {field_name, 2}, {field_type, 4}, - [241] = + [246] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [244] = + [249] = {field_type, 1}, {field_type, 2, .inherited = true}, - [246] = + [251] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [248] = + [253] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [252] = + [257] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [255] = + [260] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [258] = + [263] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [261] = + [266] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [264] = + [269] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [268] = + [273] = {field_alias, 4}, {field_name, 2}, - [270] = + [275] = {field_name, 1}, {field_value, 3}, - [272] = + [277] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [275] = + [280] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [279] = + [284] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [282] = + [287] = {field_body, 5}, {field_name, 3}, - [284] = + [289] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [287] = + [292] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [290] = + [295] = {field_name, 3}, {field_parameters, 4}, - [292] = + [297] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [295] = + [300] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [298] = + [303] = {field_parameters, 3}, {field_return_type, 5}, - [300] = + [305] = {field_name, 1}, {field_pattern, 3}, - [302] = + [307] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [305] = + [310] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [308] = + [313] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [312] = + [317] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [317] = + [322] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [321] = + [326] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [324] = + [329] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [327] = + [332] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [331] = + [336] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [335] = + [340] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [338] = + [343] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [341] = + [346] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [344] = + [349] = {field_name, 3}, {field_type, 5}, - [346] = + [351] = {field_type, 2}, {field_type, 3, .inherited = true}, - [348] = + [353] = {field_trait, 3}, {field_type, 5}, - [350] = + [355] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [353] = + [358] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [356] = + [361] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [360] = + [365] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [364] = + [369] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [368] = + [373] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [371] = + [376] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [375] = + [380] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [378] = + [383] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [381] = + [386] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [384] = + [389] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [388] = + [393] = {field_alias, 5}, {field_name, 3}, - [390] = + [395] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [393] = + [398] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [397] = + [402] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [400] = + [405] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [403] = + [408] = {field_name, 2}, {field_pattern, 4}, - [405] = + [410] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [408] = + [413] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [413] = + [418] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [417] = + [422] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [420] = + [425] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [423] = + [428] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [426] = + [431] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [429] = + [434] = {field_type, 3}, {field_type, 4, .inherited = true}, - [431] = + [436] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [434] = + [439] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [437] = + [442] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [441] = + [446] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [445] = + [450] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [449] = + [454] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [454] = + [459] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [458] = + [463] = {field_name, 4}, {field_type, 6}, - [460] = + [465] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [464] = + [469] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [468] = + [473] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [471] = + [476] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [475] = + [480] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [479] = + [484] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [482] = + [487] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [486] = + [491] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [491] = + [496] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [495] = + [500] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [500] = + [505] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [504] = + [509] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [508] = + [513] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [511] = + [516] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3388,307 +3496,307 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = sym_identifier, }, - [3] = { + [5] = { [1] = alias_sym_type_identifier, }, - [5] = { + [7] = { [0] = alias_sym_type_identifier, }, - [7] = { + [9] = { [0] = alias_sym_let_chain, }, - [8] = { + [10] = { [0] = alias_sym_type_identifier, }, - [12] = { + [15] = { [0] = sym_identifier, }, - [13] = { + [16] = { [0] = sym_identifier, [2] = alias_sym_type_identifier, }, - [16] = { + [19] = { [0] = sym_identifier, }, - [18] = { + [21] = { [1] = alias_sym_type_identifier, }, - [20] = { + [23] = { [0] = alias_sym_type_identifier, }, - [21] = { + [24] = { [0] = alias_sym_type_identifier, }, - [24] = { + [27] = { [0] = sym_identifier, }, - [25] = { + [28] = { [1] = alias_sym_type_identifier, }, - [36] = { + [39] = { [2] = alias_sym_type_identifier, }, - [38] = { + [41] = { [0] = alias_sym_type_identifier, }, - [41] = { + [44] = { [0] = sym_generic_type, }, - [42] = { + [45] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [46] = { + [49] = { [2] = alias_sym_field_identifier, }, - [49] = { + [52] = { [1] = sym_identifier, }, - [50] = { + [53] = { [0] = sym_identifier, }, - [56] = { + [59] = { [1] = alias_sym_type_identifier, }, - [58] = { + [61] = { [0] = sym_identifier, [2] = sym_identifier, }, - [60] = { + [63] = { [0] = alias_sym_type_identifier, }, - [61] = { + [64] = { [0] = alias_sym_shorthand_field_identifier, }, - [62] = { + [65] = { [2] = sym_identifier, }, - [65] = { + [68] = { [1] = alias_sym_type_identifier, }, - [66] = { + [69] = { [1] = alias_sym_type_identifier, }, - [70] = { + [73] = { [1] = alias_sym_type_identifier, }, - [71] = { + [74] = { [0] = alias_sym_type_identifier, }, - [77] = { + [80] = { [0] = alias_sym_closure_pattern, }, - [79] = { + [82] = { [1] = alias_sym_type_identifier, }, - [80] = { + [83] = { [1] = alias_sym_type_identifier, }, - [81] = { + [84] = { [1] = alias_sym_type_identifier, }, - [83] = { + [86] = { [2] = alias_sym_type_identifier, }, - [84] = { + [87] = { [0] = sym_identifier, }, - [85] = { + [88] = { [0] = sym_identifier, }, - [90] = { + [93] = { [2] = alias_sym_type_identifier, }, - [95] = { + [98] = { [0] = sym_identifier, }, - [98] = { + [101] = { [3] = alias_sym_type_identifier, }, - [100] = { + [103] = { [0] = alias_sym_type_identifier, }, - [104] = { + [107] = { [1] = alias_sym_shorthand_field_identifier, }, - [106] = { + [109] = { [1] = alias_sym_type_identifier, }, - [112] = { + [115] = { [0] = alias_sym_type_identifier, }, - [114] = { + [117] = { [1] = alias_sym_type_identifier, }, - [115] = { + [118] = { [1] = alias_sym_type_identifier, }, - [120] = { + [123] = { [3] = sym_identifier, }, - [122] = { + [125] = { [1] = alias_sym_type_identifier, }, - [123] = { + [126] = { [1] = alias_sym_type_identifier, }, - [124] = { + [127] = { [1] = alias_sym_type_identifier, }, - [125] = { + [128] = { [1] = alias_sym_type_identifier, }, - [129] = { + [132] = { [2] = alias_sym_type_identifier, }, - [130] = { + [133] = { [2] = alias_sym_type_identifier, }, - [131] = { + [134] = { [2] = alias_sym_type_identifier, }, - [132] = { + [135] = { [0] = alias_sym_field_identifier, }, - [135] = { + [138] = { [2] = alias_sym_type_identifier, }, - [136] = { + [139] = { [3] = alias_sym_type_identifier, }, - [141] = { + [144] = { [0] = alias_sym_type_identifier, }, - [143] = { + [146] = { [1] = alias_sym_type_identifier, }, - [145] = { + [148] = { [2] = alias_sym_shorthand_field_identifier, }, - [146] = { + [149] = { [0] = alias_sym_field_identifier, }, - [151] = { + [154] = { [2] = alias_sym_type_identifier, }, - [152] = { + [155] = { [2] = alias_sym_type_identifier, }, - [155] = { + [158] = { [1] = alias_sym_type_identifier, }, - [156] = { + [159] = { [2] = alias_sym_type_identifier, }, - [157] = { + [160] = { [2] = alias_sym_type_identifier, }, - [165] = { + [168] = { [0] = alias_sym_closure_pattern, }, - [171] = { + [174] = { [0] = alias_sym_field_identifier, }, - [172] = { + [175] = { [1] = alias_sym_type_identifier, }, - [173] = { + [176] = { [1] = alias_sym_type_identifier, }, - [175] = { + [178] = { [2] = alias_sym_type_identifier, }, - [176] = { + [179] = { [2] = alias_sym_type_identifier, }, - [177] = { + [180] = { [2] = alias_sym_type_identifier, }, - [179] = { + [182] = { [1] = alias_sym_field_identifier, }, - [183] = { + [186] = { [2] = alias_sym_type_identifier, }, - [184] = { + [187] = { [3] = alias_sym_type_identifier, }, - [185] = { + [188] = { [3] = alias_sym_type_identifier, }, - [186] = { + [189] = { [3] = alias_sym_type_identifier, }, - [190] = { + [193] = { [0] = alias_sym_type_identifier, }, - [192] = { + [195] = { [1] = alias_sym_field_identifier, }, - [199] = { + [202] = { [2] = alias_sym_type_identifier, }, - [201] = { + [204] = { [3] = alias_sym_type_identifier, }, - [202] = { + [205] = { [3] = alias_sym_type_identifier, }, - [205] = { + [208] = { [2] = alias_sym_type_identifier, }, - [212] = { + [215] = { [1] = alias_sym_field_identifier, }, - [213] = { - [3] = alias_sym_type_identifier, - }, - [214] = { + [216] = { [3] = alias_sym_type_identifier, }, [217] = { [3] = alias_sym_type_identifier, }, - [218] = { + [220] = { [3] = alias_sym_type_identifier, }, [221] = { + [3] = alias_sym_type_identifier, + }, + [224] = { [2] = alias_sym_type_identifier, }, - [225] = { + [228] = { [2] = alias_sym_type_identifier, }, - [226] = { + [229] = { [3] = alias_sym_type_identifier, }, - [227] = { + [230] = { [3] = alias_sym_type_identifier, }, - [228] = { + [231] = { [3] = alias_sym_type_identifier, }, - [234] = { + [237] = { [2] = alias_sym_field_identifier, }, - [237] = { + [240] = { [3] = alias_sym_type_identifier, }, - [244] = { + [247] = { [3] = alias_sym_type_identifier, }, - [246] = { + [249] = { [4] = alias_sym_type_identifier, }, - [247] = { + [250] = { [4] = alias_sym_type_identifier, }, - [250] = { + [253] = { [3] = alias_sym_type_identifier, }, - [256] = { + [259] = { [3] = alias_sym_type_identifier, }, - [262] = { + [265] = { [4] = alias_sym_type_identifier, }, }; @@ -3711,166 +3819,166 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 3, - [6] = 4, - [7] = 3, - [8] = 8, - [9] = 9, - [10] = 4, + [4] = 3, + [5] = 2, + [6] = 6, + [7] = 7, + [8] = 6, + [9] = 3, + [10] = 2, [11] = 2, - [12] = 12, - [13] = 3, - [14] = 8, - [15] = 4, - [16] = 16, + [12] = 6, + [13] = 13, + [14] = 2, + [15] = 7, + [16] = 3, [17] = 2, - [18] = 2, - [19] = 8, - [20] = 3, - [21] = 8, - [22] = 16, - [23] = 4, - [24] = 2, - [25] = 3, - [26] = 4, - [27] = 8, - [28] = 8, - [29] = 8, - [30] = 3, - [31] = 31, - [32] = 4, - [33] = 2, - [34] = 2, + [18] = 6, + [19] = 7, + [20] = 7, + [21] = 3, + [22] = 7, + [23] = 6, + [24] = 24, + [25] = 25, + [26] = 7, + [27] = 3, + [28] = 2, + [29] = 13, + [30] = 30, + [31] = 6, + [32] = 7, + [33] = 6, + [34] = 3, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 37, - [40] = 38, - [41] = 41, + [39] = 38, + [40] = 40, + [41] = 36, [42] = 42, [43] = 35, [44] = 35, - [45] = 35, - [46] = 36, - [47] = 36, - [48] = 37, + [45] = 36, + [46] = 38, + [47] = 35, + [48] = 36, [49] = 38, - [50] = 41, - [51] = 42, - [52] = 41, + [50] = 40, + [51] = 37, + [52] = 38, [53] = 37, - [54] = 37, - [55] = 42, - [56] = 35, - [57] = 38, - [58] = 37, - [59] = 38, - [60] = 38, - [61] = 37, + [54] = 36, + [55] = 35, + [56] = 42, + [57] = 40, + [58] = 38, + [59] = 42, + [60] = 36, + [61] = 36, [62] = 38, - [63] = 41, - [64] = 42, + [63] = 37, + [64] = 36, [65] = 38, - [66] = 36, - [67] = 37, - [68] = 38, - [69] = 41, - [70] = 37, - [71] = 42, + [66] = 40, + [67] = 42, + [68] = 40, + [69] = 42, + [70] = 38, + [71] = 36, [72] = 37, - [73] = 36, - [74] = 38, + [73] = 38, + [74] = 36, [75] = 75, [76] = 76, - [77] = 76, - [78] = 78, - [79] = 79, - [80] = 79, - [81] = 78, - [82] = 75, + [77] = 77, + [78] = 75, + [79] = 76, + [80] = 77, + [81] = 81, + [82] = 81, [83] = 83, [84] = 84, [85] = 85, - [86] = 83, - [87] = 87, + [86] = 84, + [87] = 84, [88] = 88, - [89] = 87, + [89] = 89, [90] = 90, [91] = 84, [92] = 92, - [93] = 93, - [94] = 88, - [95] = 95, - [96] = 85, - [97] = 92, + [93] = 85, + [94] = 94, + [95] = 92, + [96] = 96, + [97] = 97, [98] = 98, - [99] = 84, - [100] = 88, - [101] = 95, - [102] = 95, - [103] = 88, - [104] = 104, - [105] = 84, - [106] = 106, - [107] = 93, - [108] = 108, - [109] = 90, - [110] = 95, - [111] = 108, - [112] = 98, + [99] = 99, + [100] = 92, + [101] = 101, + [102] = 90, + [103] = 97, + [104] = 99, + [105] = 101, + [106] = 98, + [107] = 88, + [108] = 94, + [109] = 85, + [110] = 85, + [111] = 92, + [112] = 83, [113] = 113, - [114] = 114, + [114] = 113, [115] = 115, [116] = 116, - [117] = 115, - [118] = 116, + [117] = 116, + [118] = 118, [119] = 119, [120] = 120, [121] = 121, [122] = 122, - [123] = 121, + [123] = 123, [124] = 124, - [125] = 120, + [125] = 119, [126] = 126, - [127] = 120, - [128] = 119, - [129] = 129, - [130] = 121, - [131] = 121, - [132] = 126, - [133] = 133, + [127] = 127, + [128] = 124, + [129] = 119, + [130] = 124, + [131] = 122, + [132] = 124, + [133] = 126, [134] = 134, - [135] = 135, - [136] = 136, - [137] = 134, - [138] = 134, - [139] = 129, - [140] = 121, - [141] = 134, - [142] = 120, - [143] = 122, - [144] = 124, - [145] = 134, - [146] = 134, - [147] = 120, - [148] = 121, - [149] = 120, - [150] = 120, - [151] = 135, - [152] = 121, - [153] = 134, + [135] = 134, + [136] = 127, + [137] = 137, + [138] = 124, + [139] = 124, + [140] = 119, + [141] = 127, + [142] = 127, + [143] = 127, + [144] = 121, + [145] = 120, + [146] = 124, + [147] = 119, + [148] = 148, + [149] = 119, + [150] = 119, + [151] = 127, + [152] = 127, + [153] = 123, [154] = 154, - [155] = 154, + [155] = 155, [156] = 156, [157] = 154, [158] = 158, [159] = 154, - [160] = 160, - [161] = 161, + [160] = 154, + [161] = 154, [162] = 162, - [163] = 154, + [163] = 163, [164] = 164, [165] = 165, [166] = 166, @@ -3885,9 +3993,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [175] = 175, [176] = 176, [177] = 177, - [178] = 178, + [178] = 165, [179] = 179, - [180] = 164, + [180] = 180, [181] = 181, [182] = 182, [183] = 183, @@ -3895,254 +4003,254 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [185] = 185, [186] = 186, [187] = 187, - [188] = 187, + [188] = 164, [189] = 189, [190] = 190, - [191] = 166, + [191] = 164, [192] = 192, - [193] = 193, + [193] = 187, [194] = 194, - [195] = 167, - [196] = 196, - [197] = 197, + [195] = 183, + [196] = 166, + [197] = 170, [198] = 198, - [199] = 192, - [200] = 184, - [201] = 167, - [202] = 202, + [199] = 172, + [200] = 167, + [201] = 168, + [202] = 186, [203] = 203, [204] = 204, [205] = 205, - [206] = 206, + [206] = 194, [207] = 207, - [208] = 184, - [209] = 205, - [210] = 207, - [211] = 192, + [208] = 187, + [209] = 174, + [210] = 210, + [211] = 171, [212] = 212, - [213] = 184, + [213] = 213, [214] = 214, - [215] = 215, - [216] = 207, - [217] = 184, + [215] = 175, + [216] = 187, + [217] = 217, [218] = 218, - [219] = 205, - [220] = 205, - [221] = 184, + [219] = 219, + [220] = 220, + [221] = 221, [222] = 222, - [223] = 223, - [224] = 224, - [225] = 214, - [226] = 226, - [227] = 223, - [228] = 228, - [229] = 229, + [223] = 186, + [224] = 219, + [225] = 225, + [226] = 171, + [227] = 227, + [228] = 180, + [229] = 170, [230] = 230, - [231] = 175, - [232] = 171, - [233] = 176, - [234] = 186, - [235] = 172, - [236] = 175, - [237] = 176, - [238] = 178, - [239] = 178, - [240] = 179, - [241] = 179, - [242] = 164, - [243] = 182, - [244] = 183, - [245] = 245, - [246] = 184, - [247] = 247, - [248] = 185, - [249] = 186, - [250] = 187, - [251] = 166, - [252] = 252, - [253] = 222, - [254] = 182, - [255] = 183, - [256] = 229, - [257] = 257, - [258] = 215, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 212, + [235] = 235, + [236] = 236, + [237] = 172, + [238] = 238, + [239] = 187, + [240] = 165, + [241] = 173, + [242] = 169, + [243] = 173, + [244] = 244, + [245] = 176, + [246] = 187, + [247] = 176, + [248] = 168, + [249] = 249, + [250] = 167, + [251] = 174, + [252] = 187, + [253] = 166, + [254] = 238, + [255] = 170, + [256] = 171, + [257] = 230, + [258] = 172, [259] = 259, - [260] = 215, - [261] = 184, - [262] = 166, - [263] = 187, - [264] = 186, - [265] = 185, + [260] = 173, + [261] = 261, + [262] = 180, + [263] = 183, + [264] = 264, + [265] = 187, [266] = 266, - [267] = 185, - [268] = 184, - [269] = 183, - [270] = 270, - [271] = 168, - [272] = 182, + [267] = 166, + [268] = 167, + [269] = 168, + [270] = 186, + [271] = 230, + [272] = 236, [273] = 164, [274] = 274, - [275] = 185, - [276] = 266, - [277] = 186, - [278] = 187, - [279] = 166, - [280] = 206, - [281] = 184, - [282] = 183, - [283] = 171, - [284] = 179, - [285] = 171, - [286] = 207, - [287] = 287, - [288] = 178, - [289] = 176, - [290] = 182, - [291] = 175, - [292] = 171, - [293] = 164, - [294] = 294, - [295] = 179, - [296] = 178, - [297] = 192, - [298] = 298, + [275] = 174, + [276] = 249, + [277] = 187, + [278] = 190, + [279] = 236, + [280] = 244, + [281] = 183, + [282] = 282, + [283] = 165, + [284] = 284, + [285] = 236, + [286] = 286, + [287] = 180, + [288] = 244, + [289] = 165, + [290] = 180, + [291] = 173, + [292] = 172, + [293] = 183, + [294] = 282, + [295] = 235, + [296] = 171, + [297] = 244, + [298] = 170, [299] = 299, - [300] = 300, - [301] = 167, - [302] = 302, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 287, - [307] = 270, - [308] = 226, - [309] = 247, + [300] = 236, + [301] = 186, + [302] = 218, + [303] = 187, + [304] = 164, + [305] = 166, + [306] = 168, + [307] = 307, + [308] = 222, + [309] = 309, [310] = 167, - [311] = 202, - [312] = 274, + [311] = 311, + [312] = 312, [313] = 313, - [314] = 314, - [315] = 315, - [316] = 176, - [317] = 175, - [318] = 165, + [314] = 309, + [315] = 217, + [316] = 316, + [317] = 176, + [318] = 312, [319] = 319, - [320] = 319, - [321] = 321, + [320] = 320, + [321] = 319, [322] = 319, - [323] = 321, - [324] = 321, + [323] = 320, + [324] = 320, [325] = 325, [326] = 326, - [327] = 325, - [328] = 328, - [329] = 325, - [330] = 328, - [331] = 326, + [327] = 327, + [328] = 326, + [329] = 329, + [330] = 327, + [331] = 331, [332] = 326, - [333] = 333, - [334] = 334, - [335] = 328, - [336] = 334, - [337] = 334, + [333] = 331, + [334] = 325, + [335] = 325, + [336] = 327, + [337] = 331, [338] = 338, [339] = 339, [340] = 340, [341] = 341, - [342] = 339, + [342] = 340, [343] = 343, [344] = 344, [345] = 345, [346] = 346, - [347] = 347, - [348] = 347, - [349] = 345, + [347] = 341, + [348] = 345, + [349] = 339, [350] = 344, - [351] = 340, + [351] = 351, [352] = 352, - [353] = 341, - [354] = 354, + [353] = 353, + [354] = 346, [355] = 355, - [356] = 355, - [357] = 357, + [356] = 356, + [357] = 355, [358] = 355, [359] = 359, [360] = 360, [361] = 361, [362] = 362, [363] = 363, - [364] = 359, - [365] = 365, - [366] = 360, - [367] = 367, - [368] = 360, - [369] = 360, - [370] = 365, + [364] = 361, + [365] = 362, + [366] = 363, + [367] = 361, + [368] = 368, + [369] = 369, + [370] = 360, [371] = 359, - [372] = 372, - [373] = 361, + [372] = 362, + [373] = 373, [374] = 363, - [375] = 375, - [376] = 375, - [377] = 377, - [378] = 372, + [375] = 369, + [376] = 360, + [377] = 359, + [378] = 378, [379] = 361, - [380] = 377, - [381] = 360, - [382] = 359, - [383] = 365, - [384] = 365, - [385] = 365, - [386] = 359, - [387] = 365, - [388] = 362, - [389] = 372, - [390] = 360, - [391] = 391, - [392] = 372, - [393] = 363, + [380] = 362, + [381] = 363, + [382] = 369, + [383] = 383, + [384] = 363, + [385] = 359, + [386] = 360, + [387] = 369, + [388] = 359, + [389] = 389, + [390] = 383, + [391] = 373, + [392] = 361, + [393] = 362, [394] = 363, - [395] = 361, - [396] = 372, + [395] = 395, + [396] = 369, [397] = 397, - [398] = 398, - [399] = 363, - [400] = 363, - [401] = 401, - [402] = 359, - [403] = 361, - [404] = 397, - [405] = 405, - [406] = 372, - [407] = 401, - [408] = 361, - [409] = 398, + [398] = 389, + [399] = 360, + [400] = 395, + [401] = 397, + [402] = 402, + [403] = 362, + [404] = 404, + [405] = 402, + [406] = 361, + [407] = 359, + [408] = 360, + [409] = 369, [410] = 410, [411] = 411, - [412] = 411, - [413] = 413, + [412] = 412, + [413] = 412, [414] = 414, - [415] = 415, - [416] = 414, - [417] = 414, - [418] = 413, - [419] = 415, - [420] = 411, + [415] = 411, + [416] = 416, + [417] = 416, + [418] = 414, + [419] = 411, + [420] = 414, [421] = 421, [422] = 422, [423] = 423, [424] = 424, - [425] = 425, + [425] = 404, [426] = 426, [427] = 427, [428] = 428, [429] = 429, [430] = 430, - [431] = 422, + [431] = 431, [432] = 432, [433] = 433, - [434] = 391, - [435] = 435, + [434] = 434, + [435] = 423, [436] = 436, [437] = 437, [438] = 438, @@ -4151,64 +4259,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [441] = 441, [442] = 442, [443] = 443, - [444] = 432, - [445] = 315, - [446] = 438, - [447] = 424, - [448] = 305, - [449] = 430, - [450] = 450, - [451] = 136, - [452] = 158, - [453] = 160, - [454] = 156, - [455] = 162, - [456] = 161, - [457] = 193, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 182, + [449] = 207, + [450] = 446, + [451] = 430, + [452] = 438, + [453] = 432, + [454] = 454, + [455] = 455, + [456] = 431, + [457] = 457, [458] = 458, - [459] = 259, - [460] = 460, - [461] = 458, - [462] = 203, - [463] = 169, - [464] = 464, - [465] = 252, - [466] = 300, - [467] = 298, - [468] = 230, - [469] = 458, - [470] = 194, - [471] = 314, - [472] = 458, - [473] = 181, - [474] = 224, - [475] = 204, - [476] = 190, - [477] = 189, - [478] = 173, - [479] = 299, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 481, - [484] = 480, - [485] = 480, - [486] = 481, - [487] = 482, - [488] = 482, - [489] = 481, + [459] = 137, + [460] = 155, + [461] = 158, + [462] = 163, + [463] = 162, + [464] = 156, + [465] = 465, + [466] = 232, + [467] = 179, + [468] = 204, + [469] = 181, + [470] = 213, + [471] = 192, + [472] = 284, + [473] = 220, + [474] = 225, + [475] = 475, + [476] = 465, + [477] = 465, + [478] = 264, + [479] = 316, + [480] = 307, + [481] = 465, + [482] = 231, + [483] = 483, + [484] = 185, + [485] = 274, + [486] = 189, + [487] = 198, + [488] = 488, + [489] = 488, [490] = 490, - [491] = 490, - [492] = 490, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, + [491] = 491, + [492] = 491, + [493] = 491, + [494] = 490, + [495] = 491, + [496] = 490, + [497] = 488, [498] = 498, [499] = 499, - [500] = 500, - [501] = 501, + [500] = 498, + [501] = 498, [502] = 502, [503] = 503, [504] = 504, @@ -4219,10 +4327,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [509] = 509, [510] = 510, [511] = 511, - [512] = 512, + [512] = 155, [513] = 513, [514] = 514, - [515] = 515, + [515] = 158, [516] = 516, [517] = 517, [518] = 518, @@ -4242,11 +4350,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [532] = 532, [533] = 533, [534] = 534, - [535] = 158, + [535] = 535, [536] = 536, [537] = 537, [538] = 538, - [539] = 160, + [539] = 539, [540] = 540, [541] = 541, [542] = 542, @@ -4262,11 +4370,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [552] = 552, [553] = 553, [554] = 554, - [555] = 555, + [555] = 163, [556] = 556, [557] = 557, [558] = 558, - [559] = 156, + [559] = 559, [560] = 560, [561] = 561, [562] = 562, @@ -4274,11 +4382,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [564] = 564, [565] = 565, [566] = 566, - [567] = 567, + [567] = 162, [568] = 568, [569] = 569, [570] = 570, - [571] = 161, + [571] = 571, [572] = 572, [573] = 573, [574] = 574, @@ -4296,20 +4404,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [586] = 586, [587] = 587, [588] = 588, - [589] = 589, + [589] = 506, [590] = 590, [591] = 591, [592] = 592, [593] = 593, [594] = 594, - [595] = 499, + [595] = 595, [596] = 596, [597] = 597, [598] = 598, [599] = 599, - [600] = 162, + [600] = 600, [601] = 601, - [602] = 602, + [602] = 156, [603] = 603, [604] = 604, [605] = 605, @@ -4361,7 +4469,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [651] = 651, [652] = 652, [653] = 653, - [654] = 654, + [654] = 578, [655] = 655, [656] = 656, [657] = 657, @@ -4419,7 +4527,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [709] = 709, [710] = 710, [711] = 711, - [712] = 581, + [712] = 712, [713] = 713, [714] = 714, [715] = 715, @@ -4473,49 +4581,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [763] = 763, [764] = 764, [765] = 765, - [766] = 765, + [766] = 766, [767] = 767, [768] = 768, - [769] = 768, - [770] = 767, + [769] = 769, + [770] = 770, [771] = 771, [772] = 772, [773] = 773, [774] = 774, [775] = 775, - [776] = 776, + [776] = 775, [777] = 777, - [778] = 778, + [778] = 777, [779] = 779, - [780] = 780, + [780] = 779, [781] = 781, [782] = 782, [783] = 783, [784] = 784, - [785] = 784, - [786] = 783, + [785] = 785, + [786] = 786, [787] = 787, [788] = 788, [789] = 789, [790] = 790, [791] = 791, [792] = 791, - [793] = 789, - [794] = 790, + [793] = 793, + [794] = 793, [795] = 795, [796] = 796, - [797] = 796, + [797] = 797, [798] = 798, [799] = 799, [800] = 800, - [801] = 800, + [801] = 801, [802] = 802, [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 804, + [804] = 802, + [805] = 800, + [806] = 799, + [807] = 798, + [808] = 808, [809] = 809, [810] = 810, [811] = 811, @@ -4524,235 +4632,235 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [814] = 814, [815] = 815, [816] = 816, - [817] = 803, - [818] = 800, - [819] = 799, - [820] = 811, - [821] = 816, + [817] = 817, + [818] = 814, + [819] = 819, + [820] = 820, + [821] = 821, [822] = 822, - [823] = 823, - [824] = 802, - [825] = 816, - [826] = 826, + [823] = 810, + [824] = 824, + [825] = 809, + [826] = 820, [827] = 827, - [828] = 815, - [829] = 805, - [830] = 800, - [831] = 816, - [832] = 806, - [833] = 822, + [828] = 814, + [829] = 829, + [830] = 812, + [831] = 810, + [832] = 832, + [833] = 817, [834] = 834, - [835] = 835, - [836] = 561, - [837] = 834, - [838] = 834, - [839] = 834, - [840] = 840, - [841] = 840, - [842] = 842, + [835] = 824, + [836] = 810, + [837] = 815, + [838] = 832, + [839] = 822, + [840] = 829, + [841] = 841, + [842] = 814, [843] = 843, - [844] = 842, - [845] = 843, + [844] = 844, + [845] = 845, [846] = 846, - [847] = 847, - [848] = 848, - [849] = 847, - [850] = 850, - [851] = 842, - [852] = 843, - [853] = 848, - [854] = 846, - [855] = 840, - [856] = 840, - [857] = 846, - [858] = 858, - [859] = 859, + [847] = 846, + [848] = 846, + [849] = 846, + [850] = 586, + [851] = 851, + [852] = 852, + [853] = 853, + [854] = 851, + [855] = 852, + [856] = 856, + [857] = 857, + [858] = 853, + [859] = 857, [860] = 860, [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 858, - [866] = 866, - [867] = 867, - [868] = 868, + [862] = 860, + [863] = 861, + [864] = 852, + [865] = 851, + [866] = 861, + [867] = 852, + [868] = 860, [869] = 869, [870] = 870, - [871] = 860, + [871] = 871, [872] = 872, - [873] = 862, + [873] = 873, [874] = 874, [875] = 875, [876] = 876, [877] = 877, [878] = 878, [879] = 879, - [880] = 880, + [880] = 873, [881] = 881, [882] = 882, [883] = 883, [884] = 884, [885] = 885, [886] = 886, - [887] = 879, + [887] = 887, [888] = 888, [889] = 889, [890] = 890, [891] = 891, [892] = 892, [893] = 893, - [894] = 892, + [894] = 894, [895] = 895, [896] = 896, [897] = 897, [898] = 898, [899] = 899, [900] = 900, - [901] = 901, + [901] = 886, [902] = 902, - [903] = 903, - [904] = 904, + [903] = 885, + [904] = 902, [905] = 905, [906] = 906, - [907] = 904, + [907] = 883, [908] = 908, [909] = 909, - [910] = 889, - [911] = 883, + [910] = 910, + [911] = 911, [912] = 912, - [913] = 864, - [914] = 882, + [913] = 913, + [914] = 875, [915] = 915, - [916] = 905, - [917] = 880, - [918] = 893, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 861, + [916] = 916, + [917] = 917, + [918] = 910, + [919] = 913, + [920] = 915, + [921] = 911, + [922] = 874, + [923] = 876, [924] = 924, - [925] = 925, + [925] = 877, [926] = 926, - [927] = 927, - [928] = 921, - [929] = 867, - [930] = 919, + [927] = 912, + [928] = 928, + [929] = 905, + [930] = 930, [931] = 931, [932] = 932, - [933] = 868, - [934] = 920, - [935] = 935, - [936] = 860, - [937] = 897, - [938] = 922, - [939] = 921, - [940] = 909, - [941] = 927, + [933] = 933, + [934] = 911, + [935] = 912, + [936] = 936, + [937] = 915, + [938] = 930, + [939] = 939, + [940] = 917, + [941] = 941, [942] = 942, - [943] = 892, - [944] = 862, - [945] = 905, - [946] = 935, - [947] = 859, - [948] = 948, - [949] = 949, - [950] = 908, - [951] = 904, - [952] = 952, - [953] = 895, - [954] = 915, - [955] = 879, - [956] = 949, - [957] = 898, - [958] = 889, - [959] = 877, - [960] = 960, - [961] = 912, - [962] = 888, - [963] = 869, - [964] = 885, - [965] = 900, - [966] = 872, - [967] = 967, + [943] = 879, + [944] = 871, + [945] = 887, + [946] = 933, + [947] = 888, + [948] = 881, + [949] = 916, + [950] = 890, + [951] = 913, + [952] = 926, + [953] = 905, + [954] = 939, + [955] = 931, + [956] = 872, + [957] = 891, + [958] = 958, + [959] = 959, + [960] = 892, + [961] = 961, + [962] = 962, + [963] = 889, + [964] = 964, + [965] = 896, + [966] = 897, + [967] = 899, [968] = 968, - [969] = 960, - [970] = 967, - [971] = 875, - [972] = 972, - [973] = 902, - [974] = 878, - [975] = 942, - [976] = 976, - [977] = 862, - [978] = 942, - [979] = 884, - [980] = 931, + [969] = 932, + [970] = 958, + [971] = 959, + [972] = 942, + [973] = 973, + [974] = 962, + [975] = 964, + [976] = 931, + [977] = 884, + [978] = 968, + [979] = 906, + [980] = 980, [981] = 981, - [982] = 881, - [983] = 874, - [984] = 984, - [985] = 922, - [986] = 920, - [987] = 892, - [988] = 860, - [989] = 932, - [990] = 863, - [991] = 903, - [992] = 906, - [993] = 968, - [994] = 919, - [995] = 995, - [996] = 996, - [997] = 997, - [998] = 998, - [999] = 561, - [1000] = 1000, + [982] = 982, + [983] = 886, + [984] = 885, + [985] = 985, + [986] = 878, + [987] = 987, + [988] = 988, + [989] = 911, + [990] = 990, + [991] = 991, + [992] = 985, + [993] = 926, + [994] = 941, + [995] = 885, + [996] = 990, + [997] = 886, + [998] = 973, + [999] = 980, + [1000] = 932, [1001] = 1001, - [1002] = 1002, - [1003] = 1003, - [1004] = 1004, - [1005] = 1005, + [1002] = 870, + [1003] = 991, + [1004] = 878, + [1005] = 881, [1006] = 1006, - [1007] = 294, + [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 315, - [1011] = 305, + [1010] = 1010, + [1011] = 586, [1012] = 1012, - [1013] = 158, + [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 196, - [1017] = 1017, - [1018] = 160, + [1016] = 162, + [1017] = 182, + [1018] = 207, [1019] = 156, - [1020] = 162, - [1021] = 161, + [1020] = 163, + [1021] = 158, [1022] = 1022, [1023] = 1023, [1024] = 1024, - [1025] = 1025, - [1026] = 552, - [1027] = 556, - [1028] = 749, + [1025] = 155, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, [1029] = 1029, - [1030] = 1030, - [1031] = 639, + [1030] = 311, + [1031] = 177, [1032] = 1032, - [1033] = 662, + [1033] = 1033, [1034] = 1034, - [1035] = 1035, + [1035] = 604, [1036] = 1036, - [1037] = 136, + [1037] = 1037, [1038] = 1038, [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 1045, + [1042] = 722, + [1043] = 761, + [1044] = 637, + [1045] = 748, [1046] = 1046, [1047] = 1047, [1048] = 1048, @@ -4765,15 +4873,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 1000, + [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1063, + [1063] = 404, [1064] = 1064, [1065] = 1065, - [1066] = 391, + [1066] = 1066, [1067] = 1067, [1068] = 1068, [1069] = 1069, @@ -4783,1377 +4891,1377 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 690, + [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 537, - [1080] = 541, - [1081] = 542, - [1082] = 513, - [1083] = 544, - [1084] = 512, - [1085] = 515, - [1086] = 546, - [1087] = 514, - [1088] = 550, - [1089] = 518, - [1090] = 519, - [1091] = 520, - [1092] = 555, - [1093] = 521, - [1094] = 524, - [1095] = 526, - [1096] = 528, - [1097] = 224, - [1098] = 568, - [1099] = 603, - [1100] = 432, - [1101] = 193, - [1102] = 511, - [1103] = 510, - [1104] = 569, - [1105] = 509, - [1106] = 570, - [1107] = 572, - [1108] = 575, - [1109] = 503, - [1110] = 578, - [1111] = 579, - [1112] = 582, - [1113] = 1113, - [1114] = 502, - [1115] = 584, - [1116] = 538, - [1117] = 299, - [1118] = 529, - [1119] = 533, - [1120] = 536, - [1121] = 300, - [1122] = 586, - [1123] = 543, - [1124] = 160, - [1125] = 632, - [1126] = 554, - [1127] = 558, - [1128] = 587, - [1129] = 588, - [1130] = 589, - [1131] = 1131, - [1132] = 590, - [1133] = 1133, - [1134] = 599, - [1135] = 305, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1139, + [1079] = 1010, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 137, + [1088] = 651, + [1089] = 542, + [1090] = 754, + [1091] = 769, + [1092] = 758, + [1093] = 747, + [1094] = 158, + [1095] = 733, + [1096] = 691, + [1097] = 687, + [1098] = 683, + [1099] = 672, + [1100] = 618, + [1101] = 764, + [1102] = 220, + [1103] = 716, + [1104] = 703, + [1105] = 704, + [1106] = 438, + [1107] = 1107, + [1108] = 701, + [1109] = 700, + [1110] = 698, + [1111] = 1111, + [1112] = 697, + [1113] = 694, + [1114] = 692, + [1115] = 756, + [1116] = 232, + [1117] = 753, + [1118] = 752, + [1119] = 264, + [1120] = 751, + [1121] = 617, + [1122] = 749, + [1123] = 1123, + [1124] = 605, + [1125] = 601, + [1126] = 742, + [1127] = 599, + [1128] = 741, + [1129] = 735, + [1130] = 732, + [1131] = 596, + [1132] = 587, + [1133] = 207, + [1134] = 728, + [1135] = 724, + [1136] = 723, + [1137] = 720, + [1138] = 715, + [1139] = 579, [1140] = 1140, - [1141] = 604, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 593, - [1146] = 596, - [1147] = 597, - [1148] = 605, - [1149] = 1149, - [1150] = 606, - [1151] = 607, - [1152] = 613, - [1153] = 614, + [1141] = 706, + [1142] = 620, + [1143] = 702, + [1144] = 641, + [1145] = 179, + [1146] = 1146, + [1147] = 642, + [1148] = 1148, + [1149] = 591, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 616, + [1156] = 1156, [1157] = 1157, - [1158] = 617, - [1159] = 618, - [1160] = 620, - [1161] = 621, - [1162] = 496, - [1163] = 1163, - [1164] = 1164, - [1165] = 652, - [1166] = 665, - [1167] = 670, - [1168] = 1168, - [1169] = 230, - [1170] = 691, - [1171] = 1171, - [1172] = 693, - [1173] = 695, - [1174] = 622, - [1175] = 698, - [1176] = 699, - [1177] = 624, - [1178] = 703, - [1179] = 628, - [1180] = 706, - [1181] = 629, - [1182] = 713, + [1158] = 507, + [1159] = 513, + [1160] = 510, + [1161] = 511, + [1162] = 1162, + [1163] = 520, + [1164] = 521, + [1165] = 529, + [1166] = 1166, + [1167] = 531, + [1168] = 532, + [1169] = 1169, + [1170] = 1170, + [1171] = 590, + [1172] = 1172, + [1173] = 615, + [1174] = 1174, + [1175] = 634, + [1176] = 623, + [1177] = 699, + [1178] = 738, + [1179] = 625, + [1180] = 307, + [1181] = 628, + [1182] = 650, [1183] = 630, - [1184] = 722, - [1185] = 726, - [1186] = 727, - [1187] = 728, - [1188] = 733, - [1189] = 735, - [1190] = 737, - [1191] = 739, - [1192] = 741, - [1193] = 756, - [1194] = 314, - [1195] = 747, - [1196] = 748, - [1197] = 759, - [1198] = 758, - [1199] = 637, - [1200] = 757, - [1201] = 755, - [1202] = 640, - [1203] = 1203, - [1204] = 649, - [1205] = 169, - [1206] = 717, - [1207] = 650, - [1208] = 653, - [1209] = 654, - [1210] = 715, - [1211] = 655, - [1212] = 656, - [1213] = 658, - [1214] = 714, - [1215] = 659, - [1216] = 663, - [1217] = 711, - [1218] = 710, - [1219] = 1219, - [1220] = 259, - [1221] = 1221, - [1222] = 664, - [1223] = 666, - [1224] = 667, - [1225] = 685, - [1226] = 668, + [1184] = 609, + [1185] = 517, + [1186] = 633, + [1187] = 524, + [1188] = 534, + [1189] = 635, + [1190] = 546, + [1191] = 548, + [1192] = 503, + [1193] = 552, + [1194] = 576, + [1195] = 594, + [1196] = 597, + [1197] = 598, + [1198] = 647, + [1199] = 648, + [1200] = 653, + [1201] = 655, + [1202] = 673, + [1203] = 676, + [1204] = 1204, + [1205] = 679, + [1206] = 693, + [1207] = 1207, + [1208] = 695, + [1209] = 696, + [1210] = 645, + [1211] = 709, + [1212] = 192, + [1213] = 675, + [1214] = 770, + [1215] = 1215, + [1216] = 767, + [1217] = 274, + [1218] = 746, + [1219] = 744, + [1220] = 743, + [1221] = 740, + [1222] = 739, + [1223] = 189, + [1224] = 734, + [1225] = 714, + [1226] = 690, [1227] = 669, - [1228] = 682, - [1229] = 671, - [1230] = 672, - [1231] = 679, - [1232] = 673, - [1233] = 674, - [1234] = 675, - [1235] = 676, - [1236] = 678, - [1237] = 683, - [1238] = 660, - [1239] = 686, - [1240] = 315, - [1241] = 689, - [1242] = 692, - [1243] = 694, - [1244] = 158, - [1245] = 718, - [1246] = 1246, - [1247] = 721, - [1248] = 1248, - [1249] = 1249, - [1250] = 730, - [1251] = 732, - [1252] = 746, - [1253] = 752, + [1228] = 711, + [1229] = 708, + [1230] = 707, + [1231] = 689, + [1232] = 643, + [1233] = 182, + [1234] = 613, + [1235] = 603, + [1236] = 600, + [1237] = 636, + [1238] = 525, + [1239] = 561, + [1240] = 562, + [1241] = 564, + [1242] = 566, + [1243] = 1243, + [1244] = 573, + [1245] = 577, + [1246] = 580, + [1247] = 1247, + [1248] = 582, + [1249] = 584, + [1250] = 588, + [1251] = 592, + [1252] = 1252, + [1253] = 593, [1254] = 1254, - [1255] = 762, - [1256] = 764, - [1257] = 763, - [1258] = 761, - [1259] = 760, - [1260] = 627, - [1261] = 754, - [1262] = 753, - [1263] = 1263, - [1264] = 751, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 750, - [1269] = 745, - [1270] = 156, - [1271] = 495, - [1272] = 532, - [1273] = 744, - [1274] = 430, - [1275] = 743, - [1276] = 1276, - [1277] = 1277, - [1278] = 740, - [1279] = 438, - [1280] = 501, - [1281] = 500, - [1282] = 738, - [1283] = 736, - [1284] = 731, - [1285] = 525, - [1286] = 196, + [1255] = 595, + [1256] = 638, + [1257] = 644, + [1258] = 155, + [1259] = 718, + [1260] = 721, + [1261] = 1261, + [1262] = 762, + [1263] = 757, + [1264] = 1264, + [1265] = 750, + [1266] = 745, + [1267] = 736, + [1268] = 730, + [1269] = 1269, + [1270] = 729, + [1271] = 1271, + [1272] = 727, + [1273] = 1273, + [1274] = 1274, + [1275] = 163, + [1276] = 563, + [1277] = 726, + [1278] = 557, + [1279] = 1279, + [1280] = 1280, + [1281] = 725, + [1282] = 432, + [1283] = 554, + [1284] = 1284, + [1285] = 719, + [1286] = 717, [1287] = 1287, - [1288] = 716, - [1289] = 697, - [1290] = 1290, - [1291] = 651, - [1292] = 1292, - [1293] = 203, - [1294] = 647, - [1295] = 1295, - [1296] = 646, - [1297] = 531, - [1298] = 545, - [1299] = 548, - [1300] = 1300, - [1301] = 1301, - [1302] = 549, - [1303] = 551, - [1304] = 645, - [1305] = 644, - [1306] = 553, - [1307] = 643, - [1308] = 642, - [1309] = 638, - [1310] = 634, - [1311] = 633, - [1312] = 631, - [1313] = 720, - [1314] = 626, - [1315] = 625, - [1316] = 623, - [1317] = 562, - [1318] = 619, - [1319] = 615, - [1320] = 563, - [1321] = 252, - [1322] = 1322, - [1323] = 534, - [1324] = 612, - [1325] = 567, - [1326] = 611, - [1327] = 573, - [1328] = 574, - [1329] = 1329, - [1330] = 610, - [1331] = 557, - [1332] = 547, - [1333] = 522, - [1334] = 517, - [1335] = 1335, - [1336] = 516, - [1337] = 194, - [1338] = 1338, - [1339] = 508, - [1340] = 507, - [1341] = 506, - [1342] = 505, - [1343] = 591, - [1344] = 294, - [1345] = 504, - [1346] = 498, - [1347] = 497, - [1348] = 523, - [1349] = 527, + [1288] = 1288, + [1289] = 519, + [1290] = 713, + [1291] = 518, + [1292] = 505, + [1293] = 710, + [1294] = 177, + [1295] = 678, + [1296] = 446, + [1297] = 504, + [1298] = 1298, + [1299] = 198, + [1300] = 509, + [1301] = 671, + [1302] = 516, + [1303] = 508, + [1304] = 523, + [1305] = 526, + [1306] = 670, + [1307] = 544, + [1308] = 668, + [1309] = 667, + [1310] = 666, + [1311] = 559, + [1312] = 560, + [1313] = 231, + [1314] = 565, + [1315] = 660, + [1316] = 658, + [1317] = 1317, + [1318] = 568, + [1319] = 569, + [1320] = 1320, + [1321] = 632, + [1322] = 631, + [1323] = 1323, + [1324] = 629, + [1325] = 627, + [1326] = 626, + [1327] = 619, + [1328] = 616, + [1329] = 614, + [1330] = 572, + [1331] = 575, + [1332] = 311, + [1333] = 737, + [1334] = 1334, + [1335] = 316, + [1336] = 1336, + [1337] = 549, + [1338] = 543, + [1339] = 755, + [1340] = 541, + [1341] = 540, + [1342] = 539, + [1343] = 538, + [1344] = 537, + [1345] = 536, + [1346] = 535, + [1347] = 1347, + [1348] = 533, + [1349] = 530, [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 298, - [1354] = 1354, - [1355] = 530, - [1356] = 540, - [1357] = 564, - [1358] = 1358, - [1359] = 576, - [1360] = 577, - [1361] = 583, - [1362] = 592, - [1363] = 594, - [1364] = 608, - [1365] = 609, + [1351] = 528, + [1352] = 522, + [1353] = 677, + [1354] = 284, + [1355] = 514, + [1356] = 527, + [1357] = 545, + [1358] = 547, + [1359] = 550, + [1360] = 553, + [1361] = 556, + [1362] = 558, + [1363] = 570, + [1364] = 574, + [1365] = 583, [1366] = 1366, - [1367] = 641, - [1368] = 661, - [1369] = 1369, - [1370] = 677, - [1371] = 680, - [1372] = 681, - [1373] = 687, - [1374] = 1374, - [1375] = 688, - [1376] = 684, - [1377] = 696, - [1378] = 700, - [1379] = 701, - [1380] = 704, - [1381] = 705, - [1382] = 707, - [1383] = 1383, - [1384] = 1384, + [1367] = 606, + [1368] = 1368, + [1369] = 607, + [1370] = 608, + [1371] = 1371, + [1372] = 610, + [1373] = 611, + [1374] = 612, + [1375] = 581, + [1376] = 621, + [1377] = 639, + [1378] = 640, + [1379] = 649, + [1380] = 657, + [1381] = 661, + [1382] = 662, + [1383] = 663, + [1384] = 664, [1385] = 1385, - [1386] = 723, - [1387] = 734, - [1388] = 742, - [1389] = 725, - [1390] = 724, - [1391] = 657, - [1392] = 648, - [1393] = 635, - [1394] = 602, - [1395] = 601, - [1396] = 598, - [1397] = 585, - [1398] = 580, - [1399] = 566, + [1386] = 1386, + [1387] = 1387, + [1388] = 665, + [1389] = 680, + [1390] = 681, + [1391] = 684, + [1392] = 1392, + [1393] = 685, + [1394] = 686, + [1395] = 1395, + [1396] = 705, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, [1400] = 1400, - [1401] = 565, - [1402] = 560, - [1403] = 1403, - [1404] = 162, - [1405] = 161, - [1406] = 424, - [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1415, - [1416] = 1416, + [1401] = 1401, + [1402] = 162, + [1403] = 585, + [1404] = 1404, + [1405] = 1405, + [1406] = 763, + [1407] = 773, + [1408] = 774, + [1409] = 768, + [1410] = 765, + [1411] = 712, + [1412] = 646, + [1413] = 688, + [1414] = 571, + [1415] = 766, + [1416] = 760, [1417] = 1417, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 561, - [1422] = 181, - [1423] = 190, - [1424] = 173, - [1425] = 189, - [1426] = 204, - [1427] = 719, - [1428] = 708, + [1418] = 731, + [1419] = 682, + [1420] = 659, + [1421] = 624, + [1422] = 1422, + [1423] = 431, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1427, + [1428] = 1428, [1429] = 1429, [1430] = 1430, - [1431] = 1431, - [1432] = 787, + [1431] = 156, + [1432] = 1432, [1433] = 1433, - [1434] = 1434, + [1434] = 586, [1435] = 1435, [1436] = 1436, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1001, - [1441] = 1441, + [1438] = 652, + [1439] = 656, + [1440] = 1440, + [1441] = 225, [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1034, + [1443] = 181, + [1444] = 185, + [1445] = 213, + [1446] = 204, + [1447] = 1447, [1448] = 1448, - [1449] = 1449, - [1450] = 1450, + [1449] = 803, + [1450] = 1012, [1451] = 1451, - [1452] = 1003, + [1452] = 1452, [1453] = 1453, [1454] = 1454, [1455] = 1455, - [1456] = 1004, + [1456] = 1456, [1457] = 1457, [1458] = 1458, [1459] = 1459, - [1460] = 1002, + [1460] = 1460, [1461] = 1461, [1462] = 1462, - [1463] = 1034, + [1463] = 1037, [1464] = 1464, - [1465] = 1465, + [1465] = 1015, [1466] = 1466, - [1467] = 1056, - [1468] = 1017, - [1469] = 1466, - [1470] = 1465, - [1471] = 1005, - [1472] = 1009, - [1473] = 1006, - [1474] = 1012, - [1475] = 1015, - [1476] = 1466, + [1467] = 1014, + [1468] = 1468, + [1469] = 1037, + [1470] = 1470, + [1471] = 1013, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, [1477] = 1477, - [1478] = 1465, - [1479] = 1477, - [1480] = 1075, - [1481] = 1034, - [1482] = 561, - [1483] = 1477, - [1484] = 1014, - [1485] = 1008, - [1486] = 1051, - [1487] = 1487, - [1488] = 1050, - [1489] = 1051, - [1490] = 1032, - [1491] = 136, - [1492] = 1277, - [1493] = 1029, - [1494] = 1277, - [1495] = 1023, - [1496] = 1409, - [1497] = 1417, - [1498] = 1047, - [1499] = 1050, - [1500] = 1056, - [1501] = 1025, - [1502] = 1171, - [1503] = 1171, - [1504] = 1075, - [1505] = 1277, - [1506] = 1506, - [1507] = 1507, - [1508] = 1068, - [1509] = 1059, - [1510] = 1506, - [1511] = 1045, - [1512] = 1507, - [1513] = 1041, - [1514] = 1514, - [1515] = 1046, - [1516] = 1516, - [1517] = 1061, - [1518] = 1064, - [1519] = 1074, - [1520] = 1520, - [1521] = 1521, - [1522] = 1038, - [1523] = 1434, - [1524] = 1069, - [1525] = 1516, - [1526] = 1040, - [1527] = 1527, - [1528] = 1067, - [1529] = 1065, - [1530] = 1530, - [1531] = 1520, - [1532] = 1043, - [1533] = 1052, - [1534] = 1521, - [1535] = 1042, - [1536] = 1521, - [1537] = 1409, - [1538] = 1520, - [1539] = 1520, - [1540] = 1044, - [1541] = 1055, - [1542] = 1542, - [1543] = 1521, - [1544] = 1036, - [1545] = 1047, - [1546] = 1431, - [1547] = 1434, - [1548] = 1073, - [1549] = 162, - [1550] = 1071, - [1551] = 1417, - [1552] = 1057, - [1553] = 1072, - [1554] = 1048, - [1555] = 1035, - [1556] = 1542, - [1557] = 1557, - [1558] = 1558, - [1559] = 158, - [1560] = 160, - [1561] = 156, - [1562] = 161, - [1563] = 1053, - [1564] = 1039, - [1565] = 1565, - [1566] = 1070, - [1567] = 1567, - [1568] = 1049, - [1569] = 1431, - [1570] = 1410, - [1571] = 424, - [1572] = 1335, - [1573] = 1352, - [1574] = 1351, - [1575] = 1301, - [1576] = 1254, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1027, + [1485] = 1053, + [1486] = 1075, + [1487] = 1028, + [1488] = 1488, + [1489] = 1489, + [1490] = 844, + [1491] = 1489, + [1492] = 1492, + [1493] = 1483, + [1494] = 1022, + [1495] = 1029, + [1496] = 1052, + [1497] = 1026, + [1498] = 1023, + [1499] = 1032, + [1500] = 1024, + [1501] = 1488, + [1502] = 1489, + [1503] = 1055, + [1504] = 1037, + [1505] = 1483, + [1506] = 1488, + [1507] = 586, + [1508] = 1040, + [1509] = 1284, + [1510] = 1204, + [1511] = 1036, + [1512] = 1432, + [1513] = 1039, + [1514] = 1052, + [1515] = 1082, + [1516] = 1284, + [1517] = 1075, + [1518] = 1055, + [1519] = 1083, + [1520] = 1425, + [1521] = 1038, + [1522] = 1069, + [1523] = 1523, + [1524] = 1066, + [1525] = 1525, + [1526] = 1053, + [1527] = 1204, + [1528] = 137, + [1529] = 1525, + [1530] = 1284, + [1531] = 1523, + [1532] = 1057, + [1533] = 1533, + [1534] = 163, + [1535] = 1535, + [1536] = 1448, + [1537] = 1537, + [1538] = 1083, + [1539] = 158, + [1540] = 155, + [1541] = 1541, + [1542] = 1086, + [1543] = 1537, + [1544] = 1544, + [1545] = 1545, + [1546] = 162, + [1547] = 1547, + [1548] = 1452, + [1549] = 156, + [1550] = 1076, + [1551] = 1544, + [1552] = 1064, + [1553] = 1541, + [1554] = 1072, + [1555] = 1068, + [1556] = 1541, + [1557] = 1070, + [1558] = 1425, + [1559] = 1080, + [1560] = 1047, + [1561] = 1544, + [1562] = 1541, + [1563] = 1544, + [1564] = 1074, + [1565] = 1081, + [1566] = 1448, + [1567] = 1071, + [1568] = 1452, + [1569] = 1058, + [1570] = 1059, + [1571] = 1077, + [1572] = 1060, + [1573] = 1432, + [1574] = 1048, + [1575] = 1535, + [1576] = 1051, [1577] = 1577, [1578] = 1578, - [1579] = 1416, - [1580] = 294, - [1581] = 1578, + [1579] = 1046, + [1580] = 1062, + [1581] = 1085, [1582] = 1582, - [1583] = 1583, - [1584] = 1413, - [1585] = 1137, - [1586] = 1136, - [1587] = 1133, - [1588] = 1415, - [1589] = 1155, - [1590] = 181, - [1591] = 173, - [1592] = 1168, - [1593] = 189, - [1594] = 204, - [1595] = 1203, - [1596] = 1219, - [1597] = 1113, - [1598] = 1403, - [1599] = 1449, - [1600] = 1221, - [1601] = 1078, - [1602] = 1451, - [1603] = 1461, - [1604] = 1455, - [1605] = 438, - [1606] = 1000, - [1607] = 1448, - [1608] = 1374, - [1609] = 1583, - [1610] = 1369, - [1611] = 1441, - [1612] = 1131, - [1613] = 298, - [1614] = 252, - [1615] = 432, - [1616] = 203, - [1617] = 1442, - [1618] = 1292, - [1619] = 430, - [1620] = 1295, - [1621] = 1300, - [1622] = 1442, - [1623] = 1267, - [1624] = 1266, - [1625] = 1276, - [1626] = 1322, - [1627] = 1077, - [1628] = 196, - [1629] = 1441, - [1630] = 1329, - [1631] = 1350, - [1632] = 1448, - [1633] = 1449, - [1634] = 1249, - [1635] = 1246, - [1636] = 1287, - [1637] = 1637, - [1638] = 1163, - [1639] = 1290, - [1640] = 1338, - [1641] = 259, - [1642] = 169, - [1643] = 1354, - [1644] = 230, - [1645] = 1582, - [1646] = 1164, - [1647] = 1157, - [1648] = 1455, - [1649] = 1408, - [1650] = 1154, - [1651] = 1149, - [1652] = 1263, - [1653] = 1142, - [1654] = 300, - [1655] = 1358, - [1656] = 1451, - [1657] = 1366, - [1658] = 299, - [1659] = 1265, - [1660] = 1383, - [1661] = 224, - [1662] = 193, - [1663] = 1384, - [1664] = 1138, - [1665] = 1665, - [1666] = 1139, - [1667] = 1665, - [1668] = 1140, - [1669] = 1143, - [1670] = 1144, - [1671] = 1464, - [1672] = 1458, - [1673] = 314, - [1674] = 1457, - [1675] = 1445, - [1676] = 1248, - [1677] = 1454, - [1678] = 194, - [1679] = 1446, - [1680] = 1420, - [1681] = 1444, - [1682] = 1419, - [1683] = 1453, - [1684] = 1462, - [1685] = 1418, - [1686] = 1450, - [1687] = 1443, - [1688] = 1464, - [1689] = 1458, - [1690] = 1457, - [1691] = 1445, - [1692] = 1454, - [1693] = 1414, - [1694] = 1446, - [1695] = 1444, - [1696] = 1453, - [1697] = 1462, - [1698] = 1412, - [1699] = 1450, - [1700] = 1459, - [1701] = 1411, - [1702] = 1443, - [1703] = 391, - [1704] = 1665, - [1705] = 190, - [1706] = 305, - [1707] = 1407, - [1708] = 315, - [1709] = 1459, - [1710] = 1461, - [1711] = 1400, - [1712] = 1385, - [1713] = 1444, - [1714] = 1442, - [1715] = 1715, - [1716] = 1461, - [1717] = 1454, - [1718] = 1451, - [1719] = 1719, - [1720] = 1455, - [1721] = 1445, - [1722] = 1722, - [1723] = 1723, - [1724] = 1457, - [1725] = 1458, - [1726] = 1464, - [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1730, - [1731] = 1731, - [1732] = 1732, - [1733] = 1455, - [1734] = 1450, - [1735] = 1728, - [1736] = 1732, - [1737] = 1737, - [1738] = 1738, + [1583] = 1065, + [1584] = 1067, + [1585] = 1585, + [1586] = 1054, + [1587] = 1050, + [1588] = 1084, + [1589] = 1459, + [1590] = 264, + [1591] = 1334, + [1592] = 1368, + [1593] = 1385, + [1594] = 1287, + [1595] = 1386, + [1596] = 1596, + [1597] = 1597, + [1598] = 1597, + [1599] = 1427, + [1600] = 446, + [1601] = 1170, + [1602] = 1169, + [1603] = 1166, + [1604] = 1604, + [1605] = 1146, + [1606] = 1606, + [1607] = 1111, + [1608] = 1480, + [1609] = 438, + [1610] = 1437, + [1611] = 1478, + [1612] = 1440, + [1613] = 181, + [1614] = 204, + [1615] = 213, + [1616] = 432, + [1617] = 225, + [1618] = 1476, + [1619] = 177, + [1620] = 1107, + [1621] = 1123, + [1622] = 1472, + [1623] = 431, + [1624] = 1150, + [1625] = 1399, + [1626] = 311, + [1627] = 1154, + [1628] = 1606, + [1629] = 1010, + [1630] = 1215, + [1631] = 1387, + [1632] = 1252, + [1633] = 1254, + [1634] = 1172, + [1635] = 1366, + [1636] = 1461, + [1637] = 1279, + [1638] = 1459, + [1639] = 1466, + [1640] = 316, + [1641] = 231, + [1642] = 198, + [1643] = 1274, + [1644] = 1280, + [1645] = 1207, + [1646] = 1264, + [1647] = 1317, + [1648] = 1269, + [1649] = 1320, + [1650] = 1323, + [1651] = 1464, + [1652] = 1347, + [1653] = 1482, + [1654] = 1398, + [1655] = 1481, + [1656] = 1479, + [1657] = 1466, + [1658] = 1477, + [1659] = 1472, + [1660] = 1475, + [1661] = 1474, + [1662] = 1288, + [1663] = 1473, + [1664] = 1405, + [1665] = 1460, + [1666] = 1476, + [1667] = 1273, + [1668] = 1271, + [1669] = 1478, + [1670] = 1480, + [1671] = 1247, + [1672] = 1243, + [1673] = 1298, + [1674] = 189, + [1675] = 274, + [1676] = 1336, + [1677] = 1350, + [1678] = 1468, + [1679] = 307, + [1680] = 1371, + [1681] = 1462, + [1682] = 1174, + [1683] = 1162, + [1684] = 1155, + [1685] = 207, + [1686] = 1686, + [1687] = 1686, + [1688] = 1148, + [1689] = 1470, + [1690] = 1436, + [1691] = 1395, + [1692] = 1404, + [1693] = 1461, + [1694] = 1392, + [1695] = 1397, + [1696] = 1435, + [1697] = 182, + [1698] = 1400, + [1699] = 1433, + [1700] = 1140, + [1701] = 1401, + [1702] = 1464, + [1703] = 1482, + [1704] = 1481, + [1705] = 1479, + [1706] = 1477, + [1707] = 1430, + [1708] = 1475, + [1709] = 1709, + [1710] = 1474, + [1711] = 1473, + [1712] = 1604, + [1713] = 1460, + [1714] = 1429, + [1715] = 1468, + [1716] = 1428, + [1717] = 1462, + [1718] = 1442, + [1719] = 185, + [1720] = 404, + [1721] = 1470, + [1722] = 1686, + [1723] = 284, + [1724] = 1261, + [1725] = 192, + [1726] = 1157, + [1727] = 1156, + [1728] = 1417, + [1729] = 1153, + [1730] = 1422, + [1731] = 1152, + [1732] = 1151, + [1733] = 1424, + [1734] = 179, + [1735] = 220, + [1736] = 232, + [1737] = 1476, + [1738] = 1459, [1739] = 1739, - [1740] = 1443, - [1741] = 1722, - [1742] = 1461, - [1743] = 1459, - [1744] = 1732, + [1740] = 1470, + [1741] = 1741, + [1742] = 1742, + [1743] = 1479, + [1744] = 1459, [1745] = 1745, - [1746] = 1746, - [1747] = 1745, - [1748] = 1730, - [1749] = 1739, - [1750] = 1730, - [1751] = 1751, - [1752] = 1451, - [1753] = 1464, - [1754] = 1458, - [1755] = 1723, - [1756] = 1751, - [1757] = 1737, - [1758] = 1446, - [1759] = 1759, - [1760] = 1451, - [1761] = 1444, + [1746] = 1461, + [1747] = 1462, + [1748] = 1748, + [1749] = 1748, + [1750] = 1741, + [1751] = 1468, + [1752] = 1460, + [1753] = 1461, + [1754] = 1473, + [1755] = 1474, + [1756] = 1756, + [1757] = 1757, + [1758] = 1475, + [1759] = 1756, + [1760] = 1760, + [1761] = 1745, [1762] = 1762, - [1763] = 1763, - [1764] = 1730, - [1765] = 1451, - [1766] = 1457, - [1767] = 1442, - [1768] = 1441, - [1769] = 1448, + [1763] = 1739, + [1764] = 1477, + [1765] = 1745, + [1766] = 1477, + [1767] = 1767, + [1768] = 1459, + [1769] = 1769, [1770] = 1770, - [1771] = 1449, - [1772] = 1455, - [1773] = 1445, - [1774] = 1774, - [1775] = 1775, - [1776] = 1737, - [1777] = 1454, - [1778] = 1455, - [1779] = 1453, - [1780] = 1446, - [1781] = 1730, - [1782] = 1746, - [1783] = 1461, - [1784] = 1723, - [1785] = 1448, - [1786] = 1731, - [1787] = 1787, - [1788] = 1731, - [1789] = 1462, - [1790] = 1441, - [1791] = 1459, - [1792] = 1792, - [1793] = 1732, - [1794] = 1449, - [1795] = 1723, - [1796] = 1737, - [1797] = 1732, - [1798] = 1731, - [1799] = 1737, - [1800] = 1730, - [1801] = 1723, - [1802] = 1732, - [1803] = 1803, - [1804] = 1723, - [1805] = 1727, - [1806] = 1453, - [1807] = 1450, - [1808] = 1737, - [1809] = 1730, - [1810] = 1461, - [1811] = 1443, - [1812] = 1715, - [1813] = 1462, - [1814] = 1732, - [1815] = 1737, - [1816] = 1816, - [1817] = 1723, - [1818] = 1818, - [1819] = 1819, - [1820] = 1729, - [1821] = 1821, - [1822] = 1759, - [1823] = 1823, - [1824] = 1824, - [1825] = 1825, - [1826] = 1824, - [1827] = 1827, - [1828] = 1828, - [1829] = 1829, - [1830] = 1821, - [1831] = 1831, - [1832] = 1832, - [1833] = 1825, - [1834] = 1787, - [1835] = 1832, - [1836] = 1836, - [1837] = 1837, - [1838] = 1831, - [1839] = 1828, - [1840] = 1823, - [1841] = 1819, + [1771] = 1479, + [1772] = 1475, + [1773] = 1773, + [1774] = 1481, + [1775] = 1482, + [1776] = 1474, + [1777] = 1757, + [1778] = 1464, + [1779] = 1464, + [1780] = 1480, + [1781] = 1473, + [1782] = 1782, + [1783] = 1466, + [1784] = 1470, + [1785] = 1461, + [1786] = 1478, + [1787] = 1476, + [1788] = 1788, + [1789] = 1742, + [1790] = 1790, + [1791] = 1745, + [1792] = 1460, + [1793] = 1767, + [1794] = 1794, + [1795] = 1739, + [1796] = 1796, + [1797] = 1739, + [1798] = 1762, + [1799] = 1466, + [1800] = 1788, + [1801] = 1468, + [1802] = 1802, + [1803] = 1773, + [1804] = 1804, + [1805] = 1472, + [1806] = 1806, + [1807] = 1757, + [1808] = 1481, + [1809] = 1462, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1762, + [1814] = 1748, + [1815] = 1748, + [1816] = 1459, + [1817] = 1748, + [1818] = 1461, + [1819] = 1745, + [1820] = 1466, + [1821] = 1480, + [1822] = 1466, + [1823] = 1478, + [1824] = 1739, + [1825] = 1757, + [1826] = 1826, + [1827] = 1748, + [1828] = 1745, + [1829] = 1472, + [1830] = 1830, + [1831] = 1804, + [1832] = 1482, + [1833] = 1757, + [1834] = 1739, + [1835] = 1782, + [1836] = 1757, + [1837] = 1762, + [1838] = 1748, + [1839] = 1745, + [1840] = 1757, + [1841] = 1739, [1842] = 1842, [1843] = 1843, - [1844] = 1842, + [1844] = 1844, [1845] = 1845, - [1846] = 1846, - [1847] = 1824, - [1848] = 1827, - [1849] = 1846, - [1850] = 1850, - [1851] = 1851, + [1846] = 1843, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 1844, + [1851] = 1806, [1852] = 1852, - [1853] = 1852, - [1854] = 1854, + [1853] = 1853, + [1854] = 1760, [1855] = 1855, - [1856] = 1855, - [1857] = 1857, - [1858] = 1858, - [1859] = 1858, + [1856] = 1856, + [1857] = 1849, + [1858] = 1847, + [1859] = 1859, [1860] = 1860, - [1861] = 1857, - [1862] = 1862, - [1863] = 1862, - [1864] = 1860, - [1865] = 1865, + [1861] = 1861, + [1862] = 1856, + [1863] = 1826, + [1864] = 1861, + [1865] = 1852, [1866] = 1866, [1867] = 1867, - [1868] = 1868, - [1869] = 1868, - [1870] = 1868, - [1871] = 1871, - [1872] = 1868, - [1873] = 1868, - [1874] = 1871, + [1868] = 1867, + [1869] = 1869, + [1870] = 1860, + [1871] = 1842, + [1872] = 1872, + [1873] = 1861, + [1874] = 1872, [1875] = 1875, - [1876] = 1875, - [1877] = 424, - [1878] = 1001, - [1879] = 438, - [1880] = 1004, - [1881] = 1017, + [1876] = 1876, + [1877] = 1877, + [1878] = 1876, + [1879] = 1877, + [1880] = 1880, + [1881] = 1881, [1882] = 1882, - [1883] = 1014, - [1884] = 1005, - [1885] = 1012, - [1886] = 1003, - [1887] = 1002, - [1888] = 1015, - [1889] = 1006, - [1890] = 1009, - [1891] = 1008, - [1892] = 1029, - [1893] = 1014, - [1894] = 1041, - [1895] = 1017, - [1896] = 1032, - [1897] = 1005, - [1898] = 1025, - [1899] = 1023, - [1900] = 1012, - [1901] = 1040, - [1902] = 1902, - [1903] = 1903, - [1904] = 1045, - [1905] = 1905, - [1906] = 1039, - [1907] = 1905, - [1908] = 1049, - [1909] = 1059, - [1910] = 1068, - [1911] = 1902, - [1912] = 1044, - [1913] = 1055, - [1914] = 1042, - [1915] = 305, - [1916] = 1074, - [1917] = 294, - [1918] = 1067, - [1919] = 196, - [1920] = 1036, - [1921] = 1514, - [1922] = 1038, - [1923] = 1923, - [1924] = 1053, - [1925] = 1035, - [1926] = 1070, - [1927] = 1048, - [1928] = 1052, - [1929] = 1065, - [1930] = 1046, - [1931] = 1923, - [1932] = 1923, - [1933] = 315, - [1934] = 1043, - [1935] = 1057, - [1936] = 1061, - [1937] = 1937, - [1938] = 1069, - [1939] = 1374, - [1940] = 1369, - [1941] = 1248, - [1942] = 1143, - [1943] = 1163, - [1944] = 1140, - [1945] = 1164, - [1946] = 1265, - [1947] = 1139, - [1948] = 1385, - [1949] = 1949, - [1950] = 1246, - [1951] = 1902, - [1952] = 1157, - [1953] = 1567, - [1954] = 1565, - [1955] = 1557, - [1956] = 1138, - [1957] = 1154, - [1958] = 1958, - [1959] = 1266, - [1960] = 1403, - [1961] = 1413, - [1962] = 1415, - [1963] = 1263, - [1964] = 1149, - [1965] = 1144, - [1966] = 1142, - [1967] = 1267, - [1968] = 1249, - [1969] = 1969, - [1970] = 1970, - [1971] = 432, - [1972] = 1972, - [1973] = 1973, - [1974] = 1017, - [1975] = 1005, - [1976] = 1012, - [1977] = 1014, - [1978] = 1978, - [1979] = 1979, - [1980] = 1012, - [1981] = 1017, - [1982] = 1017, - [1983] = 1005, - [1984] = 1014, - [1985] = 1005, - [1986] = 1882, - [1987] = 1012, - [1988] = 1014, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 162, + [1883] = 1883, + [1884] = 1882, + [1885] = 1885, + [1886] = 1885, + [1887] = 1881, + [1888] = 1883, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1892, + [1893] = 1892, + [1894] = 1892, + [1895] = 1892, + [1896] = 1896, + [1897] = 1892, + [1898] = 1896, + [1899] = 1899, + [1900] = 1899, + [1901] = 446, + [1902] = 1012, + [1903] = 431, + [1904] = 1904, + [1905] = 1029, + [1906] = 1014, + [1907] = 1015, + [1908] = 1023, + [1909] = 1027, + [1910] = 1013, + [1911] = 1026, + [1912] = 1028, + [1913] = 1024, + [1914] = 1032, + [1915] = 1022, + [1916] = 1036, + [1917] = 1023, + [1918] = 1039, + [1919] = 1040, + [1920] = 1048, + [1921] = 1026, + [1922] = 1029, + [1923] = 1038, + [1924] = 1027, + [1925] = 1925, + [1926] = 1066, + [1927] = 1927, + [1928] = 1067, + [1929] = 1084, + [1930] = 1082, + [1931] = 1927, + [1932] = 1932, + [1933] = 1080, + [1934] = 1069, + [1935] = 1085, + [1936] = 1064, + [1937] = 1077, + [1938] = 177, + [1939] = 207, + [1940] = 1940, + [1941] = 1086, + [1942] = 1065, + [1943] = 1932, + [1944] = 1071, + [1945] = 1047, + [1946] = 1051, + [1947] = 1046, + [1948] = 182, + [1949] = 1533, + [1950] = 1070, + [1951] = 311, + [1952] = 1940, + [1953] = 1060, + [1954] = 1074, + [1955] = 1050, + [1956] = 1081, + [1957] = 1054, + [1958] = 1062, + [1959] = 1057, + [1960] = 1068, + [1961] = 1940, + [1962] = 1962, + [1963] = 1247, + [1964] = 1964, + [1965] = 1152, + [1966] = 1174, + [1967] = 1437, + [1968] = 1366, + [1969] = 1399, + [1970] = 1172, + [1971] = 1157, + [1972] = 1264, + [1973] = 1243, + [1974] = 1582, + [1975] = 1577, + [1976] = 1261, + [1977] = 1271, + [1978] = 1156, + [1979] = 1151, + [1980] = 1395, + [1981] = 1585, + [1982] = 1387, + [1983] = 1440, + [1984] = 1162, + [1985] = 1140, + [1986] = 1269, + [1987] = 1155, + [1988] = 1988, + [1989] = 1153, + [1990] = 1932, + [1991] = 1273, + [1992] = 1148, + [1993] = 1993, [1994] = 1994, [1995] = 1995, - [1996] = 1996, + [1996] = 438, [1997] = 1997, - [1998] = 1996, - [1999] = 1999, - [2000] = 1014, - [2001] = 1997, - [2002] = 2002, - [2003] = 161, - [2004] = 158, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 1991, - [2010] = 1992, - [2011] = 2007, - [2012] = 1005, - [2013] = 1903, + [1998] = 1029, + [1999] = 1029, + [2000] = 1026, + [2001] = 1027, + [2002] = 1026, + [2003] = 1029, + [2004] = 1027, + [2005] = 1023, + [2006] = 1026, + [2007] = 1023, + [2008] = 1027, + [2009] = 1904, + [2010] = 1023, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, [2014] = 2014, - [2015] = 1012, - [2016] = 156, - [2017] = 1995, - [2018] = 160, + [2015] = 1027, + [2016] = 1026, + [2017] = 2017, + [2018] = 2018, [2019] = 2019, - [2020] = 2020, - [2021] = 1017, + [2020] = 163, + [2021] = 2021, [2022] = 2022, - [2023] = 2023, + [2023] = 2019, [2024] = 2024, - [2025] = 2025, + [2025] = 156, [2026] = 2026, [2027] = 2027, - [2028] = 2028, + [2028] = 2024, [2029] = 2029, - [2030] = 2030, + [2030] = 155, [2031] = 2031, [2032] = 2032, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, + [2033] = 2032, + [2034] = 2022, + [2035] = 1023, + [2036] = 1029, + [2037] = 158, + [2038] = 162, + [2039] = 1925, [2040] = 2040, - [2041] = 2041, + [2041] = 2014, [2042] = 2042, [2043] = 2043, - [2044] = 2044, - [2045] = 2024, - [2046] = 2035, + [2044] = 2040, + [2045] = 2045, + [2046] = 2046, [2047] = 2047, [2048] = 2048, - [2049] = 190, + [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 2031, + [2052] = 2052, [2053] = 2053, - [2054] = 2051, + [2054] = 2054, [2055] = 2055, [2056] = 2056, - [2057] = 1903, - [2058] = 2058, - [2059] = 1903, - [2060] = 2060, - [2061] = 2061, + [2057] = 2057, + [2058] = 1925, + [2059] = 1925, + [2060] = 185, + [2061] = 1962, [2062] = 2062, [2063] = 2063, [2064] = 2064, - [2065] = 1937, - [2066] = 2035, + [2065] = 2065, + [2066] = 2066, [2067] = 2067, [2068] = 2068, [2069] = 2069, [2070] = 2070, - [2071] = 1029, - [2072] = 2072, + [2071] = 2071, + [2072] = 2047, [2073] = 2073, [2074] = 2074, [2075] = 2075, - [2076] = 2076, - [2077] = 2077, + [2076] = 2048, + [2077] = 2047, [2078] = 2078, [2079] = 2079, [2080] = 2080, [2081] = 2081, - [2082] = 1937, + [2082] = 2057, [2083] = 2083, [2084] = 2084, - [2085] = 2072, + [2085] = 2085, [2086] = 2086, [2087] = 2087, [2088] = 2088, [2089] = 2089, [2090] = 2090, - [2091] = 2081, - [2092] = 2079, - [2093] = 2093, + [2091] = 2091, + [2092] = 2092, + [2093] = 2049, [2094] = 2094, - [2095] = 2077, - [2096] = 2074, + [2095] = 1925, + [2096] = 2096, [2097] = 2097, [2098] = 2098, - [2099] = 1903, - [2100] = 2098, - [2101] = 2101, - [2102] = 1025, - [2103] = 1023, + [2099] = 2097, + [2100] = 2100, + [2101] = 2100, + [2102] = 2102, + [2103] = 2103, [2104] = 2104, - [2105] = 2101, - [2106] = 2089, - [2107] = 2104, - [2108] = 2078, - [2109] = 2093, - [2110] = 2084, - [2111] = 2086, - [2112] = 2073, - [2113] = 2088, - [2114] = 2075, + [2105] = 2105, + [2106] = 2106, + [2107] = 2097, + [2108] = 2108, + [2109] = 1040, + [2110] = 2110, + [2111] = 2111, + [2112] = 1039, + [2113] = 2102, + [2114] = 2114, [2115] = 2115, - [2116] = 1032, - [2117] = 2076, - [2118] = 2087, - [2119] = 2080, - [2120] = 1937, - [2121] = 2089, - [2122] = 2070, - [2123] = 2078, + [2116] = 2116, + [2117] = 2106, + [2118] = 2108, + [2119] = 1038, + [2120] = 2120, + [2121] = 2114, + [2122] = 2120, + [2123] = 2123, [2124] = 2124, - [2125] = 2125, - [2126] = 2126, - [2127] = 2083, - [2128] = 2090, - [2129] = 2129, + [2125] = 1036, + [2126] = 2094, + [2127] = 2127, + [2128] = 2128, + [2129] = 1962, [2130] = 2130, [2131] = 2131, - [2132] = 2132, - [2133] = 2133, + [2132] = 2103, + [2133] = 2124, [2134] = 2134, - [2135] = 2135, - [2136] = 2130, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 1937, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, + [2135] = 2130, + [2136] = 2116, + [2137] = 2111, + [2138] = 2115, + [2139] = 1962, + [2140] = 2098, + [2141] = 2102, + [2142] = 2123, + [2143] = 2127, + [2144] = 2128, [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2145, + [2146] = 2096, + [2147] = 2110, + [2148] = 2148, [2149] = 2149, [2150] = 2150, - [2151] = 2151, - [2152] = 2152, + [2151] = 2134, + [2152] = 2145, [2153] = 2153, [2154] = 2154, [2155] = 2155, [2156] = 2156, [2157] = 2157, - [2158] = 2141, + [2158] = 2158, [2159] = 2159, [2160] = 2160, - [2161] = 2138, - [2162] = 2154, - [2163] = 2135, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2150, + [2167] = 2167, [2168] = 2168, - [2169] = 2151, - [2170] = 2129, + [2169] = 2163, + [2170] = 2162, [2171] = 2171, - [2172] = 2132, - [2173] = 2137, + [2172] = 2172, + [2173] = 2173, [2174] = 2174, - [2175] = 2139, + [2175] = 2175, [2176] = 2176, - [2177] = 2177, - [2178] = 2147, - [2179] = 2177, + [2177] = 2158, + [2178] = 2178, + [2179] = 2179, [2180] = 2180, - [2181] = 2168, + [2181] = 2174, [2182] = 2182, [2183] = 2183, - [2184] = 2131, + [2184] = 2184, [2185] = 2185, - [2186] = 2183, - [2187] = 2156, - [2188] = 2176, - [2189] = 2159, - [2190] = 2190, - [2191] = 2191, + [2186] = 2154, + [2187] = 2187, + [2188] = 2188, + [2189] = 2173, + [2190] = 1962, + [2191] = 2159, [2192] = 2192, [2193] = 2193, - [2194] = 2193, + [2194] = 2194, [2195] = 2195, - [2196] = 2196, + [2196] = 2164, [2197] = 2197, [2198] = 2198, [2199] = 2199, - [2200] = 1972, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, + [2200] = 2200, + [2201] = 2195, + [2202] = 2171, + [2203] = 2175, [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, + [2205] = 2166, + [2206] = 2198, + [2207] = 2160, + [2208] = 2161, [2209] = 2209, - [2210] = 2207, - [2211] = 2211, - [2212] = 2212, - [2213] = 2203, - [2214] = 2214, + [2210] = 2179, + [2211] = 2200, + [2212] = 2156, + [2213] = 2209, + [2214] = 2172, [2215] = 2215, [2216] = 2216, - [2217] = 2197, + [2217] = 2217, [2218] = 2218, - [2219] = 2195, + [2219] = 2219, [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2196, - [2224] = 2202, - [2225] = 2209, - [2226] = 2201, + [2221] = 1995, + [2222] = 2215, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, [2227] = 2227, - [2228] = 2221, - [2229] = 2203, - [2230] = 2214, - [2231] = 2215, - [2232] = 2222, - [2233] = 2233, - [2234] = 2212, - [2235] = 2192, - [2236] = 2220, - [2237] = 2211, - [2238] = 2238, - [2239] = 2238, - [2240] = 2240, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, + [2233] = 2230, + [2234] = 2234, + [2235] = 2224, + [2236] = 2236, + [2237] = 2237, + [2238] = 2229, + [2239] = 2228, + [2240] = 2227, [2241] = 2241, - [2242] = 2242, + [2242] = 2223, [2243] = 2243, [2244] = 2244, - [2245] = 2245, - [2246] = 2246, + [2245] = 2236, + [2246] = 2224, [2247] = 2247, [2248] = 2248, - [2249] = 2249, - [2250] = 2250, - [2251] = 2243, + [2249] = 2237, + [2250] = 2247, + [2251] = 2216, [2252] = 2252, - [2253] = 2253, - [2254] = 2254, - [2255] = 2255, + [2253] = 2241, + [2254] = 2217, + [2255] = 2248, [2256] = 2256, - [2257] = 2240, - [2258] = 1979, - [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, + [2257] = 2257, + [2258] = 2258, + [2259] = 2258, + [2260] = 2256, + [2261] = 2225, + [2262] = 2219, [2263] = 2263, [2264] = 2264, [2265] = 2265, [2266] = 2266, - [2267] = 2259, - [2268] = 1978, - [2269] = 2253, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, [2270] = 2270, - [2271] = 432, + [2271] = 2264, [2272] = 2272, - [2273] = 2263, + [2273] = 2273, [2274] = 2274, [2275] = 2275, - [2276] = 438, - [2277] = 2260, + [2276] = 2276, + [2277] = 2277, [2278] = 2278, [2279] = 2279, - [2280] = 2264, - [2281] = 2266, - [2282] = 2244, - [2283] = 2247, - [2284] = 2241, + [2280] = 2280, + [2281] = 2281, + [2282] = 2267, + [2283] = 2283, + [2284] = 2284, [2285] = 2285, - [2286] = 2265, - [2287] = 2252, - [2288] = 424, - [2289] = 2289, - [2290] = 2262, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2242, - [2295] = 2261, - [2296] = 2259, + [2286] = 2286, + [2287] = 2275, + [2288] = 2278, + [2289] = 2272, + [2290] = 2280, + [2291] = 2286, + [2292] = 2276, + [2293] = 2281, + [2294] = 2294, + [2295] = 2295, + [2296] = 2295, [2297] = 2297, - [2298] = 1973, - [2299] = 2242, - [2300] = 2300, + [2298] = 2298, + [2299] = 2299, + [2300] = 2298, [2301] = 2301, - [2302] = 2301, - [2303] = 2259, - [2304] = 2304, - [2305] = 2304, - [2306] = 2300, - [2307] = 2307, - [2308] = 2255, - [2309] = 2274, - [2310] = 2256, - [2311] = 2249, - [2312] = 2312, - [2313] = 2262, - [2314] = 2254, - [2315] = 2272, - [2316] = 2312, - [2317] = 2291, - [2318] = 2246, - [2319] = 2275, - [2320] = 2248, - [2321] = 2245, - [2322] = 2292, - [2323] = 2250, - [2324] = 2293, - [2325] = 2278, - [2326] = 2285, - [2327] = 2327, - [2328] = 2328, - [2329] = 2329, + [2302] = 2294, + [2303] = 2303, + [2304] = 2268, + [2305] = 2305, + [2306] = 2012, + [2307] = 2297, + [2308] = 2308, + [2309] = 2309, + [2310] = 2310, + [2311] = 2305, + [2312] = 1997, + [2313] = 2285, + [2314] = 2314, + [2315] = 2280, + [2316] = 2316, + [2317] = 2317, + [2318] = 2318, + [2319] = 2319, + [2320] = 2308, + [2321] = 2321, + [2322] = 2279, + [2323] = 2323, + [2324] = 2274, + [2325] = 2325, + [2326] = 2314, + [2327] = 2319, + [2328] = 2283, + [2329] = 2318, [2330] = 2330, - [2331] = 2331, - [2332] = 2332, - [2333] = 2333, - [2334] = 2334, - [2335] = 2335, - [2336] = 2336, - [2337] = 2327, - [2338] = 2338, - [2339] = 2339, - [2340] = 1000, - [2341] = 2341, - [2342] = 2342, - [2343] = 2332, - [2344] = 2344, - [2345] = 2335, + [2331] = 2284, + [2332] = 2301, + [2333] = 2280, + [2334] = 2270, + [2335] = 2309, + [2336] = 438, + [2337] = 2269, + [2338] = 2303, + [2339] = 446, + [2340] = 2319, + [2341] = 2323, + [2342] = 2330, + [2343] = 2299, + [2344] = 2321, + [2345] = 431, [2346] = 2346, - [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, + [2347] = 2284, + [2348] = 2273, + [2349] = 2317, + [2350] = 2316, + [2351] = 2011, + [2352] = 1456, [2353] = 2353, [2354] = 2354, - [2355] = 2327, + [2355] = 2355, [2356] = 2356, - [2357] = 2336, + [2357] = 2355, [2358] = 2358, - [2359] = 2341, - [2360] = 2344, + [2359] = 1453, + [2360] = 2360, [2361] = 2361, - [2362] = 1439, - [2363] = 1429, + [2362] = 2362, + [2363] = 1454, [2364] = 2364, [2365] = 2365, [2366] = 2366, - [2367] = 2347, + [2367] = 2367, [2368] = 2368, [2369] = 2369, [2370] = 2370, - [2371] = 1433, + [2371] = 2371, [2372] = 2372, [2373] = 2373, - [2374] = 2374, - [2375] = 1430, - [2376] = 2350, + [2374] = 2355, + [2375] = 2375, + [2376] = 2376, [2377] = 2377, - [2378] = 2378, + [2378] = 2366, [2379] = 2379, [2380] = 2380, - [2381] = 2381, - [2382] = 2382, + [2381] = 1010, + [2382] = 2360, [2383] = 2383, [2384] = 2384, - [2385] = 2385, - [2386] = 2352, - [2387] = 2385, - [2388] = 2388, - [2389] = 2389, + [2385] = 2364, + [2386] = 2386, + [2387] = 2369, + [2388] = 2367, + [2389] = 2362, [2390] = 2356, - [2391] = 2344, - [2392] = 2353, - [2393] = 2348, + [2391] = 2391, + [2392] = 2392, + [2393] = 2393, [2394] = 2394, - [2395] = 2377, - [2396] = 2382, - [2397] = 2378, + [2395] = 2375, + [2396] = 2396, + [2397] = 2397, [2398] = 2398, - [2399] = 2327, - [2400] = 2350, - [2401] = 1438, - [2402] = 2402, - [2403] = 2382, - [2404] = 1435, - [2405] = 2368, - [2406] = 2378, - [2407] = 2349, + [2399] = 1451, + [2400] = 2400, + [2401] = 2401, + [2402] = 2393, + [2403] = 2403, + [2404] = 2404, + [2405] = 2405, + [2406] = 2394, + [2407] = 2407, [2408] = 2408, - [2409] = 2356, - [2410] = 2410, - [2411] = 2365, + [2409] = 2409, + [2410] = 2362, + [2411] = 2373, [2412] = 2412, - [2413] = 2366, - [2414] = 2412, - [2415] = 2372, - [2416] = 2342, - [2417] = 2346, - [2418] = 2418, + [2413] = 2413, + [2414] = 2386, + [2415] = 2403, + [2416] = 2416, + [2417] = 2368, + [2418] = 2405, [2419] = 2419, - [2420] = 2420, + [2420] = 1447, [2421] = 2421, - [2422] = 2422, - [2423] = 2423, - [2424] = 2424, - [2425] = 2425, + [2422] = 2392, + [2423] = 2353, + [2424] = 2375, + [2425] = 1457, [2426] = 2426, [2427] = 2427, [2428] = 2428, [2429] = 2429, [2430] = 2430, - [2431] = 2431, + [2431] = 2373, [2432] = 2432, - [2433] = 2433, + [2433] = 2362, [2434] = 2434, - [2435] = 2435, - [2436] = 2431, - [2437] = 2432, - [2438] = 2427, - [2439] = 2439, - [2440] = 2433, - [2441] = 2441, - [2442] = 2442, + [2435] = 2371, + [2436] = 2404, + [2437] = 2393, + [2438] = 2379, + [2439] = 2416, + [2440] = 2361, + [2441] = 2358, + [2442] = 2367, [2443] = 2443, [2444] = 2444, [2445] = 2445, - [2446] = 2446, + [2446] = 2029, [2447] = 2447, [2448] = 2448, [2449] = 2449, @@ -6163,228 +6271,228 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2453] = 2453, [2454] = 2454, [2455] = 2455, - [2456] = 2420, + [2456] = 2456, [2457] = 2457, [2458] = 2458, - [2459] = 2459, + [2459] = 2458, [2460] = 2460, - [2461] = 2442, - [2462] = 2441, + [2461] = 2461, + [2462] = 2462, [2463] = 2463, [2464] = 2464, [2465] = 2465, - [2466] = 2420, - [2467] = 2459, - [2468] = 2432, + [2466] = 2466, + [2467] = 2467, + [2468] = 2468, [2469] = 2469, [2470] = 2470, - [2471] = 2431, + [2471] = 2471, [2472] = 2472, [2473] = 2473, [2474] = 2474, [2475] = 2475, [2476] = 2476, - [2477] = 2432, - [2478] = 2476, + [2477] = 2477, + [2478] = 2478, [2479] = 2479, - [2480] = 1999, - [2481] = 2005, + [2480] = 2480, + [2481] = 2481, [2482] = 2482, - [2483] = 2020, - [2484] = 1994, + [2483] = 2483, + [2484] = 2484, [2485] = 2485, [2486] = 2486, [2487] = 2487, [2488] = 2488, - [2489] = 2486, - [2490] = 2487, - [2491] = 2486, - [2492] = 2487, - [2493] = 2486, - [2494] = 2487, - [2495] = 2008, - [2496] = 1990, - [2497] = 2006, - [2498] = 2430, - [2499] = 2486, - [2500] = 2434, - [2501] = 2435, - [2502] = 2502, - [2503] = 2487, - [2504] = 2014, - [2505] = 2473, - [2506] = 2445, - [2507] = 2443, - [2508] = 2446, - [2509] = 2486, - [2510] = 2487, - [2511] = 2511, - [2512] = 2435, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2492, + [2498] = 2487, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2457, + [2503] = 2456, + [2504] = 2450, + [2505] = 2505, + [2506] = 2453, + [2507] = 2463, + [2508] = 2508, + [2509] = 2493, + [2510] = 2510, + [2511] = 2494, + [2512] = 2512, [2513] = 2513, - [2514] = 2465, - [2515] = 2515, - [2516] = 2486, - [2517] = 2487, + [2514] = 2514, + [2515] = 2447, + [2516] = 2516, + [2517] = 2460, [2518] = 2518, - [2519] = 2511, - [2520] = 2474, + [2519] = 2463, + [2520] = 2501, [2521] = 2521, - [2522] = 2445, - [2523] = 2435, - [2524] = 2454, + [2522] = 2479, + [2523] = 2485, + [2524] = 2510, [2525] = 2525, - [2526] = 2511, + [2526] = 2525, [2527] = 2527, - [2528] = 2528, - [2529] = 2518, - [2530] = 2432, - [2531] = 2472, - [2532] = 2426, - [2533] = 2474, - [2534] = 2486, - [2535] = 2487, - [2536] = 2518, + [2528] = 2455, + [2529] = 2529, + [2530] = 2476, + [2531] = 2531, + [2532] = 2483, + [2533] = 2533, + [2534] = 2525, + [2535] = 2535, + [2536] = 2516, [2537] = 2482, - [2538] = 2511, - [2539] = 2521, - [2540] = 2482, - [2541] = 2474, - [2542] = 2472, - [2543] = 2445, - [2544] = 2435, - [2545] = 2434, - [2546] = 2430, - [2547] = 2547, - [2548] = 2548, - [2549] = 2521, - [2550] = 2525, + [2538] = 2538, + [2539] = 2453, + [2540] = 2453, + [2541] = 2454, + [2542] = 2455, + [2543] = 2454, + [2544] = 2455, + [2545] = 2545, + [2546] = 2461, + [2547] = 2461, + [2548] = 2521, + [2549] = 2462, + [2550] = 2521, [2551] = 2551, - [2552] = 2511, - [2553] = 2431, - [2554] = 2528, - [2555] = 2518, - [2556] = 2475, - [2557] = 2464, - [2558] = 2463, - [2559] = 2426, - [2560] = 2486, - [2561] = 2487, + [2552] = 2468, + [2553] = 2472, + [2554] = 2488, + [2555] = 2555, + [2556] = 2461, + [2557] = 2557, + [2558] = 2462, + [2559] = 2481, + [2560] = 2557, + [2561] = 2467, [2562] = 2562, [2563] = 2563, - [2564] = 2551, - [2565] = 2551, - [2566] = 2518, - [2567] = 2528, - [2568] = 2568, - [2569] = 2511, - [2570] = 2570, - [2571] = 2571, - [2572] = 2521, - [2573] = 2482, + [2564] = 2564, + [2565] = 2466, + [2566] = 2566, + [2567] = 2473, + [2568] = 2478, + [2569] = 2562, + [2570] = 2474, + [2571] = 2510, + [2572] = 2467, + [2573] = 2477, [2574] = 2474, - [2575] = 2575, - [2576] = 2472, - [2577] = 2562, - [2578] = 2454, - [2579] = 2446, - [2580] = 2445, - [2581] = 2435, - [2582] = 2429, - [2583] = 2434, - [2584] = 2430, - [2585] = 2562, + [2575] = 2466, + [2576] = 2481, + [2577] = 2577, + [2578] = 2477, + [2579] = 2482, + [2580] = 2485, + [2581] = 2470, + [2582] = 2582, + [2583] = 2496, + [2584] = 2454, + [2585] = 2500, [2586] = 2586, - [2587] = 2487, - [2588] = 2423, - [2589] = 2589, - [2590] = 2590, - [2591] = 2425, - [2592] = 2419, - [2593] = 2448, - [2594] = 2449, - [2595] = 2486, - [2596] = 2596, - [2597] = 2458, + [2587] = 2587, + [2588] = 2588, + [2589] = 2518, + [2590] = 2481, + [2591] = 2456, + [2592] = 2592, + [2593] = 2482, + [2594] = 2594, + [2595] = 2483, + [2596] = 2485, + [2597] = 2577, [2598] = 2598, - [2599] = 2460, - [2600] = 2600, + [2599] = 2521, + [2600] = 2489, [2601] = 2601, - [2602] = 2602, - [2603] = 2603, + [2602] = 2455, + [2603] = 2461, [2604] = 2604, - [2605] = 2605, - [2606] = 2606, - [2607] = 2455, - [2608] = 2608, - [2609] = 2605, - [2610] = 2610, - [2611] = 2570, - [2612] = 2575, - [2613] = 2447, - [2614] = 2547, - [2615] = 2586, - [2616] = 2589, - [2617] = 2596, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2487, - [2622] = 2547, - [2623] = 2525, - [2624] = 2488, - [2625] = 2419, - [2626] = 2453, - [2627] = 2485, - [2628] = 2486, - [2629] = 2479, - [2630] = 2630, - [2631] = 2525, - [2632] = 2630, - [2633] = 2633, - [2634] = 2633, - [2635] = 2571, - [2636] = 2636, - [2637] = 2619, - [2638] = 2610, - [2639] = 2598, - [2640] = 2502, - [2641] = 2600, - [2642] = 2475, - [2643] = 2643, - [2644] = 2644, - [2645] = 2459, - [2646] = 2463, - [2647] = 2426, - [2648] = 2636, - [2649] = 2464, - [2650] = 2424, - [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 2659, + [2605] = 2487, + [2606] = 2474, + [2607] = 2482, + [2608] = 2485, + [2609] = 2496, + [2610] = 2496, + [2611] = 2469, + [2612] = 2463, + [2613] = 2500, + [2614] = 2527, + [2615] = 2615, + [2616] = 2501, + [2617] = 2615, + [2618] = 2492, + [2619] = 2582, + [2620] = 2042, + [2621] = 2486, + [2622] = 2564, + [2623] = 2604, + [2624] = 2624, + [2625] = 2494, + [2626] = 2510, + [2627] = 2493, + [2628] = 2496, + [2629] = 2510, + [2630] = 2545, + [2631] = 2043, + [2632] = 2455, + [2633] = 2499, + [2634] = 2551, + [2635] = 2489, + [2636] = 2500, + [2637] = 2486, + [2638] = 2026, + [2639] = 2639, + [2640] = 2640, + [2641] = 2641, + [2642] = 2641, + [2643] = 2482, + [2644] = 2017, + [2645] = 2018, + [2646] = 2467, + [2647] = 2639, + [2648] = 2474, + [2649] = 2500, + [2650] = 2566, + [2651] = 2496, + [2652] = 2500, + [2653] = 2500, + [2654] = 2531, + [2655] = 2496, + [2656] = 2021, + [2657] = 2500, + [2658] = 2496, + [2659] = 2496, [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, - [2664] = 2664, - [2665] = 2665, - [2666] = 2666, + [2661] = 2477, + [2662] = 2500, + [2663] = 2496, + [2664] = 2027, + [2665] = 2508, + [2666] = 2587, [2667] = 2667, - [2668] = 2668, - [2669] = 2669, - [2670] = 435, - [2671] = 2671, - [2672] = 2672, - [2673] = 2673, - [2674] = 2674, - [2675] = 2055, - [2676] = 2050, - [2677] = 2677, + [2668] = 2505, + [2669] = 2624, + [2670] = 2495, + [2671] = 2456, + [2672] = 2500, + [2673] = 2496, + [2674] = 2586, + [2675] = 2465, + [2676] = 2499, + [2677] = 2500, [2678] = 2678, [2679] = 2679, [2680] = 2680, @@ -6392,73 +6500,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2682] = 2682, [2683] = 2683, [2684] = 2684, - [2685] = 2667, + [2685] = 2685, [2686] = 2686, [2687] = 2687, [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2652, - [2692] = 2663, + [2689] = 2064, + [2690] = 2092, + [2691] = 2691, + [2692] = 2692, [2693] = 2693, [2694] = 2694, [2695] = 2695, [2696] = 2696, - [2697] = 2697, - [2698] = 2679, - [2699] = 2699, - [2700] = 2700, - [2701] = 2701, + [2697] = 2081, + [2698] = 2080, + [2699] = 2074, + [2700] = 2073, + [2701] = 2071, [2702] = 2702, [2703] = 2703, [2704] = 2704, - [2705] = 2705, - [2706] = 2706, + [2705] = 2051, + [2706] = 2684, [2707] = 2707, - [2708] = 2708, + [2708] = 2692, [2709] = 2709, [2710] = 2710, [2711] = 2711, [2712] = 2712, [2713] = 2713, [2714] = 2714, - [2715] = 2715, + [2715] = 2707, [2716] = 2716, [2717] = 2717, - [2718] = 2672, - [2719] = 2693, - [2720] = 2720, - [2721] = 190, - [2722] = 2658, - [2723] = 2062, - [2724] = 2664, + [2718] = 2718, + [2719] = 2719, + [2720] = 2065, + [2721] = 2721, + [2722] = 2054, + [2723] = 2723, + [2724] = 2724, [2725] = 2725, - [2726] = 2068, - [2727] = 2063, - [2728] = 2695, + [2726] = 2063, + [2727] = 2727, + [2728] = 2728, [2729] = 2729, - [2730] = 2061, - [2731] = 2064, + [2730] = 2730, + [2731] = 2731, [2732] = 2732, - [2733] = 2697, - [2734] = 2668, - [2735] = 2058, + [2733] = 2733, + [2734] = 2734, + [2735] = 2735, [2736] = 2736, - [2737] = 2048, - [2738] = 2732, + [2737] = 2737, + [2738] = 2738, [2739] = 2739, - [2740] = 429, - [2741] = 2720, + [2740] = 2740, + [2741] = 2741, [2742] = 2742, - [2743] = 2690, + [2743] = 2743, [2744] = 2744, [2745] = 2745, - [2746] = 2746, - [2747] = 2674, - [2748] = 2748, - [2749] = 2742, - [2750] = 2750, - [2751] = 2751, + [2746] = 2738, + [2747] = 2747, + [2748] = 2736, + [2749] = 2749, + [2750] = 2716, + [2751] = 2692, [2752] = 2752, [2753] = 2753, [2754] = 2754, @@ -6468,219 +6576,219 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2758] = 2758, [2759] = 2759, [2760] = 2760, - [2761] = 2677, - [2762] = 2755, - [2763] = 2763, - [2764] = 2047, - [2765] = 2037, + [2761] = 2761, + [2762] = 2762, + [2763] = 2688, + [2764] = 2764, + [2765] = 2694, [2766] = 2766, - [2767] = 2715, - [2768] = 2750, - [2769] = 2769, + [2767] = 2767, + [2768] = 2768, + [2769] = 2046, [2770] = 2770, [2771] = 2771, - [2772] = 2651, + [2772] = 2056, [2773] = 2773, - [2774] = 2034, + [2774] = 2704, [2775] = 2775, [2776] = 2776, - [2777] = 2039, - [2778] = 2030, - [2779] = 2033, - [2780] = 2684, - [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 2041, + [2777] = 2777, + [2778] = 2778, + [2779] = 2747, + [2780] = 2717, + [2781] = 2055, + [2782] = 2737, + [2783] = 2777, + [2784] = 2052, [2785] = 2785, - [2786] = 2715, - [2787] = 2787, - [2788] = 2788, - [2789] = 2789, - [2790] = 2043, - [2791] = 2782, - [2792] = 2725, - [2793] = 2766, - [2794] = 2794, - [2795] = 2795, + [2786] = 2062, + [2787] = 2053, + [2788] = 2732, + [2789] = 2731, + [2790] = 2760, + [2791] = 2791, + [2792] = 440, + [2793] = 2793, + [2794] = 2791, + [2795] = 2692, [2796] = 2796, - [2797] = 2725, - [2798] = 2770, - [2799] = 2799, - [2800] = 2032, - [2801] = 2773, - [2802] = 2022, + [2797] = 2692, + [2798] = 2798, + [2799] = 2692, + [2800] = 2800, + [2801] = 2711, + [2802] = 2802, [2803] = 2803, [2804] = 2804, - [2805] = 2805, - [2806] = 2776, + [2805] = 2775, + [2806] = 2806, [2807] = 2807, - [2808] = 2808, - [2809] = 2809, + [2808] = 2713, + [2809] = 2711, [2810] = 2810, - [2811] = 2725, + [2811] = 2811, [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 2815, + [2815] = 2729, [2816] = 2816, - [2817] = 2688, - [2818] = 2818, - [2819] = 2819, - [2820] = 2820, + [2817] = 2813, + [2818] = 2682, + [2819] = 2814, + [2820] = 2807, [2821] = 2821, - [2822] = 2818, + [2822] = 2778, [2823] = 2823, [2824] = 2824, - [2825] = 2725, + [2825] = 2068, [2826] = 2826, - [2827] = 2827, + [2827] = 2069, [2828] = 2828, - [2829] = 2671, - [2830] = 2830, - [2831] = 2069, - [2832] = 2023, - [2833] = 2833, - [2834] = 2060, + [2829] = 2829, + [2830] = 2070, + [2831] = 2811, + [2832] = 2814, + [2833] = 2813, + [2834] = 2678, [2835] = 2835, - [2836] = 2836, + [2836] = 2811, [2837] = 2837, [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 2841, - [2842] = 2655, - [2843] = 2705, + [2841] = 2725, + [2842] = 2842, + [2843] = 2723, [2844] = 2844, - [2845] = 2789, - [2846] = 2844, + [2845] = 2845, + [2846] = 2846, [2847] = 2847, - [2848] = 2781, - [2849] = 2725, + [2848] = 2848, + [2849] = 2849, [2850] = 2850, - [2851] = 2783, - [2852] = 2819, - [2853] = 2785, + [2851] = 2851, + [2852] = 2852, + [2853] = 2683, [2854] = 2854, - [2855] = 2815, - [2856] = 2814, - [2857] = 2787, - [2858] = 2788, - [2859] = 2809, - [2860] = 2805, - [2861] = 2696, - [2862] = 2862, - [2863] = 2844, - [2864] = 2760, - [2865] = 2709, - [2866] = 2866, - [2867] = 2745, + [2855] = 2718, + [2856] = 2856, + [2857] = 2857, + [2858] = 2714, + [2859] = 2859, + [2860] = 2860, + [2861] = 2089, + [2862] = 2703, + [2863] = 2685, + [2864] = 2086, + [2865] = 2865, + [2866] = 2710, + [2867] = 2867, [2868] = 2868, - [2869] = 2776, + [2869] = 2869, [2870] = 2870, - [2871] = 2665, - [2872] = 2872, - [2873] = 2773, + [2871] = 2871, + [2872] = 2718, + [2873] = 2873, [2874] = 2874, - [2875] = 2796, - [2876] = 2876, - [2877] = 2770, - [2878] = 2878, + [2875] = 2875, + [2876] = 2719, + [2877] = 2877, + [2878] = 2824, [2879] = 2879, - [2880] = 2880, - [2881] = 2028, - [2882] = 2027, - [2883] = 2799, - [2884] = 2694, - [2885] = 2677, - [2886] = 2026, - [2887] = 2025, - [2888] = 2674, - [2889] = 2029, - [2890] = 2036, - [2891] = 2038, - [2892] = 2040, - [2893] = 2700, - [2894] = 2699, - [2895] = 2042, - [2896] = 2672, - [2897] = 2044, + [2880] = 2713, + [2881] = 2826, + [2882] = 2882, + [2883] = 2828, + [2884] = 2719, + [2885] = 2829, + [2886] = 2714, + [2887] = 2775, + [2888] = 2888, + [2889] = 2889, + [2890] = 2091, + [2891] = 2088, + [2892] = 2087, + [2893] = 2743, + [2894] = 2085, + [2895] = 2084, + [2896] = 2687, + [2897] = 2686, [2898] = 2898, - [2899] = 2899, - [2900] = 2683, - [2901] = 2682, + [2899] = 2874, + [2900] = 2680, + [2901] = 2709, [2902] = 2902, - [2903] = 2824, - [2904] = 2681, - [2905] = 2680, - [2906] = 2804, + [2903] = 2903, + [2904] = 185, + [2905] = 2721, + [2906] = 2812, [2907] = 2907, - [2908] = 2807, - [2909] = 2678, - [2910] = 2878, - [2911] = 2847, - [2912] = 2833, - [2913] = 2808, + [2908] = 2766, + [2909] = 2710, + [2910] = 2910, + [2911] = 2837, + [2912] = 2912, + [2913] = 2840, [2914] = 2914, - [2915] = 2711, - [2916] = 2661, - [2917] = 2660, - [2918] = 2918, + [2915] = 2915, + [2916] = 2075, + [2917] = 2050, + [2918] = 2066, [2919] = 2919, - [2920] = 2920, - [2921] = 2899, - [2922] = 2914, - [2923] = 2923, - [2924] = 2659, - [2925] = 2813, + [2920] = 447, + [2921] = 2921, + [2922] = 2922, + [2923] = 2067, + [2924] = 2924, + [2925] = 2691, [2926] = 2926, - [2927] = 2725, - [2928] = 2707, - [2929] = 2929, - [2930] = 2821, - [2931] = 2931, + [2927] = 2927, + [2928] = 2754, + [2929] = 2730, + [2930] = 2845, + [2931] = 2727, [2932] = 2932, - [2933] = 2914, - [2934] = 2847, - [2935] = 2935, + [2933] = 2848, + [2934] = 2852, + [2935] = 2857, [2936] = 2936, - [2937] = 2937, - [2938] = 2938, - [2939] = 2939, - [2940] = 2937, - [2941] = 2941, - [2942] = 2942, - [2943] = 2943, + [2937] = 2702, + [2938] = 2079, + [2939] = 2849, + [2940] = 2693, + [2941] = 2870, + [2942] = 2877, + [2943] = 2692, [2944] = 2944, - [2945] = 2945, - [2946] = 2946, - [2947] = 2947, + [2945] = 2879, + [2946] = 2888, + [2947] = 2922, [2948] = 2948, [2949] = 2949, - [2950] = 2939, + [2950] = 2903, [2951] = 2951, [2952] = 2952, - [2953] = 2953, - [2954] = 2954, + [2953] = 2949, + [2954] = 2854, [2955] = 2955, - [2956] = 2941, - [2957] = 2957, - [2958] = 2958, - [2959] = 2959, - [2960] = 2960, + [2956] = 2851, + [2957] = 2948, + [2958] = 2952, + [2959] = 2865, + [2960] = 2873, [2961] = 2961, [2962] = 2962, - [2963] = 2954, + [2963] = 2963, [2964] = 2964, - [2965] = 2957, - [2966] = 2962, - [2967] = 2945, + [2965] = 2965, + [2966] = 2966, + [2967] = 2967, [2968] = 2968, [2969] = 2969, [2970] = 2970, - [2971] = 2961, + [2971] = 2971, [2972] = 2972, - [2973] = 2954, + [2973] = 2973, [2974] = 2974, [2975] = 2975, [2976] = 2976, @@ -6688,263 +6796,263 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2978] = 2978, [2979] = 2979, [2980] = 2980, - [2981] = 2981, + [2981] = 2970, [2982] = 2982, [2983] = 2983, [2984] = 2984, - [2985] = 2939, + [2985] = 2985, [2986] = 2986, [2987] = 2987, [2988] = 2988, [2989] = 2989, - [2990] = 2941, - [2991] = 2943, - [2992] = 2964, + [2990] = 2986, + [2991] = 2991, + [2992] = 2988, [2993] = 2993, [2994] = 2994, - [2995] = 2987, + [2995] = 2989, [2996] = 2996, - [2997] = 2948, - [2998] = 2998, - [2999] = 2996, + [2997] = 2971, + [2998] = 2986, + [2999] = 2974, [3000] = 3000, - [3001] = 2989, + [3001] = 432, [3002] = 3002, - [3003] = 2957, - [3004] = 2979, + [3003] = 3003, + [3004] = 3004, [3005] = 3005, - [3006] = 3005, - [3007] = 2978, - [3008] = 2939, + [3006] = 3006, + [3007] = 2983, + [3008] = 3008, [3009] = 3009, - [3010] = 2942, - [3011] = 2980, + [3010] = 3010, + [3011] = 3011, [3012] = 3012, [3013] = 3013, [3014] = 3014, [3015] = 3015, - [3016] = 3012, - [3017] = 3017, - [3018] = 2983, - [3019] = 2977, - [3020] = 1385, + [3016] = 3016, + [3017] = 2987, + [3018] = 3018, + [3019] = 3019, + [3020] = 3020, [3021] = 3021, - [3022] = 2951, - [3023] = 3023, - [3024] = 2984, + [3022] = 2971, + [3023] = 2988, + [3024] = 3024, [3025] = 3025, - [3026] = 2979, - [3027] = 3027, - [3028] = 2978, - [3029] = 2962, - [3030] = 2944, + [3026] = 2972, + [3027] = 3020, + [3028] = 3028, + [3029] = 3029, + [3030] = 2973, [3031] = 3031, - [3032] = 3013, + [3032] = 3032, [3033] = 3033, - [3034] = 3034, + [3034] = 3029, [3035] = 3035, - [3036] = 3036, + [3036] = 1172, [3037] = 3037, - [3038] = 430, - [3039] = 3039, - [3040] = 2976, + [3038] = 3038, + [3039] = 3019, + [3040] = 3040, [3041] = 3041, [3042] = 3042, - [3043] = 3043, - [3044] = 2955, - [3045] = 3045, + [3043] = 3012, + [3044] = 2985, + [3045] = 2982, [3046] = 3046, - [3047] = 2944, - [3048] = 3048, + [3047] = 2964, + [3048] = 2975, [3049] = 3049, - [3050] = 3050, - [3051] = 2936, - [3052] = 3052, + [3050] = 2969, + [3051] = 1264, + [3052] = 1269, [3053] = 3053, - [3054] = 2941, - [3055] = 2982, - [3056] = 2970, - [3057] = 2981, - [3058] = 2975, - [3059] = 3059, - [3060] = 2970, - [3061] = 2988, - [3062] = 3059, - [3063] = 2993, - [3064] = 2978, + [3054] = 2977, + [3055] = 2984, + [3056] = 3006, + [3057] = 3042, + [3058] = 3058, + [3059] = 2970, + [3060] = 2972, + [3061] = 2985, + [3062] = 2991, + [3063] = 3063, + [3064] = 3064, [3065] = 3065, - [3066] = 2953, - [3067] = 2939, - [3068] = 2771, - [3069] = 2943, - [3070] = 2996, - [3071] = 2769, - [3072] = 2946, - [3073] = 3053, - [3074] = 2955, + [3066] = 3064, + [3067] = 3021, + [3068] = 1395, + [3069] = 3018, + [3070] = 3070, + [3071] = 3071, + [3072] = 3072, + [3073] = 3073, + [3074] = 3013, [3075] = 3075, - [3076] = 3000, - [3077] = 3077, - [3078] = 2977, - [3079] = 2941, - [3080] = 3080, - [3081] = 2998, + [3076] = 3076, + [3077] = 3014, + [3078] = 3078, + [3079] = 3079, + [3080] = 3046, + [3081] = 3081, [3082] = 3082, [3083] = 3083, - [3084] = 3035, - [3085] = 2969, - [3086] = 3086, - [3087] = 3087, - [3088] = 2968, - [3089] = 3089, - [3090] = 2994, - [3091] = 2944, - [3092] = 2959, - [3093] = 1265, - [3094] = 2960, - [3095] = 3095, - [3096] = 2959, - [3097] = 2941, - [3098] = 1263, - [3099] = 2970, - [3100] = 3052, - [3101] = 2947, - [3102] = 3102, - [3103] = 2939, - [3104] = 2939, - [3105] = 2941, - [3106] = 2943, - [3107] = 2996, - [3108] = 2955, - [3109] = 3002, - [3110] = 3095, - [3111] = 3111, - [3112] = 3112, - [3113] = 3111, - [3114] = 3021, - [3115] = 2134, - [3116] = 2953, - [3117] = 2941, - [3118] = 2949, - [3119] = 2958, - [3120] = 2944, - [3121] = 3023, - [3122] = 3041, - [3123] = 2974, - [3124] = 3039, - [3125] = 2941, - [3126] = 2970, - [3127] = 3015, - [3128] = 2972, - [3129] = 2939, - [3130] = 3031, - [3131] = 2943, - [3132] = 2996, - [3133] = 3133, - [3134] = 3086, - [3135] = 3135, - [3136] = 3080, - [3137] = 3077, - [3138] = 2994, - [3139] = 2970, - [3140] = 3140, - [3141] = 3049, - [3142] = 2952, - [3143] = 3143, - [3144] = 3013, - [3145] = 2944, + [3084] = 3084, + [3085] = 2994, + [3086] = 2996, + [3087] = 2971, + [3088] = 2985, + [3089] = 3073, + [3090] = 2972, + [3091] = 3079, + [3092] = 3016, + [3093] = 3082, + [3094] = 2986, + [3095] = 2971, + [3096] = 3000, + [3097] = 3097, + [3098] = 3097, + [3099] = 3099, + [3100] = 3100, + [3101] = 3011, + [3102] = 3099, + [3103] = 3103, + [3104] = 3104, + [3105] = 3019, + [3106] = 2994, + [3107] = 3107, + [3108] = 2972, + [3109] = 3109, + [3110] = 3032, + [3111] = 3037, + [3112] = 2996, + [3113] = 3113, + [3114] = 2971, + [3115] = 3115, + [3116] = 3116, + [3117] = 3117, + [3118] = 3118, + [3119] = 3119, + [3120] = 3120, + [3121] = 3121, + [3122] = 3009, + [3123] = 3000, + [3124] = 3124, + [3125] = 3125, + [3126] = 3126, + [3127] = 2978, + [3128] = 2695, + [3129] = 3129, + [3130] = 3130, + [3131] = 3131, + [3132] = 2985, + [3133] = 2968, + [3134] = 2979, + [3135] = 3104, + [3136] = 3100, + [3137] = 3011, + [3138] = 2971, + [3139] = 2972, + [3140] = 3011, + [3141] = 3141, + [3142] = 3103, + [3143] = 2199, + [3144] = 3144, + [3145] = 2972, [3146] = 3146, - [3147] = 3133, - [3148] = 3148, - [3149] = 2941, - [3150] = 2970, - [3151] = 3002, - [3152] = 2939, - [3153] = 3048, - [3154] = 2943, - [3155] = 2996, - [3156] = 3087, - [3157] = 2944, - [3158] = 3046, - [3159] = 3045, - [3160] = 3160, - [3161] = 2941, - [3162] = 2939, - [3163] = 2937, - [3164] = 2943, - [3165] = 2996, - [3166] = 2996, - [3167] = 3148, - [3168] = 2943, - [3169] = 2996, - [3170] = 3170, - [3171] = 3160, - [3172] = 2943, - [3173] = 2996, - [3174] = 1163, - [3175] = 3175, - [3176] = 2943, - [3177] = 2996, - [3178] = 3178, - [3179] = 3146, - [3180] = 3180, - [3181] = 3181, - [3182] = 3175, - [3183] = 2943, - [3184] = 3140, - [3185] = 3039, - [3186] = 2935, - [3187] = 2939, - [3188] = 3188, - [3189] = 2964, - [3190] = 2957, - [3191] = 3188, - [3192] = 2954, - [3193] = 3012, - [3194] = 3194, - [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 3198, - [3199] = 443, - [3200] = 3200, - [3201] = 3201, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3205, - [3206] = 3206, + [3147] = 3032, + [3148] = 3037, + [3149] = 3141, + [3150] = 2971, + [3151] = 3018, + [3152] = 3015, + [3153] = 3011, + [3154] = 3107, + [3155] = 2980, + [3156] = 3032, + [3157] = 3042, + [3158] = 3033, + [3159] = 3053, + [3160] = 3046, + [3161] = 2985, + [3162] = 3109, + [3163] = 3019, + [3164] = 3164, + [3165] = 3020, + [3166] = 2971, + [3167] = 3011, + [3168] = 2993, + [3169] = 3037, + [3170] = 2972, + [3171] = 3003, + [3172] = 3032, + [3173] = 3037, + [3174] = 3049, + [3175] = 3005, + [3176] = 3115, + [3177] = 2976, + [3178] = 3006, + [3179] = 3124, + [3180] = 3119, + [3181] = 3120, + [3182] = 3182, + [3183] = 2972, + [3184] = 2978, + [3185] = 3121, + [3186] = 2985, + [3187] = 2696, + [3188] = 3032, + [3189] = 2988, + [3190] = 2971, + [3191] = 3011, + [3192] = 3008, + [3193] = 2972, + [3194] = 3010, + [3195] = 3032, + [3196] = 3037, + [3197] = 3012, + [3198] = 3053, + [3199] = 3025, + [3200] = 2996, + [3201] = 3033, + [3202] = 2971, + [3203] = 2972, + [3204] = 3035, + [3205] = 3032, + [3206] = 3037, [3207] = 3207, - [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3211, - [3212] = 3212, - [3213] = 3213, - [3214] = 3214, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 3221, - [3222] = 3222, - [3223] = 3223, + [3208] = 3038, + [3209] = 3032, + [3210] = 3037, + [3211] = 3083, + [3212] = 3081, + [3213] = 3032, + [3214] = 3037, + [3215] = 3037, + [3216] = 3084, + [3217] = 3032, + [3218] = 3037, + [3219] = 3125, + [3220] = 3116, + [3221] = 3131, + [3222] = 3129, + [3223] = 3072, [3224] = 3224, - [3225] = 3196, + [3225] = 3225, [3226] = 3226, [3227] = 3227, [3228] = 3228, [3229] = 3229, - [3230] = 3229, + [3230] = 3230, [3231] = 3231, - [3232] = 3232, + [3232] = 3230, [3233] = 3233, - [3234] = 3234, + [3234] = 3225, [3235] = 3235, [3236] = 3236, - [3237] = 3228, + [3237] = 3237, [3238] = 3238, [3239] = 3239, [3240] = 3240, @@ -6958,7 +7066,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3248] = 3248, [3249] = 3249, [3250] = 3250, - [3251] = 3197, + [3251] = 3233, [3252] = 3252, [3253] = 3253, [3254] = 3254, @@ -6967,216 +7075,257 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3257] = 3257, [3258] = 3258, [3259] = 3259, - [3260] = 3243, + [3260] = 3260, [3261] = 3261, [3262] = 3262, [3263] = 3263, [3264] = 3264, - [3265] = 3207, - [3266] = 3219, + [3265] = 3224, + [3266] = 3266, [3267] = 3267, [3268] = 3268, [3269] = 3269, [3270] = 3270, [3271] = 3271, - [3272] = 3272, + [3272] = 3237, [3273] = 3273, [3274] = 3274, [3275] = 3275, - [3276] = 3205, + [3276] = 3276, [3277] = 3277, - [3278] = 3220, - [3279] = 3204, - [3280] = 3280, - [3281] = 3281, - [3282] = 3215, + [3278] = 3278, + [3279] = 3279, + [3280] = 3276, + [3281] = 3273, + [3282] = 3282, [3283] = 3283, [3284] = 3284, - [3285] = 3285, + [3285] = 3248, [3286] = 3286, [3287] = 3287, [3288] = 3288, - [3289] = 3221, - [3290] = 3253, - [3291] = 3273, - [3292] = 3253, - [3293] = 3285, - [3294] = 3268, - [3295] = 3295, + [3289] = 3289, + [3290] = 3290, + [3291] = 3291, + [3292] = 3292, + [3293] = 3293, + [3294] = 3246, + [3295] = 3267, [3296] = 3296, [3297] = 3297, - [3298] = 3259, - [3299] = 3238, + [3298] = 3298, + [3299] = 3245, [3300] = 3300, - [3301] = 3222, - [3302] = 3223, - [3303] = 3264, - [3304] = 3195, + [3301] = 3274, + [3302] = 3302, + [3303] = 3253, + [3304] = 3304, [3305] = 3305, [3306] = 3306, [3307] = 3307, [3308] = 3308, - [3309] = 3309, + [3309] = 3293, [3310] = 3310, - [3311] = 3311, - [3312] = 3284, - [3313] = 3285, - [3314] = 3224, + [3311] = 3253, + [3312] = 3241, + [3313] = 3255, + [3314] = 3269, [3315] = 3315, - [3316] = 3213, - [3317] = 3308, + [3316] = 3291, + [3317] = 3261, [3318] = 3318, - [3319] = 3319, + [3319] = 3289, [3320] = 3320, [3321] = 3321, [3322] = 3322, - [3323] = 3323, - [3324] = 3268, - [3325] = 3198, - [3326] = 3288, - [3327] = 3235, - [3328] = 3328, - [3329] = 3197, - [3330] = 3198, + [3323] = 3267, + [3324] = 3324, + [3325] = 3296, + [3326] = 3326, + [3327] = 3327, + [3328] = 3315, + [3329] = 3315, + [3330] = 3279, [3331] = 3331, - [3332] = 3239, - [3333] = 3252, - [3334] = 3204, - [3335] = 3205, - [3336] = 3209, - [3337] = 3207, - [3338] = 3308, - [3339] = 3267, + [3332] = 3332, + [3333] = 3333, + [3334] = 434, + [3335] = 3335, + [3336] = 3290, + [3337] = 3262, + [3338] = 3338, + [3339] = 3327, [3340] = 3340, - [3341] = 3341, - [3342] = 3220, - [3343] = 3272, - [3344] = 3253, - [3345] = 3277, - [3346] = 3238, - [3347] = 3239, - [3348] = 3240, - [3349] = 3349, - [3350] = 3309, - [3351] = 3351, - [3352] = 3261, - [3353] = 3353, - [3354] = 3263, - [3355] = 3305, - [3356] = 3236, - [3357] = 3202, - [3358] = 3206, - [3359] = 3208, - [3360] = 3198, - [3361] = 3268, - [3362] = 3204, - [3363] = 3207, - [3364] = 3364, - [3365] = 3231, + [3341] = 3331, + [3342] = 3326, + [3343] = 3343, + [3344] = 3344, + [3345] = 3345, + [3346] = 3346, + [3347] = 3347, + [3348] = 3348, + [3349] = 3306, + [3350] = 3350, + [3351] = 3254, + [3352] = 3352, + [3353] = 3333, + [3354] = 3354, + [3355] = 3271, + [3356] = 3356, + [3357] = 3306, + [3358] = 3358, + [3359] = 3359, + [3360] = 3253, + [3361] = 3263, + [3362] = 3335, + [3363] = 3236, + [3364] = 3264, + [3365] = 3365, [3366] = 3366, - [3367] = 3256, - [3368] = 3240, - [3369] = 3366, + [3367] = 3367, + [3368] = 3252, + [3369] = 3369, [3370] = 3370, - [3371] = 3212, - [3372] = 3364, - [3373] = 3270, - [3374] = 3204, - [3375] = 3207, - [3376] = 3240, - [3377] = 3204, - [3378] = 3207, - [3379] = 3240, - [3380] = 3204, - [3381] = 3207, - [3382] = 3240, - [3383] = 3204, - [3384] = 3207, - [3385] = 3204, - [3386] = 3207, - [3387] = 3204, - [3388] = 3207, - [3389] = 3204, - [3390] = 3207, - [3391] = 3245, - [3392] = 3247, + [3371] = 3236, + [3372] = 3225, + [3373] = 3373, + [3374] = 3366, + [3375] = 3245, + [3376] = 3246, + [3377] = 3288, + [3378] = 3248, + [3379] = 3282, + [3380] = 3287, + [3381] = 3381, + [3382] = 3266, + [3383] = 3261, + [3384] = 3384, + [3385] = 3385, + [3386] = 3386, + [3387] = 3279, + [3388] = 3276, + [3389] = 3273, + [3390] = 3390, + [3391] = 3391, + [3392] = 3392, [3393] = 3393, [3394] = 3394, - [3395] = 3319, - [3396] = 3315, - [3397] = 3341, - [3398] = 3300, - [3399] = 3218, - [3400] = 3216, - [3401] = 3353, + [3395] = 3240, + [3396] = 3229, + [3397] = 3228, + [3398] = 3227, + [3399] = 3399, + [3400] = 3400, + [3401] = 3236, [3402] = 3402, - [3403] = 3403, - [3404] = 3245, - [3405] = 3250, - [3406] = 3297, - [3407] = 3407, - [3408] = 3296, - [3409] = 3257, - [3410] = 3410, - [3411] = 3269, - [3412] = 3412, - [3413] = 3211, - [3414] = 3295, - [3415] = 3232, - [3416] = 3370, - [3417] = 3211, - [3418] = 3418, - [3419] = 3349, - [3420] = 3402, - [3421] = 442, - [3422] = 3393, - [3423] = 3423, - [3424] = 3418, - [3425] = 3394, - [3426] = 3426, - [3427] = 3215, - [3428] = 3310, - [3429] = 3262, - [3430] = 3340, - [3431] = 3431, - [3432] = 3244, - [3433] = 3433, - [3434] = 3307, - [3435] = 3435, - [3436] = 3410, - [3437] = 3437, - [3438] = 3319, - [3439] = 3315, - [3440] = 3218, - [3441] = 3403, - [3442] = 3215, - [3443] = 3319, - [3444] = 3218, - [3445] = 3273, - [3446] = 3285, - [3447] = 3218, - [3448] = 3218, - [3449] = 3218, - [3450] = 3217, - [3451] = 3328, - [3452] = 3426, - [3453] = 3287, - [3454] = 3248, + [3403] = 3245, + [3404] = 3248, + [3405] = 3354, + [3406] = 3406, + [3407] = 3237, + [3408] = 3393, + [3409] = 3273, + [3410] = 3226, + [3411] = 3411, + [3412] = 426, + [3413] = 3231, + [3414] = 3244, + [3415] = 3245, + [3416] = 3248, + [3417] = 3273, + [3418] = 3245, + [3419] = 3248, + [3420] = 3273, + [3421] = 3245, + [3422] = 3248, + [3423] = 3273, + [3424] = 3245, + [3425] = 3248, + [3426] = 3245, + [3427] = 3248, + [3428] = 3245, + [3429] = 3248, + [3430] = 3245, + [3431] = 3248, + [3432] = 3386, + [3433] = 3267, + [3434] = 3306, + [3435] = 3254, + [3436] = 3358, + [3437] = 3340, + [3438] = 3326, + [3439] = 3321, + [3440] = 3381, + [3441] = 3367, + [3442] = 3267, + [3443] = 3247, + [3444] = 3282, + [3445] = 3297, + [3446] = 3286, + [3447] = 3447, + [3448] = 3448, + [3449] = 3283, + [3450] = 3275, + [3451] = 3348, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, [3455] = 3455, - [3456] = 3456, - [3457] = 3203, - [3458] = 3351, - [3459] = 3435, - [3460] = 3234, - [3461] = 3461, - [3462] = 3215, - [3463] = 3240, - [3464] = 3311, - [3465] = 3249, - [3466] = 3437, - [3467] = 3235, - [3468] = 3393, - [3469] = 3235, + [3456] = 3400, + [3457] = 3457, + [3458] = 3304, + [3459] = 3459, + [3460] = 3460, + [3461] = 3307, + [3462] = 3318, + [3463] = 3250, + [3464] = 3464, + [3465] = 3465, + [3466] = 3235, + [3467] = 3289, + [3468] = 3260, + [3469] = 3270, + [3470] = 3460, + [3471] = 3471, + [3472] = 3472, + [3473] = 3324, + [3474] = 3315, + [3475] = 3256, + [3476] = 3392, + [3477] = 3298, + [3478] = 3478, + [3479] = 3358, + [3480] = 3340, + [3481] = 3381, + [3482] = 3359, + [3483] = 3365, + [3484] = 3358, + [3485] = 3381, + [3486] = 3448, + [3487] = 3459, + [3488] = 3381, + [3489] = 3381, + [3490] = 3381, + [3491] = 3335, + [3492] = 3370, + [3493] = 3258, + [3494] = 3478, + [3495] = 3284, + [3496] = 3268, + [3497] = 3384, + [3498] = 3373, + [3499] = 3402, + [3500] = 3500, + [3501] = 3399, + [3502] = 3320, + [3503] = 3391, + [3504] = 3335, + [3505] = 3344, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3509, + [3510] = 3510, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -11842,16 +11991,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(69); - if (lookahead == '!') ADVANCE(106); + if (eof) ADVANCE(70); + if (lookahead == '!') ADVANCE(176); if (lookahead == '"') ADVANCE(161); if (lookahead == '#') ADVANCE(113); - if (lookahead == '$') ADVANCE(82); + if (lookahead == '$') ADVANCE(83); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(103); @@ -11859,40 +12008,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(128); if (lookahead == '=') ADVANCE(101); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); if (lookahead == '@') ADVANCE(109); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '\\') ADVANCE(94); - if (lookahead == ']') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (lookahead == '~') ADVANCE(124); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65) + lookahead == ' ') SKIP(66) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(195); END_STATE(); case 1: if (lookahead == '!') ADVANCE(106); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(103); @@ -11900,204 +12049,205 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(119); if (lookahead == '=') ADVANCE(100); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(1) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 2: if (lookahead == '!') ADVANCE(106); if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); + if (lookahead == '(') ADVANCE(73); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == '-') ADVANCE(96); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(80); + if (lookahead == ':') ADVANCE(81); if (lookahead == '<') ADVANCE(119); if (lookahead == '=') ADVANCE(101); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 3: if (lookahead == '!') ADVANCE(106); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(96); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(38); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(39); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(128); if (lookahead == '=') ADVANCE(100); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 4: if (lookahead == '!') ADVANCE(106); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(96); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(38); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(39); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(119); if (lookahead == '=') ADVANCE(100); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 5: if (lookahead == '!') ADVANCE(106); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); + if (lookahead == '(') ADVANCE(73); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == '-') ADVANCE(96); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(38); + if (lookahead == ':') ADVANCE(39); if (lookahead == '<') ADVANCE(119); if (lookahead == '=') ADVANCE(101); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 6: if (lookahead == '!') ADVANCE(106); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); - if (lookahead == '(') ADVANCE(72); + if (lookahead == '(') ADVANCE(73); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == '-') ADVANCE(96); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(38); + if (lookahead == ':') ADVANCE(39); if (lookahead == '<') ADVANCE(128); if (lookahead == '=') ADVANCE(101); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(168); + if (lookahead == 'r') ADVANCE(184); if (lookahead == '|') ADVANCE(123); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 7: if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(161); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(23); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); + if (lookahead == '*') ADVANCE(32); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); - if (lookahead == '=') ADVANCE(41); + if (lookahead == '=') ADVANCE(42); if (lookahead == '>') ADVANCE(120); - if (lookahead == '\\') ADVANCE(45); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 8: if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(82); + if (lookahead == '$') ADVANCE(83); if (lookahead == '%') ADVANCE(114); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(89); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); @@ -12105,96 +12255,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(107); if (lookahead == '/') ADVANCE(92); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(120); if (lookahead == '?') ADVANCE(91); if (lookahead == '@') ADVANCE(109); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '\\') ADVANCE(94); - if (lookahead == ']') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(116); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (lookahead == '~') ADVANCE(124); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(195); END_STATE(); case 9: if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(89); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(95); - if (lookahead == '.') ADVANCE(29); - if (lookahead == '/') ADVANCE(31); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(27); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(38); + if (lookahead == ':') ADVANCE(39); if (lookahead == '<') ADVANCE(118); if (lookahead == '>') ADVANCE(120); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 10: if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(89); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(95); - if (lookahead == '.') ADVANCE(30); - if (lookahead == '/') ADVANCE(31); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '/') ADVANCE(27); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(38); + if (lookahead == ':') ADVANCE(39); if (lookahead == '<') ADVANCE(118); - if (lookahead == '[') ADVANCE(77); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); + if (lookahead == '[') ADVANCE(78); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(10) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 11: if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(81); + if (lookahead == '$') ADVANCE(82); if (lookahead == '%') ADVANCE(114); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(89); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); @@ -12202,222 +12352,223 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(107); if (lookahead == '/') ADVANCE(92); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(120); if (lookahead == '?') ADVANCE(91); if (lookahead == '@') ADVANCE(109); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '\\') ADVANCE(94); - if (lookahead == ']') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(116); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (lookahead == '~') ADVANCE(124); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(195); END_STATE(); case 12: if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(160); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); + if (lookahead == '(') ADVANCE(73); if (lookahead == '*') ADVANCE(89); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(98); - if (lookahead == '.') ADVANCE(29); - if (lookahead == '/') ADVANCE(31); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(27); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(38); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(39); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 13: if (lookahead == '!') ADVANCE(105); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(89); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); - if (lookahead == '-') ADVANCE(40); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '/') ADVANCE(31); + if (lookahead == '-') ADVANCE(41); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '/') ADVANCE(27); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(120); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 14: if (lookahead == '!') ADVANCE(105); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(23); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); + if (lookahead == '*') ADVANCE(32); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); - if (lookahead == '=') ADVANCE(41); + if (lookahead == '=') ADVANCE(42); if (lookahead == '>') ADVANCE(120); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 15: if (lookahead == '!') ADVANCE(105); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(128); if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(120); if (lookahead == '@') ADVANCE(109); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 16: if (lookahead == '!') ADVANCE(105); - if (lookahead == '(') ADVANCE(72); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(38); + if (lookahead == '(') ADVANCE(73); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(39); if (lookahead == '<') ADVANCE(128); - if (lookahead == '=') ADVANCE(41); + if (lookahead == '=') ADVANCE(42); if (lookahead == '@') ADVANCE(109); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(39); + if (lookahead == '!') ADVANCE(40); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(97); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(79); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(80); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(119); if (lookahead == '=') ADVANCE(100); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(39); + if (lookahead == '!') ADVANCE(40); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(96); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); - if (lookahead == ':') ADVANCE(79); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(80); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(119); if (lookahead == '=') ADVANCE(100); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(39); + if (lookahead == '!') ADVANCE(40); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); - if (lookahead == '(') ADVANCE(72); + if (lookahead == '(') ADVANCE(73); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == '-') ADVANCE(97); @@ -12427,58 +12578,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(101); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'r') ADVANCE(168); + if (lookahead == 'r') ADVANCE(184); if (lookahead == '|') ADVANCE(123); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 20: if (lookahead == '"') ADVANCE(160); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(79); - if (lookahead == ';') ADVANCE(70); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(80); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); if (lookahead == '=') ADVANCE(99); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == 'b' || - lookahead == 'c') ADVANCE(167); + lookahead == 'c') ADVANCE(183); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 21: if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == ',') ADVANCE(103); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(38); - if (lookahead == ';') ADVANCE(70); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(39); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); if (lookahead == '=') ADVANCE(99); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '}') ADVANCE(75); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 22: if (lookahead == '#') ADVANCE(112); if (lookahead == ',') ADVANCE(103); - if (lookahead == '.') ADVANCE(29); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(79); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(80); if (lookahead == '<') ADVANCE(118); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); - if (lookahead == '}') ADVANCE(75); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 23: if (lookahead == '&') ADVANCE(133); @@ -12488,213 +12639,217 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 25: if (lookahead == '\'') ADVANCE(162); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\\') ADVANCE(45); if (lookahead != 0) ADVANCE(24); END_STATE(); case 26: if (lookahead == '\'') ADVANCE(125); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(89); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); - if (lookahead == '-') ADVANCE(40); - if (lookahead == '.') ADVANCE(28); - if (lookahead == '/') ADVANCE(31); - if (lookahead == ':') ADVANCE(79); - if (lookahead == ';') ADVANCE(70); + if (lookahead == '-') ADVANCE(41); + if (lookahead == '.') ADVANCE(29); + if (lookahead == '/') ADVANCE(27); + if (lookahead == ':') ADVANCE(80); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(128); if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(120); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(26) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 27: + if (lookahead == '*') ADVANCE(178); + if (lookahead == '/') ADVANCE(164); + END_STATE(); + case 28: if (lookahead == '*') ADVANCE(89); if (lookahead == '+') ADVANCE(87); - if (lookahead == '/') ADVANCE(85); + if (lookahead == '/') ADVANCE(84); if (lookahead == '?') ADVANCE(91); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(84); + lookahead == ' ') ADVANCE(85); if (lookahead != 0) ADVANCE(86); END_STATE(); - case 28: - if (lookahead == '.') ADVANCE(131); - END_STATE(); case 29: - if (lookahead == '.') ADVANCE(129); + if (lookahead == '.') ADVANCE(131); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(130); + if (lookahead == '.') ADVANCE(129); END_STATE(); case 31: - if (lookahead == '/') ADVANCE(164); + if (lookahead == '.') ADVANCE(130); END_STATE(); case 32: - if (lookahead == '1') ADVANCE(34); - if (lookahead == '3') ADVANCE(33); - if (lookahead == '6') ADVANCE(36); - if (lookahead == '8') ADVANCE(151); - if (lookahead == 's') ADVANCE(43); + if (lookahead == '/') ADVANCE(180); END_STATE(); case 33: - if (lookahead == '2') ADVANCE(151); + if (lookahead == '1') ADVANCE(35); + if (lookahead == '3') ADVANCE(34); + if (lookahead == '6') ADVANCE(37); + if (lookahead == '8') ADVANCE(151); + if (lookahead == 's') ADVANCE(44); END_STATE(); case 34: - if (lookahead == '2') ADVANCE(37); - if (lookahead == '6') ADVANCE(151); + if (lookahead == '2') ADVANCE(151); END_STATE(); case 35: - if (lookahead == '3') ADVANCE(33); - if (lookahead == '6') ADVANCE(36); + if (lookahead == '2') ADVANCE(38); + if (lookahead == '6') ADVANCE(151); END_STATE(); case 36: - if (lookahead == '4') ADVANCE(151); + if (lookahead == '3') ADVANCE(34); + if (lookahead == '6') ADVANCE(37); END_STATE(); case 37: - if (lookahead == '8') ADVANCE(151); + if (lookahead == '4') ADVANCE(151); END_STATE(); case 38: - if (lookahead == ':') ADVANCE(104); + if (lookahead == '8') ADVANCE(151); END_STATE(); case 39: - if (lookahead == '=') ADVANCE(136); + if (lookahead == ':') ADVANCE(104); END_STATE(); case 40: - if (lookahead == '>') ADVANCE(102); + if (lookahead == '=') ADVANCE(136); END_STATE(); case 41: - if (lookahead == '>') ADVANCE(76); + if (lookahead == '>') ADVANCE(102); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == '>') ADVANCE(77); END_STATE(); case 43: - if (lookahead == 'i') ADVANCE(46); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 44: - if (lookahead == 'u') ADVANCE(47); - if (lookahead == 'x') ADVANCE(59); - if (lookahead != 0) ADVANCE(24); + if (lookahead == 'i') ADVANCE(47); END_STATE(); case 45: if (lookahead == 'u') ADVANCE(48); if (lookahead == 'x') ADVANCE(60); - if (lookahead != 0) ADVANCE(163); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 46: - if (lookahead == 'z') ADVANCE(42); + if (lookahead == 'u') ADVANCE(49); + if (lookahead == 'x') ADVANCE(61); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 47: - if (lookahead == '{') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); + if (lookahead == 'z') ADVANCE(43); END_STATE(); case 48: - if (lookahead == '{') ADVANCE(58); + if (lookahead == '{') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); case 49: - if (lookahead == '}') ADVANCE(24); + if (lookahead == '{') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); END_STATE(); case 50: - if (lookahead == '}') ADVANCE(163); + if (lookahead == '}') ADVANCE(24); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 51: + if (lookahead == '}') ADVANCE(163); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + END_STATE(); + case 52: if (lookahead == '0' || lookahead == '1' || lookahead == '_') ADVANCE(156); END_STATE(); - case 52: + case 53: if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(52); + lookahead == ' ') ADVANCE(53); if (lookahead != 0 && - lookahead != '[') ADVANCE(180); + lookahead != '[') ADVANCE(196); END_STATE(); - case 53: + case 54: if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(157); END_STATE(); - case 54: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(24); - END_STATE(); case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(24); END_STATE(); case 56: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); END_STATE(); case 57: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 58: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); END_STATE(); case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); END_STATE(); case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 61: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); END_STATE(); case 62: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); END_STATE(); case 63: - if (('A' <= lookahead && lookahead <= 'Z') || + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); END_STATE(); case 64: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(197); END_STATE(); case 65: - if (eof) ADVANCE(69); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); + END_STATE(); + case 66: + if (eof) ADVANCE(70); if (lookahead == '!') ADVANCE(106); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(113); - if (lookahead == '$') ADVANCE(82); + if (lookahead == '$') ADVANCE(83); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(103); @@ -12702,200 +12857,192 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(128); if (lookahead == '=') ADVANCE(101); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); if (lookahead == '@') ADVANCE(109); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '\\') ADVANCE(94); - if (lookahead == ']') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (lookahead == '~') ADVANCE(124); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65) + lookahead == ' ') SKIP(66) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(195); END_STATE(); - case 66: - if (eof) ADVANCE(69); + case 67: + if (eof) ADVANCE(70); if (lookahead == '!') ADVANCE(106); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '%') ADVANCE(115); if (lookahead == '&') ADVANCE(111); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); + if (lookahead == '(') ADVANCE(73); if (lookahead == '*') ADVANCE(90); if (lookahead == '+') ADVANCE(88); if (lookahead == '-') ADVANCE(96); if (lookahead == '.') ADVANCE(108); if (lookahead == '/') ADVANCE(93); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(38); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(39); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(119); if (lookahead == '=') ADVANCE(100); if (lookahead == '>') ADVANCE(121); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); + if (lookahead == '[') ADVANCE(78); if (lookahead == '^') ADVANCE(117); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) + lookahead == ' ') SKIP(67) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); - case 67: - if (eof) ADVANCE(69); + case 68: + if (eof) ADVANCE(70); if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(113); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); - if (lookahead == ')') ADVANCE(73); + if (lookahead == '(') ADVANCE(73); + if (lookahead == ')') ADVANCE(74); if (lookahead == '*') ADVANCE(89); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(103); if (lookahead == '-') ADVANCE(95); - if (lookahead == '.') ADVANCE(29); - if (lookahead == '/') ADVANCE(31); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(27); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(38); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(39); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(120); if (lookahead == '?') ADVANCE(91); - if (lookahead == '[') ADVANCE(77); - if (lookahead == ']') ADVANCE(78); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == '[') ADVANCE(78); + if (lookahead == ']') ADVANCE(79); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67) + lookahead == ' ') SKIP(68) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); - case 68: - if (eof) ADVANCE(69); + case 69: + if (eof) ADVANCE(70); if (lookahead == '!') ADVANCE(105); if (lookahead == '"') ADVANCE(160); if (lookahead == '#') ADVANCE(112); - if (lookahead == '$') ADVANCE(63); + if (lookahead == '$') ADVANCE(64); if (lookahead == '&') ADVANCE(110); if (lookahead == '\'') ADVANCE(126); - if (lookahead == '(') ADVANCE(72); + if (lookahead == '(') ADVANCE(73); if (lookahead == '*') ADVANCE(89); if (lookahead == '-') ADVANCE(95); - if (lookahead == '.') ADVANCE(29); - if (lookahead == '/') ADVANCE(31); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(27); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(38); - if (lookahead == ';') ADVANCE(70); + if (lookahead == ':') ADVANCE(39); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); - if (lookahead == '[') ADVANCE(77); - if (lookahead == 'b') ADVANCE(166); - if (lookahead == 'c') ADVANCE(167); - if (lookahead == 'm') ADVANCE(170); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == '{') ADVANCE(74); + if (lookahead == '[') ADVANCE(78); + if (lookahead == 'b') ADVANCE(182); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 'm') ADVANCE(186); + if (lookahead == 'r') ADVANCE(184); + if (lookahead == '{') ADVANCE(75); if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(75); + if (lookahead == '}') ADVANCE(76); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) + lookahead == ' ') SKIP(69) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); - case 69: + case 70: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 70: + case 71: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 71: + case 72: ACCEPT_TOKEN(anon_sym_macro_rules_BANG); END_STATE(); - case 72: + case 73: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 73: + case 74: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 74: + case 75: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 75: + case 76: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 76: + case 77: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 77: + case 78: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 78: + case 79: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 79: + case 80: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 80: + case 81: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == ':') ADVANCE(104); END_STATE(); - case 81: + case 82: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 82: + case 83: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); - END_STATE(); - case 83: - ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(86); - if (lookahead == '*' || - lookahead == '+' || - lookahead == '?') ADVANCE(164); - if (lookahead != 0) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(197); END_STATE(); case 84: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(85); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(84); + if (lookahead == '*') ADVANCE(178); + if (lookahead == '/') ADVANCE(165); if (lookahead != 0 && - lookahead != '*' && lookahead != '+' && lookahead != '?') ADVANCE(86); END_STATE(); case 85: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(83); + if (lookahead == '/') ADVANCE(84); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(85); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && @@ -12927,10 +13074,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 92: ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(178); if (lookahead == '/') ADVANCE(164); END_STATE(); case 93: ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(178); if (lookahead == '/') ADVANCE(164); if (lookahead == '=') ADVANCE(144); END_STATE(); @@ -12963,7 +13112,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 101: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(135); - if (lookahead == '>') ADVANCE(76); + if (lookahead == '>') ADVANCE(77); END_STATE(); case 102: ACCEPT_TOKEN(anon_sym_DASH_GT); @@ -13004,7 +13153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 113: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(52); + if (lookahead == '!') ADVANCE(53); END_STATE(); case 114: ACCEPT_TOKEN(anon_sym_PERCENT); @@ -13053,7 +13202,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 126: ACCEPT_TOKEN(anon_sym_SQUOTE); if (lookahead == '\'') ADVANCE(162); - if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\\') ADVANCE(45); if (lookahead != 0) ADVANCE(24); END_STATE(); case 127: @@ -13140,8 +13289,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '2') ADVANCE(159); if (lookahead == 'f') ADVANCE(153); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'u') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || @@ -13152,8 +13301,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '3') ADVANCE(152); if (lookahead == '6') ADVANCE(154); if (lookahead == 'f') ADVANCE(153); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'u') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || @@ -13163,8 +13312,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '4') ADVANCE(159); if (lookahead == 'f') ADVANCE(153); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'u') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || @@ -13172,45 +13321,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 155: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(51); - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'o') ADVANCE(53); - if (lookahead == 'u') ADVANCE(32); - if (lookahead == 'x') ADVANCE(62); + if (lookahead == 'b') ADVANCE(52); + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'o') ADVANCE(54); + if (lookahead == 'u') ADVANCE(33); + if (lookahead == 'x') ADVANCE(63); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(158); END_STATE(); case 156: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'u') ADVANCE(33); if (lookahead == '0' || lookahead == '1' || lookahead == '_') ADVANCE(156); END_STATE(); case 157: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'u') ADVANCE(33); if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(157); END_STATE(); case 158: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'u') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_') ADVANCE(158); END_STATE(); case 159: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'f') ADVANCE(153); - if (lookahead == 'i') ADVANCE(32); - if (lookahead == 'u') ADVANCE(32); + if (lookahead == 'i') ADVANCE(33); + if (lookahead == 'u') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || @@ -13229,98 +13378,187 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 164: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 165: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(71); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '+' && + lookahead != '?') ADVANCE(86); END_STATE(); case 166: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(170); + END_STATE(); + case 167: + ACCEPT_TOKEN(aux_sym_line_comment_token1); + END_STATE(); + case 168: + ACCEPT_TOKEN(aux_sym_line_comment_token2); + if (lookahead == '*') ADVANCE(179); + if (lookahead == '/') ADVANCE(166); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(170); + END_STATE(); + case 169: + ACCEPT_TOKEN(aux_sym_line_comment_token2); + if (lookahead == '/') ADVANCE(168); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(169); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(170); + END_STATE(); + case 170: + ACCEPT_TOKEN(aux_sym_line_comment_token2); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(170); + END_STATE(); + case 171: + ACCEPT_TOKEN(aux_sym_line_comment_token3); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '*') ADVANCE(177); + if (lookahead == '/') ADVANCE(167); + if (lookahead != 0) ADVANCE(177); + END_STATE(); + case 172: + ACCEPT_TOKEN(aux_sym_line_comment_token3); + if (lookahead == '!') ADVANCE(176); + if (lookahead == '/') ADVANCE(171); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(174); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(175); + END_STATE(); + case 173: + ACCEPT_TOKEN(aux_sym_line_comment_token3); + if (lookahead == '*') ADVANCE(175); + if (lookahead == '/') ADVANCE(175); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(175); + END_STATE(); + case 174: + ACCEPT_TOKEN(aux_sym_line_comment_token3); + if (lookahead == '/') ADVANCE(173); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(174); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(175); + END_STATE(); + case 175: + ACCEPT_TOKEN(aux_sym_line_comment_token3); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(175); + END_STATE(); + case 176: + ACCEPT_TOKEN(sym__inner_line_doc_comment); + END_STATE(); + case 177: + ACCEPT_TOKEN(sym__outer_line_doc_comment); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(170); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_STAR_SLASH); + END_STATE(); + case 181: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(72); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); + END_STATE(); + case 182: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(160); if (lookahead == '\'') ADVANCE(25); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 167: + case 183: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(160); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 168: + case 184: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(64); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == '#') ADVANCE(65); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 169: + case 185: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(176); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(179); + if (lookahead == '_') ADVANCE(192); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(195); END_STATE(); - case 170: + case 186: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(171); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(179); + if (lookahead == 'a') ADVANCE(187); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(195); END_STATE(); - case 171: + case 187: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(175); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 'c') ADVANCE(191); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 172: + case 188: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(177); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 'e') ADVANCE(193); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 173: + case 189: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(172); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 'l') ADVANCE(188); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 174: + case 190: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(169); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 'o') ADVANCE(185); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 175: + case 191: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(174); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 'r') ADVANCE(190); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 176: + case 192: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(178); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 'r') ADVANCE(194); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 177: + case 193: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(165); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 's') ADVANCE(181); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 178: + case 194: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(173); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (lookahead == 'u') ADVANCE(189); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 179: + case 195: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(179); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(195); END_STATE(); - case 180: + case 196: ACCEPT_TOKEN(sym_shebang); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '[') ADVANCE(180); + lookahead != '[') ADVANCE(196); END_STATE(); - case 181: + case 197: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(197); END_STATE(); default: return false; @@ -14059,40 +14297,40 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 67, .external_lex_state = 2}, - [2] = {.lex_state = 68, .external_lex_state = 2}, - [3] = {.lex_state = 68, .external_lex_state = 2}, - [4] = {.lex_state = 68, .external_lex_state = 2}, - [5] = {.lex_state = 68, .external_lex_state = 2}, - [6] = {.lex_state = 68, .external_lex_state = 2}, - [7] = {.lex_state = 68, .external_lex_state = 2}, - [8] = {.lex_state = 68, .external_lex_state = 2}, - [9] = {.lex_state = 68, .external_lex_state = 2}, - [10] = {.lex_state = 68, .external_lex_state = 2}, - [11] = {.lex_state = 68, .external_lex_state = 2}, - [12] = {.lex_state = 68, .external_lex_state = 2}, - [13] = {.lex_state = 68, .external_lex_state = 2}, - [14] = {.lex_state = 68, .external_lex_state = 2}, - [15] = {.lex_state = 68, .external_lex_state = 2}, - [16] = {.lex_state = 68, .external_lex_state = 2}, - [17] = {.lex_state = 68, .external_lex_state = 2}, - [18] = {.lex_state = 68, .external_lex_state = 2}, - [19] = {.lex_state = 68, .external_lex_state = 2}, - [20] = {.lex_state = 68, .external_lex_state = 2}, - [21] = {.lex_state = 68, .external_lex_state = 2}, - [22] = {.lex_state = 68, .external_lex_state = 2}, - [23] = {.lex_state = 68, .external_lex_state = 2}, - [24] = {.lex_state = 68, .external_lex_state = 2}, - [25] = {.lex_state = 68, .external_lex_state = 2}, - [26] = {.lex_state = 68, .external_lex_state = 2}, - [27] = {.lex_state = 68, .external_lex_state = 2}, - [28] = {.lex_state = 68, .external_lex_state = 2}, - [29] = {.lex_state = 68, .external_lex_state = 2}, - [30] = {.lex_state = 68, .external_lex_state = 2}, - [31] = {.lex_state = 68, .external_lex_state = 2}, - [32] = {.lex_state = 68, .external_lex_state = 2}, - [33] = {.lex_state = 68, .external_lex_state = 2}, - [34] = {.lex_state = 68, .external_lex_state = 2}, + [1] = {.lex_state = 68, .external_lex_state = 2}, + [2] = {.lex_state = 69, .external_lex_state = 2}, + [3] = {.lex_state = 69, .external_lex_state = 2}, + [4] = {.lex_state = 69, .external_lex_state = 2}, + [5] = {.lex_state = 69, .external_lex_state = 2}, + [6] = {.lex_state = 69, .external_lex_state = 2}, + [7] = {.lex_state = 69, .external_lex_state = 2}, + [8] = {.lex_state = 69, .external_lex_state = 2}, + [9] = {.lex_state = 69, .external_lex_state = 2}, + [10] = {.lex_state = 69, .external_lex_state = 2}, + [11] = {.lex_state = 69, .external_lex_state = 2}, + [12] = {.lex_state = 69, .external_lex_state = 2}, + [13] = {.lex_state = 69, .external_lex_state = 2}, + [14] = {.lex_state = 69, .external_lex_state = 2}, + [15] = {.lex_state = 69, .external_lex_state = 2}, + [16] = {.lex_state = 69, .external_lex_state = 2}, + [17] = {.lex_state = 69, .external_lex_state = 2}, + [18] = {.lex_state = 69, .external_lex_state = 2}, + [19] = {.lex_state = 69, .external_lex_state = 2}, + [20] = {.lex_state = 69, .external_lex_state = 2}, + [21] = {.lex_state = 69, .external_lex_state = 2}, + [22] = {.lex_state = 69, .external_lex_state = 2}, + [23] = {.lex_state = 69, .external_lex_state = 2}, + [24] = {.lex_state = 69, .external_lex_state = 2}, + [25] = {.lex_state = 69, .external_lex_state = 2}, + [26] = {.lex_state = 69, .external_lex_state = 2}, + [27] = {.lex_state = 69, .external_lex_state = 2}, + [28] = {.lex_state = 69, .external_lex_state = 2}, + [29] = {.lex_state = 69, .external_lex_state = 2}, + [30] = {.lex_state = 69, .external_lex_state = 2}, + [31] = {.lex_state = 69, .external_lex_state = 2}, + [32] = {.lex_state = 69, .external_lex_state = 2}, + [33] = {.lex_state = 69, .external_lex_state = 2}, + [34] = {.lex_state = 69, .external_lex_state = 2}, [35] = {.lex_state = 1, .external_lex_state = 2}, [36] = {.lex_state = 1, .external_lex_state = 2}, [37] = {.lex_state = 1, .external_lex_state = 2}, @@ -14103,9 +14341,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 1, .external_lex_state = 2}, [43] = {.lex_state = 2, .external_lex_state = 2}, [44] = {.lex_state = 2, .external_lex_state = 2}, - [45] = {.lex_state = 1, .external_lex_state = 2}, + [45] = {.lex_state = 2, .external_lex_state = 2}, [46] = {.lex_state = 2, .external_lex_state = 2}, - [47] = {.lex_state = 2, .external_lex_state = 2}, + [47] = {.lex_state = 1, .external_lex_state = 2}, [48] = {.lex_state = 2, .external_lex_state = 2}, [49] = {.lex_state = 2, .external_lex_state = 2}, [50] = {.lex_state = 2, .external_lex_state = 2}, @@ -14113,8 +14351,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [52] = {.lex_state = 2, .external_lex_state = 2}, [53] = {.lex_state = 2, .external_lex_state = 2}, [54] = {.lex_state = 2, .external_lex_state = 2}, - [55] = {.lex_state = 2, .external_lex_state = 2}, - [56] = {.lex_state = 1, .external_lex_state = 2}, + [55] = {.lex_state = 1, .external_lex_state = 2}, + [56] = {.lex_state = 2, .external_lex_state = 2}, [57] = {.lex_state = 2, .external_lex_state = 2}, [58] = {.lex_state = 2, .external_lex_state = 2}, [59] = {.lex_state = 2, .external_lex_state = 2}, @@ -14177,120 +14415,120 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 9, .external_lex_state = 2}, [117] = {.lex_state = 9, .external_lex_state = 2}, [118] = {.lex_state = 9, .external_lex_state = 2}, - [119] = {.lex_state = 9, .external_lex_state = 2}, - [120] = {.lex_state = 12, .external_lex_state = 2}, - [121] = {.lex_state = 12, .external_lex_state = 2}, + [119] = {.lex_state = 12, .external_lex_state = 2}, + [120] = {.lex_state = 9, .external_lex_state = 2}, + [121] = {.lex_state = 9, .external_lex_state = 2}, [122] = {.lex_state = 9, .external_lex_state = 2}, - [123] = {.lex_state = 12, .external_lex_state = 2}, - [124] = {.lex_state = 9, .external_lex_state = 2}, + [123] = {.lex_state = 9, .external_lex_state = 2}, + [124] = {.lex_state = 12, .external_lex_state = 2}, [125] = {.lex_state = 12, .external_lex_state = 2}, [126] = {.lex_state = 9, .external_lex_state = 2}, [127] = {.lex_state = 12, .external_lex_state = 2}, - [128] = {.lex_state = 9, .external_lex_state = 2}, - [129] = {.lex_state = 9, .external_lex_state = 2}, + [128] = {.lex_state = 12, .external_lex_state = 2}, + [129] = {.lex_state = 12, .external_lex_state = 2}, [130] = {.lex_state = 12, .external_lex_state = 2}, - [131] = {.lex_state = 12, .external_lex_state = 2}, - [132] = {.lex_state = 9, .external_lex_state = 2}, + [131] = {.lex_state = 9, .external_lex_state = 2}, + [132] = {.lex_state = 12, .external_lex_state = 2}, [133] = {.lex_state = 9, .external_lex_state = 2}, - [134] = {.lex_state = 12, .external_lex_state = 2}, + [134] = {.lex_state = 9, .external_lex_state = 2}, [135] = {.lex_state = 9, .external_lex_state = 2}, - [136] = {.lex_state = 66, .external_lex_state = 2}, - [137] = {.lex_state = 12, .external_lex_state = 2}, + [136] = {.lex_state = 12, .external_lex_state = 2}, + [137] = {.lex_state = 67, .external_lex_state = 2}, [138] = {.lex_state = 12, .external_lex_state = 2}, - [139] = {.lex_state = 9, .external_lex_state = 2}, + [139] = {.lex_state = 12, .external_lex_state = 2}, [140] = {.lex_state = 12, .external_lex_state = 2}, [141] = {.lex_state = 12, .external_lex_state = 2}, [142] = {.lex_state = 12, .external_lex_state = 2}, - [143] = {.lex_state = 9, .external_lex_state = 2}, + [143] = {.lex_state = 12, .external_lex_state = 2}, [144] = {.lex_state = 9, .external_lex_state = 2}, - [145] = {.lex_state = 12, .external_lex_state = 2}, + [145] = {.lex_state = 9, .external_lex_state = 2}, [146] = {.lex_state = 12, .external_lex_state = 2}, [147] = {.lex_state = 12, .external_lex_state = 2}, - [148] = {.lex_state = 12, .external_lex_state = 2}, + [148] = {.lex_state = 9, .external_lex_state = 2}, [149] = {.lex_state = 12, .external_lex_state = 2}, [150] = {.lex_state = 12, .external_lex_state = 2}, - [151] = {.lex_state = 9, .external_lex_state = 2}, + [151] = {.lex_state = 12, .external_lex_state = 2}, [152] = {.lex_state = 12, .external_lex_state = 2}, - [153] = {.lex_state = 12, .external_lex_state = 2}, + [153] = {.lex_state = 9, .external_lex_state = 2}, [154] = {.lex_state = 9, .external_lex_state = 2}, - [155] = {.lex_state = 9, .external_lex_state = 2}, - [156] = {.lex_state = 66, .external_lex_state = 2}, + [155] = {.lex_state = 67, .external_lex_state = 2}, + [156] = {.lex_state = 67, .external_lex_state = 2}, [157] = {.lex_state = 9, .external_lex_state = 2}, - [158] = {.lex_state = 66, .external_lex_state = 2}, + [158] = {.lex_state = 67, .external_lex_state = 2}, [159] = {.lex_state = 9, .external_lex_state = 2}, - [160] = {.lex_state = 66, .external_lex_state = 2}, - [161] = {.lex_state = 66, .external_lex_state = 2}, - [162] = {.lex_state = 66, .external_lex_state = 2}, - [163] = {.lex_state = 9, .external_lex_state = 2}, + [160] = {.lex_state = 9, .external_lex_state = 2}, + [161] = {.lex_state = 9, .external_lex_state = 2}, + [162] = {.lex_state = 67, .external_lex_state = 2}, + [163] = {.lex_state = 67, .external_lex_state = 2}, [164] = {.lex_state = 9, .external_lex_state = 2}, - [165] = {.lex_state = 66, .external_lex_state = 2}, + [165] = {.lex_state = 9, .external_lex_state = 2}, [166] = {.lex_state = 9, .external_lex_state = 2}, [167] = {.lex_state = 9, .external_lex_state = 2}, [168] = {.lex_state = 9, .external_lex_state = 2}, - [169] = {.lex_state = 66, .external_lex_state = 2}, + [169] = {.lex_state = 9, .external_lex_state = 2}, [170] = {.lex_state = 9, .external_lex_state = 2}, [171] = {.lex_state = 9, .external_lex_state = 2}, [172] = {.lex_state = 9, .external_lex_state = 2}, - [173] = {.lex_state = 66, .external_lex_state = 2}, + [173] = {.lex_state = 9, .external_lex_state = 2}, [174] = {.lex_state = 9, .external_lex_state = 2}, [175] = {.lex_state = 9, .external_lex_state = 2}, [176] = {.lex_state = 9, .external_lex_state = 2}, - [177] = {.lex_state = 9, .external_lex_state = 2}, + [177] = {.lex_state = 67, .external_lex_state = 2}, [178] = {.lex_state = 9, .external_lex_state = 2}, - [179] = {.lex_state = 9, .external_lex_state = 2}, + [179] = {.lex_state = 67, .external_lex_state = 2}, [180] = {.lex_state = 9, .external_lex_state = 2}, - [181] = {.lex_state = 66, .external_lex_state = 2}, - [182] = {.lex_state = 9, .external_lex_state = 2}, + [181] = {.lex_state = 67, .external_lex_state = 2}, + [182] = {.lex_state = 67, .external_lex_state = 2}, [183] = {.lex_state = 9, .external_lex_state = 2}, [184] = {.lex_state = 9, .external_lex_state = 2}, - [185] = {.lex_state = 9, .external_lex_state = 2}, + [185] = {.lex_state = 67, .external_lex_state = 2}, [186] = {.lex_state = 9, .external_lex_state = 2}, [187] = {.lex_state = 9, .external_lex_state = 2}, [188] = {.lex_state = 9, .external_lex_state = 2}, - [189] = {.lex_state = 66, .external_lex_state = 2}, - [190] = {.lex_state = 66, .external_lex_state = 2}, + [189] = {.lex_state = 67, .external_lex_state = 2}, + [190] = {.lex_state = 9, .external_lex_state = 2}, [191] = {.lex_state = 9, .external_lex_state = 2}, - [192] = {.lex_state = 9, .external_lex_state = 2}, - [193] = {.lex_state = 66, .external_lex_state = 2}, - [194] = {.lex_state = 66, .external_lex_state = 2}, + [192] = {.lex_state = 67, .external_lex_state = 2}, + [193] = {.lex_state = 9, .external_lex_state = 2}, + [194] = {.lex_state = 9, .external_lex_state = 2}, [195] = {.lex_state = 9, .external_lex_state = 2}, - [196] = {.lex_state = 66, .external_lex_state = 2}, + [196] = {.lex_state = 9, .external_lex_state = 2}, [197] = {.lex_state = 9, .external_lex_state = 2}, - [198] = {.lex_state = 9, .external_lex_state = 2}, + [198] = {.lex_state = 67, .external_lex_state = 2}, [199] = {.lex_state = 9, .external_lex_state = 2}, [200] = {.lex_state = 9, .external_lex_state = 2}, [201] = {.lex_state = 9, .external_lex_state = 2}, [202] = {.lex_state = 9, .external_lex_state = 2}, - [203] = {.lex_state = 66, .external_lex_state = 2}, - [204] = {.lex_state = 66, .external_lex_state = 2}, + [203] = {.lex_state = 9, .external_lex_state = 2}, + [204] = {.lex_state = 67, .external_lex_state = 2}, [205] = {.lex_state = 9, .external_lex_state = 2}, [206] = {.lex_state = 9, .external_lex_state = 2}, - [207] = {.lex_state = 9, .external_lex_state = 2}, + [207] = {.lex_state = 67, .external_lex_state = 2}, [208] = {.lex_state = 9, .external_lex_state = 2}, [209] = {.lex_state = 9, .external_lex_state = 2}, [210] = {.lex_state = 9, .external_lex_state = 2}, [211] = {.lex_state = 9, .external_lex_state = 2}, [212] = {.lex_state = 9, .external_lex_state = 2}, - [213] = {.lex_state = 9, .external_lex_state = 2}, + [213] = {.lex_state = 67, .external_lex_state = 2}, [214] = {.lex_state = 9, .external_lex_state = 2}, [215] = {.lex_state = 9, .external_lex_state = 2}, [216] = {.lex_state = 9, .external_lex_state = 2}, [217] = {.lex_state = 9, .external_lex_state = 2}, [218] = {.lex_state = 9, .external_lex_state = 2}, [219] = {.lex_state = 9, .external_lex_state = 2}, - [220] = {.lex_state = 9, .external_lex_state = 2}, + [220] = {.lex_state = 67, .external_lex_state = 2}, [221] = {.lex_state = 9, .external_lex_state = 2}, [222] = {.lex_state = 9, .external_lex_state = 2}, [223] = {.lex_state = 9, .external_lex_state = 2}, - [224] = {.lex_state = 66, .external_lex_state = 2}, - [225] = {.lex_state = 9, .external_lex_state = 2}, + [224] = {.lex_state = 9, .external_lex_state = 2}, + [225] = {.lex_state = 67, .external_lex_state = 2}, [226] = {.lex_state = 9, .external_lex_state = 2}, [227] = {.lex_state = 9, .external_lex_state = 2}, [228] = {.lex_state = 9, .external_lex_state = 2}, [229] = {.lex_state = 9, .external_lex_state = 2}, - [230] = {.lex_state = 66, .external_lex_state = 2}, - [231] = {.lex_state = 9, .external_lex_state = 2}, - [232] = {.lex_state = 9, .external_lex_state = 2}, + [230] = {.lex_state = 9, .external_lex_state = 2}, + [231] = {.lex_state = 67, .external_lex_state = 2}, + [232] = {.lex_state = 67, .external_lex_state = 2}, [233] = {.lex_state = 9, .external_lex_state = 2}, [234] = {.lex_state = 9, .external_lex_state = 2}, [235] = {.lex_state = 9, .external_lex_state = 2}, @@ -14310,19 +14548,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [249] = {.lex_state = 9, .external_lex_state = 2}, [250] = {.lex_state = 9, .external_lex_state = 2}, [251] = {.lex_state = 9, .external_lex_state = 2}, - [252] = {.lex_state = 66, .external_lex_state = 2}, + [252] = {.lex_state = 9, .external_lex_state = 2}, [253] = {.lex_state = 9, .external_lex_state = 2}, [254] = {.lex_state = 9, .external_lex_state = 2}, [255] = {.lex_state = 9, .external_lex_state = 2}, [256] = {.lex_state = 9, .external_lex_state = 2}, - [257] = {.lex_state = 66, .external_lex_state = 2}, + [257] = {.lex_state = 9, .external_lex_state = 2}, [258] = {.lex_state = 9, .external_lex_state = 2}, - [259] = {.lex_state = 66, .external_lex_state = 2}, + [259] = {.lex_state = 9, .external_lex_state = 2}, [260] = {.lex_state = 9, .external_lex_state = 2}, [261] = {.lex_state = 9, .external_lex_state = 2}, [262] = {.lex_state = 9, .external_lex_state = 2}, [263] = {.lex_state = 9, .external_lex_state = 2}, - [264] = {.lex_state = 9, .external_lex_state = 2}, + [264] = {.lex_state = 67, .external_lex_state = 2}, [265] = {.lex_state = 9, .external_lex_state = 2}, [266] = {.lex_state = 9, .external_lex_state = 2}, [267] = {.lex_state = 9, .external_lex_state = 2}, @@ -14332,7 +14570,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [271] = {.lex_state = 9, .external_lex_state = 2}, [272] = {.lex_state = 9, .external_lex_state = 2}, [273] = {.lex_state = 9, .external_lex_state = 2}, - [274] = {.lex_state = 9, .external_lex_state = 2}, + [274] = {.lex_state = 67, .external_lex_state = 2}, [275] = {.lex_state = 9, .external_lex_state = 2}, [276] = {.lex_state = 9, .external_lex_state = 2}, [277] = {.lex_state = 9, .external_lex_state = 2}, @@ -14342,7 +14580,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [281] = {.lex_state = 9, .external_lex_state = 2}, [282] = {.lex_state = 9, .external_lex_state = 2}, [283] = {.lex_state = 9, .external_lex_state = 2}, - [284] = {.lex_state = 9, .external_lex_state = 2}, + [284] = {.lex_state = 67, .external_lex_state = 2}, [285] = {.lex_state = 9, .external_lex_state = 2}, [286] = {.lex_state = 9, .external_lex_state = 2}, [287] = {.lex_state = 9, .external_lex_state = 2}, @@ -14352,47 +14590,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [291] = {.lex_state = 9, .external_lex_state = 2}, [292] = {.lex_state = 9, .external_lex_state = 2}, [293] = {.lex_state = 9, .external_lex_state = 2}, - [294] = {.lex_state = 66, .external_lex_state = 2}, + [294] = {.lex_state = 9, .external_lex_state = 2}, [295] = {.lex_state = 9, .external_lex_state = 2}, [296] = {.lex_state = 9, .external_lex_state = 2}, [297] = {.lex_state = 9, .external_lex_state = 2}, - [298] = {.lex_state = 66, .external_lex_state = 2}, - [299] = {.lex_state = 66, .external_lex_state = 2}, - [300] = {.lex_state = 66, .external_lex_state = 2}, + [298] = {.lex_state = 9, .external_lex_state = 2}, + [299] = {.lex_state = 67, .external_lex_state = 2}, + [300] = {.lex_state = 9, .external_lex_state = 2}, [301] = {.lex_state = 9, .external_lex_state = 2}, [302] = {.lex_state = 9, .external_lex_state = 2}, [303] = {.lex_state = 9, .external_lex_state = 2}, [304] = {.lex_state = 9, .external_lex_state = 2}, - [305] = {.lex_state = 66, .external_lex_state = 2}, + [305] = {.lex_state = 9, .external_lex_state = 2}, [306] = {.lex_state = 9, .external_lex_state = 2}, - [307] = {.lex_state = 9, .external_lex_state = 2}, + [307] = {.lex_state = 67, .external_lex_state = 2}, [308] = {.lex_state = 9, .external_lex_state = 2}, [309] = {.lex_state = 9, .external_lex_state = 2}, [310] = {.lex_state = 9, .external_lex_state = 2}, - [311] = {.lex_state = 9, .external_lex_state = 2}, - [312] = {.lex_state = 9, .external_lex_state = 2}, + [311] = {.lex_state = 67, .external_lex_state = 2}, + [312] = {.lex_state = 67, .external_lex_state = 2}, [313] = {.lex_state = 9, .external_lex_state = 2}, - [314] = {.lex_state = 66, .external_lex_state = 2}, - [315] = {.lex_state = 66, .external_lex_state = 2}, - [316] = {.lex_state = 9, .external_lex_state = 2}, + [314] = {.lex_state = 9, .external_lex_state = 2}, + [315] = {.lex_state = 9, .external_lex_state = 2}, + [316] = {.lex_state = 67, .external_lex_state = 2}, [317] = {.lex_state = 9, .external_lex_state = 2}, - [318] = {.lex_state = 66, .external_lex_state = 2}, + [318] = {.lex_state = 67, .external_lex_state = 2}, [319] = {.lex_state = 10, .external_lex_state = 2}, [320] = {.lex_state = 10, .external_lex_state = 2}, [321] = {.lex_state = 10, .external_lex_state = 2}, [322] = {.lex_state = 10, .external_lex_state = 2}, [323] = {.lex_state = 10, .external_lex_state = 2}, [324] = {.lex_state = 10, .external_lex_state = 2}, - [325] = {.lex_state = 10, .external_lex_state = 2}, + [325] = {.lex_state = 9, .external_lex_state = 2}, [326] = {.lex_state = 10, .external_lex_state = 2}, [327] = {.lex_state = 10, .external_lex_state = 2}, - [328] = {.lex_state = 9, .external_lex_state = 2}, - [329] = {.lex_state = 10, .external_lex_state = 2}, - [330] = {.lex_state = 9, .external_lex_state = 2}, + [328] = {.lex_state = 10, .external_lex_state = 2}, + [329] = {.lex_state = 8, .external_lex_state = 2}, + [330] = {.lex_state = 10, .external_lex_state = 2}, [331] = {.lex_state = 10, .external_lex_state = 2}, [332] = {.lex_state = 10, .external_lex_state = 2}, - [333] = {.lex_state = 8, .external_lex_state = 2}, - [334] = {.lex_state = 10, .external_lex_state = 2}, + [333] = {.lex_state = 10, .external_lex_state = 2}, + [334] = {.lex_state = 9, .external_lex_state = 2}, [335] = {.lex_state = 9, .external_lex_state = 2}, [336] = {.lex_state = 10, .external_lex_state = 2}, [337] = {.lex_state = 10, .external_lex_state = 2}, @@ -14420,54 +14658,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [359] = {.lex_state = 11, .external_lex_state = 2}, [360] = {.lex_state = 11, .external_lex_state = 2}, [361] = {.lex_state = 11, .external_lex_state = 2}, - [362] = {.lex_state = 8, .external_lex_state = 2}, + [362] = {.lex_state = 11, .external_lex_state = 2}, [363] = {.lex_state = 11, .external_lex_state = 2}, [364] = {.lex_state = 11, .external_lex_state = 2}, [365] = {.lex_state = 11, .external_lex_state = 2}, [366] = {.lex_state = 11, .external_lex_state = 2}, - [367] = {.lex_state = 8, .external_lex_state = 2}, - [368] = {.lex_state = 11, .external_lex_state = 2}, + [367] = {.lex_state = 11, .external_lex_state = 2}, + [368] = {.lex_state = 8, .external_lex_state = 2}, [369] = {.lex_state = 11, .external_lex_state = 2}, [370] = {.lex_state = 11, .external_lex_state = 2}, [371] = {.lex_state = 11, .external_lex_state = 2}, [372] = {.lex_state = 11, .external_lex_state = 2}, - [373] = {.lex_state = 11, .external_lex_state = 2}, + [373] = {.lex_state = 8, .external_lex_state = 2}, [374] = {.lex_state = 11, .external_lex_state = 2}, - [375] = {.lex_state = 8, .external_lex_state = 2}, - [376] = {.lex_state = 8, .external_lex_state = 2}, - [377] = {.lex_state = 8, .external_lex_state = 2}, - [378] = {.lex_state = 11, .external_lex_state = 2}, + [375] = {.lex_state = 11, .external_lex_state = 2}, + [376] = {.lex_state = 11, .external_lex_state = 2}, + [377] = {.lex_state = 11, .external_lex_state = 2}, + [378] = {.lex_state = 8, .external_lex_state = 2}, [379] = {.lex_state = 11, .external_lex_state = 2}, - [380] = {.lex_state = 8, .external_lex_state = 2}, + [380] = {.lex_state = 11, .external_lex_state = 2}, [381] = {.lex_state = 11, .external_lex_state = 2}, [382] = {.lex_state = 11, .external_lex_state = 2}, - [383] = {.lex_state = 11, .external_lex_state = 2}, + [383] = {.lex_state = 8, .external_lex_state = 2}, [384] = {.lex_state = 11, .external_lex_state = 2}, [385] = {.lex_state = 11, .external_lex_state = 2}, [386] = {.lex_state = 11, .external_lex_state = 2}, [387] = {.lex_state = 11, .external_lex_state = 2}, - [388] = {.lex_state = 8, .external_lex_state = 2}, - [389] = {.lex_state = 11, .external_lex_state = 2}, - [390] = {.lex_state = 11, .external_lex_state = 2}, - [391] = {.lex_state = 1, .external_lex_state = 2}, + [388] = {.lex_state = 11, .external_lex_state = 2}, + [389] = {.lex_state = 8, .external_lex_state = 2}, + [390] = {.lex_state = 8, .external_lex_state = 2}, + [391] = {.lex_state = 8, .external_lex_state = 2}, [392] = {.lex_state = 11, .external_lex_state = 2}, [393] = {.lex_state = 11, .external_lex_state = 2}, [394] = {.lex_state = 11, .external_lex_state = 2}, - [395] = {.lex_state = 11, .external_lex_state = 2}, + [395] = {.lex_state = 8, .external_lex_state = 2}, [396] = {.lex_state = 11, .external_lex_state = 2}, [397] = {.lex_state = 8, .external_lex_state = 2}, [398] = {.lex_state = 8, .external_lex_state = 2}, [399] = {.lex_state = 11, .external_lex_state = 2}, - [400] = {.lex_state = 11, .external_lex_state = 2}, + [400] = {.lex_state = 8, .external_lex_state = 2}, [401] = {.lex_state = 8, .external_lex_state = 2}, - [402] = {.lex_state = 11, .external_lex_state = 2}, + [402] = {.lex_state = 8, .external_lex_state = 2}, [403] = {.lex_state = 11, .external_lex_state = 2}, - [404] = {.lex_state = 8, .external_lex_state = 2}, + [404] = {.lex_state = 1, .external_lex_state = 2}, [405] = {.lex_state = 8, .external_lex_state = 2}, [406] = {.lex_state = 11, .external_lex_state = 2}, - [407] = {.lex_state = 8, .external_lex_state = 2}, + [407] = {.lex_state = 11, .external_lex_state = 2}, [408] = {.lex_state = 11, .external_lex_state = 2}, - [409] = {.lex_state = 8, .external_lex_state = 2}, + [409] = {.lex_state = 11, .external_lex_state = 2}, [410] = {.lex_state = 9, .external_lex_state = 2}, [411] = {.lex_state = 9, .external_lex_state = 2}, [412] = {.lex_state = 9, .external_lex_state = 2}, @@ -14483,17 +14721,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [422] = {.lex_state = 8, .external_lex_state = 2}, [423] = {.lex_state = 8, .external_lex_state = 2}, [424] = {.lex_state = 8, .external_lex_state = 2}, - [425] = {.lex_state = 8, .external_lex_state = 2}, + [425] = {.lex_state = 2, .external_lex_state = 2}, [426] = {.lex_state = 8, .external_lex_state = 2}, - [427] = {.lex_state = 11, .external_lex_state = 2}, + [427] = {.lex_state = 8, .external_lex_state = 2}, [428] = {.lex_state = 8, .external_lex_state = 2}, - [429] = {.lex_state = 8, .external_lex_state = 2}, + [429] = {.lex_state = 11, .external_lex_state = 2}, [430] = {.lex_state = 8, .external_lex_state = 2}, - [431] = {.lex_state = 11, .external_lex_state = 2}, + [431] = {.lex_state = 8, .external_lex_state = 2}, [432] = {.lex_state = 8, .external_lex_state = 2}, [433] = {.lex_state = 8, .external_lex_state = 2}, - [434] = {.lex_state = 2, .external_lex_state = 2}, - [435] = {.lex_state = 8, .external_lex_state = 2}, + [434] = {.lex_state = 8, .external_lex_state = 2}, + [435] = {.lex_state = 11, .external_lex_state = 2}, [436] = {.lex_state = 8, .external_lex_state = 2}, [437] = {.lex_state = 8, .external_lex_state = 2}, [438] = {.lex_state = 8, .external_lex_state = 2}, @@ -14502,50 +14740,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [441] = {.lex_state = 8, .external_lex_state = 2}, [442] = {.lex_state = 8, .external_lex_state = 2}, [443] = {.lex_state = 8, .external_lex_state = 2}, - [444] = {.lex_state = 11, .external_lex_state = 2}, - [445] = {.lex_state = 11, .external_lex_state = 2}, - [446] = {.lex_state = 11, .external_lex_state = 2}, - [447] = {.lex_state = 11, .external_lex_state = 2}, + [444] = {.lex_state = 8, .external_lex_state = 2}, + [445] = {.lex_state = 8, .external_lex_state = 2}, + [446] = {.lex_state = 8, .external_lex_state = 2}, + [447] = {.lex_state = 8, .external_lex_state = 2}, [448] = {.lex_state = 11, .external_lex_state = 2}, [449] = {.lex_state = 11, .external_lex_state = 2}, - [450] = {.lex_state = 12, .external_lex_state = 2}, - [451] = {.lex_state = 1, .external_lex_state = 2}, - [452] = {.lex_state = 1, .external_lex_state = 2}, - [453] = {.lex_state = 1, .external_lex_state = 2}, - [454] = {.lex_state = 1, .external_lex_state = 2}, - [455] = {.lex_state = 1, .external_lex_state = 2}, - [456] = {.lex_state = 1, .external_lex_state = 2}, - [457] = {.lex_state = 1, .external_lex_state = 2}, - [458] = {.lex_state = 9, .external_lex_state = 2}, + [450] = {.lex_state = 11, .external_lex_state = 2}, + [451] = {.lex_state = 11, .external_lex_state = 2}, + [452] = {.lex_state = 11, .external_lex_state = 2}, + [453] = {.lex_state = 11, .external_lex_state = 2}, + [454] = {.lex_state = 11, .external_lex_state = 2}, + [455] = {.lex_state = 11, .external_lex_state = 2}, + [456] = {.lex_state = 11, .external_lex_state = 2}, + [457] = {.lex_state = 11, .external_lex_state = 2}, + [458] = {.lex_state = 12, .external_lex_state = 2}, [459] = {.lex_state = 1, .external_lex_state = 2}, [460] = {.lex_state = 1, .external_lex_state = 2}, - [461] = {.lex_state = 9, .external_lex_state = 2}, + [461] = {.lex_state = 1, .external_lex_state = 2}, [462] = {.lex_state = 1, .external_lex_state = 2}, [463] = {.lex_state = 1, .external_lex_state = 2}, [464] = {.lex_state = 1, .external_lex_state = 2}, - [465] = {.lex_state = 1, .external_lex_state = 2}, + [465] = {.lex_state = 9, .external_lex_state = 2}, [466] = {.lex_state = 1, .external_lex_state = 2}, [467] = {.lex_state = 1, .external_lex_state = 2}, [468] = {.lex_state = 1, .external_lex_state = 2}, - [469] = {.lex_state = 9, .external_lex_state = 2}, + [469] = {.lex_state = 1, .external_lex_state = 2}, [470] = {.lex_state = 1, .external_lex_state = 2}, [471] = {.lex_state = 1, .external_lex_state = 2}, - [472] = {.lex_state = 9, .external_lex_state = 2}, + [472] = {.lex_state = 1, .external_lex_state = 2}, [473] = {.lex_state = 1, .external_lex_state = 2}, [474] = {.lex_state = 1, .external_lex_state = 2}, [475] = {.lex_state = 1, .external_lex_state = 2}, - [476] = {.lex_state = 1, .external_lex_state = 2}, - [477] = {.lex_state = 1, .external_lex_state = 2}, + [476] = {.lex_state = 9, .external_lex_state = 2}, + [477] = {.lex_state = 9, .external_lex_state = 2}, [478] = {.lex_state = 1, .external_lex_state = 2}, [479] = {.lex_state = 1, .external_lex_state = 2}, - [480] = {.lex_state = 9, .external_lex_state = 2}, + [480] = {.lex_state = 1, .external_lex_state = 2}, [481] = {.lex_state = 9, .external_lex_state = 2}, - [482] = {.lex_state = 9, .external_lex_state = 2}, - [483] = {.lex_state = 9, .external_lex_state = 2}, - [484] = {.lex_state = 9, .external_lex_state = 2}, - [485] = {.lex_state = 9, .external_lex_state = 2}, - [486] = {.lex_state = 9, .external_lex_state = 2}, - [487] = {.lex_state = 9, .external_lex_state = 2}, + [482] = {.lex_state = 1, .external_lex_state = 2}, + [483] = {.lex_state = 1, .external_lex_state = 2}, + [484] = {.lex_state = 1, .external_lex_state = 2}, + [485] = {.lex_state = 1, .external_lex_state = 2}, + [486] = {.lex_state = 1, .external_lex_state = 2}, + [487] = {.lex_state = 1, .external_lex_state = 2}, [488] = {.lex_state = 9, .external_lex_state = 2}, [489] = {.lex_state = 9, .external_lex_state = 2}, [490] = {.lex_state = 9, .external_lex_state = 2}, @@ -14553,313 +14791,313 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [492] = {.lex_state = 9, .external_lex_state = 2}, [493] = {.lex_state = 9, .external_lex_state = 2}, [494] = {.lex_state = 9, .external_lex_state = 2}, - [495] = {.lex_state = 68, .external_lex_state = 2}, - [496] = {.lex_state = 68, .external_lex_state = 2}, - [497] = {.lex_state = 68, .external_lex_state = 2}, - [498] = {.lex_state = 68, .external_lex_state = 2}, - [499] = {.lex_state = 7, .external_lex_state = 3}, - [500] = {.lex_state = 68, .external_lex_state = 2}, - [501] = {.lex_state = 68, .external_lex_state = 2}, - [502] = {.lex_state = 68, .external_lex_state = 2}, - [503] = {.lex_state = 68, .external_lex_state = 2}, - [504] = {.lex_state = 68, .external_lex_state = 2}, - [505] = {.lex_state = 68, .external_lex_state = 2}, - [506] = {.lex_state = 68, .external_lex_state = 2}, - [507] = {.lex_state = 68, .external_lex_state = 2}, - [508] = {.lex_state = 68, .external_lex_state = 2}, - [509] = {.lex_state = 68, .external_lex_state = 2}, - [510] = {.lex_state = 68, .external_lex_state = 2}, - [511] = {.lex_state = 68, .external_lex_state = 2}, - [512] = {.lex_state = 68, .external_lex_state = 2}, - [513] = {.lex_state = 68, .external_lex_state = 2}, - [514] = {.lex_state = 68, .external_lex_state = 2}, - [515] = {.lex_state = 68, .external_lex_state = 2}, - [516] = {.lex_state = 68, .external_lex_state = 2}, - [517] = {.lex_state = 68, .external_lex_state = 2}, - [518] = {.lex_state = 68, .external_lex_state = 2}, - [519] = {.lex_state = 68, .external_lex_state = 2}, - [520] = {.lex_state = 68, .external_lex_state = 2}, - [521] = {.lex_state = 68, .external_lex_state = 2}, - [522] = {.lex_state = 68, .external_lex_state = 2}, - [523] = {.lex_state = 68, .external_lex_state = 2}, - [524] = {.lex_state = 68, .external_lex_state = 2}, - [525] = {.lex_state = 68, .external_lex_state = 2}, - [526] = {.lex_state = 68, .external_lex_state = 2}, - [527] = {.lex_state = 68, .external_lex_state = 2}, - [528] = {.lex_state = 68, .external_lex_state = 2}, - [529] = {.lex_state = 68, .external_lex_state = 2}, - [530] = {.lex_state = 68, .external_lex_state = 2}, - [531] = {.lex_state = 68, .external_lex_state = 2}, - [532] = {.lex_state = 68, .external_lex_state = 2}, - [533] = {.lex_state = 68, .external_lex_state = 2}, - [534] = {.lex_state = 68, .external_lex_state = 2}, - [535] = {.lex_state = 68, .external_lex_state = 2}, - [536] = {.lex_state = 68, .external_lex_state = 2}, - [537] = {.lex_state = 68, .external_lex_state = 2}, - [538] = {.lex_state = 68, .external_lex_state = 2}, - [539] = {.lex_state = 68, .external_lex_state = 2}, - [540] = {.lex_state = 68, .external_lex_state = 2}, - [541] = {.lex_state = 68, .external_lex_state = 2}, - [542] = {.lex_state = 68, .external_lex_state = 2}, - [543] = {.lex_state = 68, .external_lex_state = 2}, - [544] = {.lex_state = 68, .external_lex_state = 2}, - [545] = {.lex_state = 68, .external_lex_state = 2}, - [546] = {.lex_state = 68, .external_lex_state = 2}, - [547] = {.lex_state = 68, .external_lex_state = 2}, - [548] = {.lex_state = 68, .external_lex_state = 2}, - [549] = {.lex_state = 68, .external_lex_state = 2}, - [550] = {.lex_state = 68, .external_lex_state = 2}, - [551] = {.lex_state = 68, .external_lex_state = 2}, - [552] = {.lex_state = 68, .external_lex_state = 2}, - [553] = {.lex_state = 68, .external_lex_state = 2}, - [554] = {.lex_state = 68, .external_lex_state = 2}, - [555] = {.lex_state = 68, .external_lex_state = 2}, - [556] = {.lex_state = 68, .external_lex_state = 2}, - [557] = {.lex_state = 68, .external_lex_state = 2}, - [558] = {.lex_state = 68, .external_lex_state = 2}, - [559] = {.lex_state = 68, .external_lex_state = 2}, - [560] = {.lex_state = 68, .external_lex_state = 2}, - [561] = {.lex_state = 68, .external_lex_state = 2}, - [562] = {.lex_state = 68, .external_lex_state = 2}, - [563] = {.lex_state = 68, .external_lex_state = 2}, - [564] = {.lex_state = 68, .external_lex_state = 2}, - [565] = {.lex_state = 68, .external_lex_state = 2}, - [566] = {.lex_state = 68, .external_lex_state = 2}, - [567] = {.lex_state = 68, .external_lex_state = 2}, - [568] = {.lex_state = 68, .external_lex_state = 2}, - [569] = {.lex_state = 68, .external_lex_state = 2}, - [570] = {.lex_state = 68, .external_lex_state = 2}, - [571] = {.lex_state = 68, .external_lex_state = 2}, - [572] = {.lex_state = 68, .external_lex_state = 2}, - [573] = {.lex_state = 68, .external_lex_state = 2}, - [574] = {.lex_state = 68, .external_lex_state = 2}, - [575] = {.lex_state = 68, .external_lex_state = 2}, - [576] = {.lex_state = 68, .external_lex_state = 2}, - [577] = {.lex_state = 68, .external_lex_state = 2}, - [578] = {.lex_state = 68, .external_lex_state = 2}, - [579] = {.lex_state = 68, .external_lex_state = 2}, - [580] = {.lex_state = 68, .external_lex_state = 2}, - [581] = {.lex_state = 7, .external_lex_state = 3}, - [582] = {.lex_state = 68, .external_lex_state = 2}, - [583] = {.lex_state = 68, .external_lex_state = 2}, - [584] = {.lex_state = 68, .external_lex_state = 2}, - [585] = {.lex_state = 68, .external_lex_state = 2}, - [586] = {.lex_state = 68, .external_lex_state = 2}, - [587] = {.lex_state = 68, .external_lex_state = 2}, - [588] = {.lex_state = 68, .external_lex_state = 2}, - [589] = {.lex_state = 68, .external_lex_state = 2}, - [590] = {.lex_state = 68, .external_lex_state = 2}, - [591] = {.lex_state = 68, .external_lex_state = 2}, - [592] = {.lex_state = 68, .external_lex_state = 2}, - [593] = {.lex_state = 68, .external_lex_state = 2}, - [594] = {.lex_state = 68, .external_lex_state = 2}, - [595] = {.lex_state = 7, .external_lex_state = 3}, - [596] = {.lex_state = 68, .external_lex_state = 2}, - [597] = {.lex_state = 68, .external_lex_state = 2}, - [598] = {.lex_state = 68, .external_lex_state = 2}, - [599] = {.lex_state = 68, .external_lex_state = 2}, - [600] = {.lex_state = 68, .external_lex_state = 2}, - [601] = {.lex_state = 68, .external_lex_state = 2}, - [602] = {.lex_state = 68, .external_lex_state = 2}, - [603] = {.lex_state = 68, .external_lex_state = 2}, - [604] = {.lex_state = 68, .external_lex_state = 2}, - [605] = {.lex_state = 68, .external_lex_state = 2}, - [606] = {.lex_state = 68, .external_lex_state = 2}, - [607] = {.lex_state = 68, .external_lex_state = 2}, - [608] = {.lex_state = 68, .external_lex_state = 2}, - [609] = {.lex_state = 68, .external_lex_state = 2}, - [610] = {.lex_state = 68, .external_lex_state = 2}, - [611] = {.lex_state = 68, .external_lex_state = 2}, - [612] = {.lex_state = 68, .external_lex_state = 2}, - [613] = {.lex_state = 68, .external_lex_state = 2}, - [614] = {.lex_state = 68, .external_lex_state = 2}, - [615] = {.lex_state = 68, .external_lex_state = 2}, - [616] = {.lex_state = 68, .external_lex_state = 2}, - [617] = {.lex_state = 68, .external_lex_state = 2}, - [618] = {.lex_state = 68, .external_lex_state = 2}, - [619] = {.lex_state = 68, .external_lex_state = 2}, - [620] = {.lex_state = 68, .external_lex_state = 2}, - [621] = {.lex_state = 68, .external_lex_state = 2}, - [622] = {.lex_state = 68, .external_lex_state = 2}, - [623] = {.lex_state = 68, .external_lex_state = 2}, - [624] = {.lex_state = 68, .external_lex_state = 2}, - [625] = {.lex_state = 68, .external_lex_state = 2}, - [626] = {.lex_state = 68, .external_lex_state = 2}, - [627] = {.lex_state = 68, .external_lex_state = 2}, - [628] = {.lex_state = 68, .external_lex_state = 2}, - [629] = {.lex_state = 68, .external_lex_state = 2}, - [630] = {.lex_state = 68, .external_lex_state = 2}, - [631] = {.lex_state = 68, .external_lex_state = 2}, - [632] = {.lex_state = 68, .external_lex_state = 2}, - [633] = {.lex_state = 68, .external_lex_state = 2}, - [634] = {.lex_state = 68, .external_lex_state = 2}, - [635] = {.lex_state = 68, .external_lex_state = 2}, - [636] = {.lex_state = 9, .external_lex_state = 2}, - [637] = {.lex_state = 68, .external_lex_state = 2}, - [638] = {.lex_state = 68, .external_lex_state = 2}, - [639] = {.lex_state = 68, .external_lex_state = 2}, - [640] = {.lex_state = 68, .external_lex_state = 2}, - [641] = {.lex_state = 68, .external_lex_state = 2}, - [642] = {.lex_state = 68, .external_lex_state = 2}, - [643] = {.lex_state = 68, .external_lex_state = 2}, - [644] = {.lex_state = 68, .external_lex_state = 2}, - [645] = {.lex_state = 68, .external_lex_state = 2}, - [646] = {.lex_state = 68, .external_lex_state = 2}, - [647] = {.lex_state = 68, .external_lex_state = 2}, - [648] = {.lex_state = 68, .external_lex_state = 2}, - [649] = {.lex_state = 68, .external_lex_state = 2}, - [650] = {.lex_state = 68, .external_lex_state = 2}, - [651] = {.lex_state = 68, .external_lex_state = 2}, - [652] = {.lex_state = 68, .external_lex_state = 2}, - [653] = {.lex_state = 68, .external_lex_state = 2}, - [654] = {.lex_state = 68, .external_lex_state = 2}, - [655] = {.lex_state = 68, .external_lex_state = 2}, - [656] = {.lex_state = 68, .external_lex_state = 2}, - [657] = {.lex_state = 68, .external_lex_state = 2}, - [658] = {.lex_state = 68, .external_lex_state = 2}, - [659] = {.lex_state = 68, .external_lex_state = 2}, - [660] = {.lex_state = 68, .external_lex_state = 2}, - [661] = {.lex_state = 68, .external_lex_state = 2}, - [662] = {.lex_state = 68, .external_lex_state = 2}, - [663] = {.lex_state = 68, .external_lex_state = 2}, - [664] = {.lex_state = 68, .external_lex_state = 2}, - [665] = {.lex_state = 68, .external_lex_state = 2}, - [666] = {.lex_state = 68, .external_lex_state = 2}, - [667] = {.lex_state = 68, .external_lex_state = 2}, - [668] = {.lex_state = 68, .external_lex_state = 2}, - [669] = {.lex_state = 68, .external_lex_state = 2}, - [670] = {.lex_state = 68, .external_lex_state = 2}, - [671] = {.lex_state = 68, .external_lex_state = 2}, - [672] = {.lex_state = 68, .external_lex_state = 2}, - [673] = {.lex_state = 68, .external_lex_state = 2}, - [674] = {.lex_state = 68, .external_lex_state = 2}, - [675] = {.lex_state = 68, .external_lex_state = 2}, - [676] = {.lex_state = 68, .external_lex_state = 2}, - [677] = {.lex_state = 68, .external_lex_state = 2}, - [678] = {.lex_state = 68, .external_lex_state = 2}, - [679] = {.lex_state = 68, .external_lex_state = 2}, - [680] = {.lex_state = 68, .external_lex_state = 2}, - [681] = {.lex_state = 68, .external_lex_state = 2}, - [682] = {.lex_state = 68, .external_lex_state = 2}, - [683] = {.lex_state = 68, .external_lex_state = 2}, - [684] = {.lex_state = 68, .external_lex_state = 2}, - [685] = {.lex_state = 68, .external_lex_state = 2}, - [686] = {.lex_state = 68, .external_lex_state = 2}, - [687] = {.lex_state = 68, .external_lex_state = 2}, - [688] = {.lex_state = 68, .external_lex_state = 2}, - [689] = {.lex_state = 68, .external_lex_state = 2}, - [690] = {.lex_state = 68, .external_lex_state = 2}, - [691] = {.lex_state = 68, .external_lex_state = 2}, - [692] = {.lex_state = 68, .external_lex_state = 2}, - [693] = {.lex_state = 68, .external_lex_state = 2}, - [694] = {.lex_state = 68, .external_lex_state = 2}, - [695] = {.lex_state = 68, .external_lex_state = 2}, - [696] = {.lex_state = 68, .external_lex_state = 2}, - [697] = {.lex_state = 68, .external_lex_state = 2}, - [698] = {.lex_state = 68, .external_lex_state = 2}, - [699] = {.lex_state = 68, .external_lex_state = 2}, - [700] = {.lex_state = 68, .external_lex_state = 2}, - [701] = {.lex_state = 68, .external_lex_state = 2}, - [702] = {.lex_state = 68, .external_lex_state = 2}, - [703] = {.lex_state = 68, .external_lex_state = 2}, - [704] = {.lex_state = 68, .external_lex_state = 2}, - [705] = {.lex_state = 68, .external_lex_state = 2}, - [706] = {.lex_state = 68, .external_lex_state = 2}, - [707] = {.lex_state = 68, .external_lex_state = 2}, - [708] = {.lex_state = 68, .external_lex_state = 2}, - [709] = {.lex_state = 7, .external_lex_state = 3}, - [710] = {.lex_state = 68, .external_lex_state = 2}, - [711] = {.lex_state = 68, .external_lex_state = 2}, - [712] = {.lex_state = 7, .external_lex_state = 3}, - [713] = {.lex_state = 68, .external_lex_state = 2}, - [714] = {.lex_state = 68, .external_lex_state = 2}, - [715] = {.lex_state = 68, .external_lex_state = 2}, - [716] = {.lex_state = 68, .external_lex_state = 2}, - [717] = {.lex_state = 68, .external_lex_state = 2}, - [718] = {.lex_state = 68, .external_lex_state = 2}, - [719] = {.lex_state = 68, .external_lex_state = 2}, - [720] = {.lex_state = 68, .external_lex_state = 2}, - [721] = {.lex_state = 68, .external_lex_state = 2}, - [722] = {.lex_state = 68, .external_lex_state = 2}, - [723] = {.lex_state = 68, .external_lex_state = 2}, - [724] = {.lex_state = 68, .external_lex_state = 2}, - [725] = {.lex_state = 68, .external_lex_state = 2}, - [726] = {.lex_state = 68, .external_lex_state = 2}, - [727] = {.lex_state = 68, .external_lex_state = 2}, - [728] = {.lex_state = 68, .external_lex_state = 2}, - [729] = {.lex_state = 9, .external_lex_state = 2}, - [730] = {.lex_state = 68, .external_lex_state = 2}, - [731] = {.lex_state = 68, .external_lex_state = 2}, - [732] = {.lex_state = 68, .external_lex_state = 2}, - [733] = {.lex_state = 68, .external_lex_state = 2}, - [734] = {.lex_state = 68, .external_lex_state = 2}, - [735] = {.lex_state = 68, .external_lex_state = 2}, - [736] = {.lex_state = 68, .external_lex_state = 2}, - [737] = {.lex_state = 68, .external_lex_state = 2}, - [738] = {.lex_state = 68, .external_lex_state = 2}, - [739] = {.lex_state = 68, .external_lex_state = 2}, - [740] = {.lex_state = 68, .external_lex_state = 2}, - [741] = {.lex_state = 68, .external_lex_state = 2}, - [742] = {.lex_state = 68, .external_lex_state = 2}, - [743] = {.lex_state = 68, .external_lex_state = 2}, - [744] = {.lex_state = 68, .external_lex_state = 2}, - [745] = {.lex_state = 68, .external_lex_state = 2}, - [746] = {.lex_state = 68, .external_lex_state = 2}, - [747] = {.lex_state = 68, .external_lex_state = 2}, - [748] = {.lex_state = 68, .external_lex_state = 2}, - [749] = {.lex_state = 68, .external_lex_state = 2}, - [750] = {.lex_state = 68, .external_lex_state = 2}, - [751] = {.lex_state = 68, .external_lex_state = 2}, - [752] = {.lex_state = 68, .external_lex_state = 2}, - [753] = {.lex_state = 68, .external_lex_state = 2}, - [754] = {.lex_state = 68, .external_lex_state = 2}, - [755] = {.lex_state = 68, .external_lex_state = 2}, - [756] = {.lex_state = 68, .external_lex_state = 2}, - [757] = {.lex_state = 68, .external_lex_state = 2}, - [758] = {.lex_state = 68, .external_lex_state = 2}, - [759] = {.lex_state = 68, .external_lex_state = 2}, - [760] = {.lex_state = 68, .external_lex_state = 2}, - [761] = {.lex_state = 68, .external_lex_state = 2}, - [762] = {.lex_state = 68, .external_lex_state = 2}, - [763] = {.lex_state = 68, .external_lex_state = 2}, - [764] = {.lex_state = 68, .external_lex_state = 2}, - [765] = {.lex_state = 9, .external_lex_state = 2}, - [766] = {.lex_state = 9, .external_lex_state = 2}, - [767] = {.lex_state = 9, .external_lex_state = 2}, - [768] = {.lex_state = 9, .external_lex_state = 2}, - [769] = {.lex_state = 9, .external_lex_state = 2}, - [770] = {.lex_state = 9, .external_lex_state = 2}, - [771] = {.lex_state = 9, .external_lex_state = 2}, - [772] = {.lex_state = 13, .external_lex_state = 3}, - [773] = {.lex_state = 13, .external_lex_state = 3}, - [774] = {.lex_state = 13, .external_lex_state = 3}, - [775] = {.lex_state = 13, .external_lex_state = 3}, - [776] = {.lex_state = 13, .external_lex_state = 3}, - [777] = {.lex_state = 13, .external_lex_state = 3}, - [778] = {.lex_state = 13, .external_lex_state = 3}, - [779] = {.lex_state = 13, .external_lex_state = 3}, - [780] = {.lex_state = 13, .external_lex_state = 3}, + [495] = {.lex_state = 9, .external_lex_state = 2}, + [496] = {.lex_state = 9, .external_lex_state = 2}, + [497] = {.lex_state = 9, .external_lex_state = 2}, + [498] = {.lex_state = 9, .external_lex_state = 2}, + [499] = {.lex_state = 9, .external_lex_state = 2}, + [500] = {.lex_state = 9, .external_lex_state = 2}, + [501] = {.lex_state = 9, .external_lex_state = 2}, + [502] = {.lex_state = 9, .external_lex_state = 2}, + [503] = {.lex_state = 69, .external_lex_state = 2}, + [504] = {.lex_state = 69, .external_lex_state = 2}, + [505] = {.lex_state = 69, .external_lex_state = 2}, + [506] = {.lex_state = 7}, + [507] = {.lex_state = 69, .external_lex_state = 2}, + [508] = {.lex_state = 69, .external_lex_state = 2}, + [509] = {.lex_state = 69, .external_lex_state = 2}, + [510] = {.lex_state = 69, .external_lex_state = 2}, + [511] = {.lex_state = 69, .external_lex_state = 2}, + [512] = {.lex_state = 69, .external_lex_state = 2}, + [513] = {.lex_state = 69, .external_lex_state = 2}, + [514] = {.lex_state = 69, .external_lex_state = 2}, + [515] = {.lex_state = 69, .external_lex_state = 2}, + [516] = {.lex_state = 69, .external_lex_state = 2}, + [517] = {.lex_state = 69, .external_lex_state = 2}, + [518] = {.lex_state = 69, .external_lex_state = 2}, + [519] = {.lex_state = 69, .external_lex_state = 2}, + [520] = {.lex_state = 69, .external_lex_state = 2}, + [521] = {.lex_state = 69, .external_lex_state = 2}, + [522] = {.lex_state = 69, .external_lex_state = 2}, + [523] = {.lex_state = 69, .external_lex_state = 2}, + [524] = {.lex_state = 69, .external_lex_state = 2}, + [525] = {.lex_state = 69, .external_lex_state = 2}, + [526] = {.lex_state = 69, .external_lex_state = 2}, + [527] = {.lex_state = 69, .external_lex_state = 2}, + [528] = {.lex_state = 69, .external_lex_state = 2}, + [529] = {.lex_state = 69, .external_lex_state = 2}, + [530] = {.lex_state = 69, .external_lex_state = 2}, + [531] = {.lex_state = 69, .external_lex_state = 2}, + [532] = {.lex_state = 69, .external_lex_state = 2}, + [533] = {.lex_state = 69, .external_lex_state = 2}, + [534] = {.lex_state = 69, .external_lex_state = 2}, + [535] = {.lex_state = 69, .external_lex_state = 2}, + [536] = {.lex_state = 69, .external_lex_state = 2}, + [537] = {.lex_state = 69, .external_lex_state = 2}, + [538] = {.lex_state = 69, .external_lex_state = 2}, + [539] = {.lex_state = 69, .external_lex_state = 2}, + [540] = {.lex_state = 69, .external_lex_state = 2}, + [541] = {.lex_state = 69, .external_lex_state = 2}, + [542] = {.lex_state = 69, .external_lex_state = 2}, + [543] = {.lex_state = 69, .external_lex_state = 2}, + [544] = {.lex_state = 69, .external_lex_state = 2}, + [545] = {.lex_state = 69, .external_lex_state = 2}, + [546] = {.lex_state = 69, .external_lex_state = 2}, + [547] = {.lex_state = 69, .external_lex_state = 2}, + [548] = {.lex_state = 69, .external_lex_state = 2}, + [549] = {.lex_state = 69, .external_lex_state = 2}, + [550] = {.lex_state = 69, .external_lex_state = 2}, + [551] = {.lex_state = 7}, + [552] = {.lex_state = 69, .external_lex_state = 2}, + [553] = {.lex_state = 69, .external_lex_state = 2}, + [554] = {.lex_state = 69, .external_lex_state = 2}, + [555] = {.lex_state = 69, .external_lex_state = 2}, + [556] = {.lex_state = 69, .external_lex_state = 2}, + [557] = {.lex_state = 69, .external_lex_state = 2}, + [558] = {.lex_state = 69, .external_lex_state = 2}, + [559] = {.lex_state = 69, .external_lex_state = 2}, + [560] = {.lex_state = 69, .external_lex_state = 2}, + [561] = {.lex_state = 69, .external_lex_state = 2}, + [562] = {.lex_state = 69, .external_lex_state = 2}, + [563] = {.lex_state = 69, .external_lex_state = 2}, + [564] = {.lex_state = 69, .external_lex_state = 2}, + [565] = {.lex_state = 69, .external_lex_state = 2}, + [566] = {.lex_state = 69, .external_lex_state = 2}, + [567] = {.lex_state = 69, .external_lex_state = 2}, + [568] = {.lex_state = 69, .external_lex_state = 2}, + [569] = {.lex_state = 69, .external_lex_state = 2}, + [570] = {.lex_state = 69, .external_lex_state = 2}, + [571] = {.lex_state = 69, .external_lex_state = 2}, + [572] = {.lex_state = 69, .external_lex_state = 2}, + [573] = {.lex_state = 69, .external_lex_state = 2}, + [574] = {.lex_state = 69, .external_lex_state = 2}, + [575] = {.lex_state = 69, .external_lex_state = 2}, + [576] = {.lex_state = 69, .external_lex_state = 2}, + [577] = {.lex_state = 69, .external_lex_state = 2}, + [578] = {.lex_state = 7}, + [579] = {.lex_state = 69, .external_lex_state = 2}, + [580] = {.lex_state = 69, .external_lex_state = 2}, + [581] = {.lex_state = 69, .external_lex_state = 2}, + [582] = {.lex_state = 69, .external_lex_state = 2}, + [583] = {.lex_state = 69, .external_lex_state = 2}, + [584] = {.lex_state = 69, .external_lex_state = 2}, + [585] = {.lex_state = 69, .external_lex_state = 2}, + [586] = {.lex_state = 69, .external_lex_state = 2}, + [587] = {.lex_state = 69, .external_lex_state = 2}, + [588] = {.lex_state = 69, .external_lex_state = 2}, + [589] = {.lex_state = 7}, + [590] = {.lex_state = 69, .external_lex_state = 2}, + [591] = {.lex_state = 69, .external_lex_state = 2}, + [592] = {.lex_state = 69, .external_lex_state = 2}, + [593] = {.lex_state = 69, .external_lex_state = 2}, + [594] = {.lex_state = 69, .external_lex_state = 2}, + [595] = {.lex_state = 69, .external_lex_state = 2}, + [596] = {.lex_state = 69, .external_lex_state = 2}, + [597] = {.lex_state = 69, .external_lex_state = 2}, + [598] = {.lex_state = 69, .external_lex_state = 2}, + [599] = {.lex_state = 69, .external_lex_state = 2}, + [600] = {.lex_state = 69, .external_lex_state = 2}, + [601] = {.lex_state = 69, .external_lex_state = 2}, + [602] = {.lex_state = 69, .external_lex_state = 2}, + [603] = {.lex_state = 69, .external_lex_state = 2}, + [604] = {.lex_state = 69, .external_lex_state = 2}, + [605] = {.lex_state = 69, .external_lex_state = 2}, + [606] = {.lex_state = 69, .external_lex_state = 2}, + [607] = {.lex_state = 69, .external_lex_state = 2}, + [608] = {.lex_state = 69, .external_lex_state = 2}, + [609] = {.lex_state = 69, .external_lex_state = 2}, + [610] = {.lex_state = 69, .external_lex_state = 2}, + [611] = {.lex_state = 69, .external_lex_state = 2}, + [612] = {.lex_state = 69, .external_lex_state = 2}, + [613] = {.lex_state = 69, .external_lex_state = 2}, + [614] = {.lex_state = 69, .external_lex_state = 2}, + [615] = {.lex_state = 69, .external_lex_state = 2}, + [616] = {.lex_state = 69, .external_lex_state = 2}, + [617] = {.lex_state = 69, .external_lex_state = 2}, + [618] = {.lex_state = 69, .external_lex_state = 2}, + [619] = {.lex_state = 69, .external_lex_state = 2}, + [620] = {.lex_state = 69, .external_lex_state = 2}, + [621] = {.lex_state = 69, .external_lex_state = 2}, + [622] = {.lex_state = 69, .external_lex_state = 2}, + [623] = {.lex_state = 69, .external_lex_state = 2}, + [624] = {.lex_state = 69, .external_lex_state = 2}, + [625] = {.lex_state = 69, .external_lex_state = 2}, + [626] = {.lex_state = 69, .external_lex_state = 2}, + [627] = {.lex_state = 69, .external_lex_state = 2}, + [628] = {.lex_state = 69, .external_lex_state = 2}, + [629] = {.lex_state = 69, .external_lex_state = 2}, + [630] = {.lex_state = 69, .external_lex_state = 2}, + [631] = {.lex_state = 69, .external_lex_state = 2}, + [632] = {.lex_state = 69, .external_lex_state = 2}, + [633] = {.lex_state = 69, .external_lex_state = 2}, + [634] = {.lex_state = 69, .external_lex_state = 2}, + [635] = {.lex_state = 69, .external_lex_state = 2}, + [636] = {.lex_state = 69, .external_lex_state = 2}, + [637] = {.lex_state = 69, .external_lex_state = 2}, + [638] = {.lex_state = 69, .external_lex_state = 2}, + [639] = {.lex_state = 69, .external_lex_state = 2}, + [640] = {.lex_state = 69, .external_lex_state = 2}, + [641] = {.lex_state = 69, .external_lex_state = 2}, + [642] = {.lex_state = 69, .external_lex_state = 2}, + [643] = {.lex_state = 69, .external_lex_state = 2}, + [644] = {.lex_state = 69, .external_lex_state = 2}, + [645] = {.lex_state = 69, .external_lex_state = 2}, + [646] = {.lex_state = 69, .external_lex_state = 2}, + [647] = {.lex_state = 69, .external_lex_state = 2}, + [648] = {.lex_state = 69, .external_lex_state = 2}, + [649] = {.lex_state = 69, .external_lex_state = 2}, + [650] = {.lex_state = 69, .external_lex_state = 2}, + [651] = {.lex_state = 69, .external_lex_state = 2}, + [652] = {.lex_state = 69, .external_lex_state = 2}, + [653] = {.lex_state = 69, .external_lex_state = 2}, + [654] = {.lex_state = 7}, + [655] = {.lex_state = 69, .external_lex_state = 2}, + [656] = {.lex_state = 69, .external_lex_state = 2}, + [657] = {.lex_state = 69, .external_lex_state = 2}, + [658] = {.lex_state = 69, .external_lex_state = 2}, + [659] = {.lex_state = 69, .external_lex_state = 2}, + [660] = {.lex_state = 69, .external_lex_state = 2}, + [661] = {.lex_state = 69, .external_lex_state = 2}, + [662] = {.lex_state = 69, .external_lex_state = 2}, + [663] = {.lex_state = 69, .external_lex_state = 2}, + [664] = {.lex_state = 69, .external_lex_state = 2}, + [665] = {.lex_state = 69, .external_lex_state = 2}, + [666] = {.lex_state = 69, .external_lex_state = 2}, + [667] = {.lex_state = 69, .external_lex_state = 2}, + [668] = {.lex_state = 69, .external_lex_state = 2}, + [669] = {.lex_state = 69, .external_lex_state = 2}, + [670] = {.lex_state = 69, .external_lex_state = 2}, + [671] = {.lex_state = 69, .external_lex_state = 2}, + [672] = {.lex_state = 69, .external_lex_state = 2}, + [673] = {.lex_state = 69, .external_lex_state = 2}, + [674] = {.lex_state = 9, .external_lex_state = 2}, + [675] = {.lex_state = 69, .external_lex_state = 2}, + [676] = {.lex_state = 69, .external_lex_state = 2}, + [677] = {.lex_state = 69, .external_lex_state = 2}, + [678] = {.lex_state = 69, .external_lex_state = 2}, + [679] = {.lex_state = 69, .external_lex_state = 2}, + [680] = {.lex_state = 69, .external_lex_state = 2}, + [681] = {.lex_state = 69, .external_lex_state = 2}, + [682] = {.lex_state = 69, .external_lex_state = 2}, + [683] = {.lex_state = 69, .external_lex_state = 2}, + [684] = {.lex_state = 69, .external_lex_state = 2}, + [685] = {.lex_state = 69, .external_lex_state = 2}, + [686] = {.lex_state = 69, .external_lex_state = 2}, + [687] = {.lex_state = 69, .external_lex_state = 2}, + [688] = {.lex_state = 69, .external_lex_state = 2}, + [689] = {.lex_state = 69, .external_lex_state = 2}, + [690] = {.lex_state = 69, .external_lex_state = 2}, + [691] = {.lex_state = 69, .external_lex_state = 2}, + [692] = {.lex_state = 69, .external_lex_state = 2}, + [693] = {.lex_state = 69, .external_lex_state = 2}, + [694] = {.lex_state = 69, .external_lex_state = 2}, + [695] = {.lex_state = 69, .external_lex_state = 2}, + [696] = {.lex_state = 69, .external_lex_state = 2}, + [697] = {.lex_state = 69, .external_lex_state = 2}, + [698] = {.lex_state = 69, .external_lex_state = 2}, + [699] = {.lex_state = 69, .external_lex_state = 2}, + [700] = {.lex_state = 69, .external_lex_state = 2}, + [701] = {.lex_state = 69, .external_lex_state = 2}, + [702] = {.lex_state = 69, .external_lex_state = 2}, + [703] = {.lex_state = 69, .external_lex_state = 2}, + [704] = {.lex_state = 69, .external_lex_state = 2}, + [705] = {.lex_state = 69, .external_lex_state = 2}, + [706] = {.lex_state = 69, .external_lex_state = 2}, + [707] = {.lex_state = 69, .external_lex_state = 2}, + [708] = {.lex_state = 69, .external_lex_state = 2}, + [709] = {.lex_state = 69, .external_lex_state = 2}, + [710] = {.lex_state = 69, .external_lex_state = 2}, + [711] = {.lex_state = 69, .external_lex_state = 2}, + [712] = {.lex_state = 69, .external_lex_state = 2}, + [713] = {.lex_state = 69, .external_lex_state = 2}, + [714] = {.lex_state = 69, .external_lex_state = 2}, + [715] = {.lex_state = 69, .external_lex_state = 2}, + [716] = {.lex_state = 69, .external_lex_state = 2}, + [717] = {.lex_state = 69, .external_lex_state = 2}, + [718] = {.lex_state = 69, .external_lex_state = 2}, + [719] = {.lex_state = 69, .external_lex_state = 2}, + [720] = {.lex_state = 69, .external_lex_state = 2}, + [721] = {.lex_state = 69, .external_lex_state = 2}, + [722] = {.lex_state = 69, .external_lex_state = 2}, + [723] = {.lex_state = 69, .external_lex_state = 2}, + [724] = {.lex_state = 69, .external_lex_state = 2}, + [725] = {.lex_state = 69, .external_lex_state = 2}, + [726] = {.lex_state = 69, .external_lex_state = 2}, + [727] = {.lex_state = 69, .external_lex_state = 2}, + [728] = {.lex_state = 69, .external_lex_state = 2}, + [729] = {.lex_state = 69, .external_lex_state = 2}, + [730] = {.lex_state = 69, .external_lex_state = 2}, + [731] = {.lex_state = 69, .external_lex_state = 2}, + [732] = {.lex_state = 69, .external_lex_state = 2}, + [733] = {.lex_state = 69, .external_lex_state = 2}, + [734] = {.lex_state = 69, .external_lex_state = 2}, + [735] = {.lex_state = 69, .external_lex_state = 2}, + [736] = {.lex_state = 69, .external_lex_state = 2}, + [737] = {.lex_state = 69, .external_lex_state = 2}, + [738] = {.lex_state = 69, .external_lex_state = 2}, + [739] = {.lex_state = 69, .external_lex_state = 2}, + [740] = {.lex_state = 69, .external_lex_state = 2}, + [741] = {.lex_state = 69, .external_lex_state = 2}, + [742] = {.lex_state = 69, .external_lex_state = 2}, + [743] = {.lex_state = 69, .external_lex_state = 2}, + [744] = {.lex_state = 69, .external_lex_state = 2}, + [745] = {.lex_state = 69, .external_lex_state = 2}, + [746] = {.lex_state = 69, .external_lex_state = 2}, + [747] = {.lex_state = 69, .external_lex_state = 2}, + [748] = {.lex_state = 69, .external_lex_state = 2}, + [749] = {.lex_state = 69, .external_lex_state = 2}, + [750] = {.lex_state = 69, .external_lex_state = 2}, + [751] = {.lex_state = 69, .external_lex_state = 2}, + [752] = {.lex_state = 69, .external_lex_state = 2}, + [753] = {.lex_state = 69, .external_lex_state = 2}, + [754] = {.lex_state = 69, .external_lex_state = 2}, + [755] = {.lex_state = 69, .external_lex_state = 2}, + [756] = {.lex_state = 69, .external_lex_state = 2}, + [757] = {.lex_state = 69, .external_lex_state = 2}, + [758] = {.lex_state = 69, .external_lex_state = 2}, + [759] = {.lex_state = 9, .external_lex_state = 2}, + [760] = {.lex_state = 69, .external_lex_state = 2}, + [761] = {.lex_state = 69, .external_lex_state = 2}, + [762] = {.lex_state = 69, .external_lex_state = 2}, + [763] = {.lex_state = 69, .external_lex_state = 2}, + [764] = {.lex_state = 69, .external_lex_state = 2}, + [765] = {.lex_state = 69, .external_lex_state = 2}, + [766] = {.lex_state = 69, .external_lex_state = 2}, + [767] = {.lex_state = 69, .external_lex_state = 2}, + [768] = {.lex_state = 69, .external_lex_state = 2}, + [769] = {.lex_state = 69, .external_lex_state = 2}, + [770] = {.lex_state = 69, .external_lex_state = 2}, + [771] = {.lex_state = 69, .external_lex_state = 2}, + [772] = {.lex_state = 69, .external_lex_state = 2}, + [773] = {.lex_state = 69, .external_lex_state = 2}, + [774] = {.lex_state = 69, .external_lex_state = 2}, + [775] = {.lex_state = 9, .external_lex_state = 2}, + [776] = {.lex_state = 9, .external_lex_state = 2}, + [777] = {.lex_state = 9, .external_lex_state = 2}, + [778] = {.lex_state = 9, .external_lex_state = 2}, + [779] = {.lex_state = 9, .external_lex_state = 2}, + [780] = {.lex_state = 9, .external_lex_state = 2}, [781] = {.lex_state = 9, .external_lex_state = 2}, - [782] = {.lex_state = 13, .external_lex_state = 3}, - [783] = {.lex_state = 9, .external_lex_state = 2}, - [784] = {.lex_state = 9, .external_lex_state = 2}, - [785] = {.lex_state = 9, .external_lex_state = 2}, - [786] = {.lex_state = 9, .external_lex_state = 2}, - [787] = {.lex_state = 9, .external_lex_state = 2}, - [788] = {.lex_state = 13, .external_lex_state = 3}, - [789] = {.lex_state = 9, .external_lex_state = 2}, + [782] = {.lex_state = 13}, + [783] = {.lex_state = 13}, + [784] = {.lex_state = 13}, + [785] = {.lex_state = 13}, + [786] = {.lex_state = 13}, + [787] = {.lex_state = 13}, + [788] = {.lex_state = 13}, + [789] = {.lex_state = 13}, [790] = {.lex_state = 9, .external_lex_state = 2}, [791] = {.lex_state = 9, .external_lex_state = 2}, [792] = {.lex_state = 9, .external_lex_state = 2}, [793] = {.lex_state = 9, .external_lex_state = 2}, [794] = {.lex_state = 9, .external_lex_state = 2}, - [795] = {.lex_state = 9, .external_lex_state = 2}, - [796] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 13}, + [796] = {.lex_state = 13}, [797] = {.lex_state = 9, .external_lex_state = 2}, [798] = {.lex_state = 9, .external_lex_state = 2}, [799] = {.lex_state = 9, .external_lex_state = 2}, [800] = {.lex_state = 9, .external_lex_state = 2}, - [801] = {.lex_state = 9, .external_lex_state = 2}, + [801] = {.lex_state = 13}, [802] = {.lex_state = 9, .external_lex_state = 2}, [803] = {.lex_state = 9, .external_lex_state = 2}, [804] = {.lex_state = 9, .external_lex_state = 2}, @@ -14867,2671 +15105,2714 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 9, .external_lex_state = 2}, [807] = {.lex_state = 9, .external_lex_state = 2}, [808] = {.lex_state = 9, .external_lex_state = 2}, - [809] = {.lex_state = 13, .external_lex_state = 3}, - [810] = {.lex_state = 13, .external_lex_state = 3}, - [811] = {.lex_state = 9, .external_lex_state = 2}, - [812] = {.lex_state = 13, .external_lex_state = 3}, + [809] = {.lex_state = 9, .external_lex_state = 2}, + [810] = {.lex_state = 9, .external_lex_state = 2}, + [811] = {.lex_state = 13}, + [812] = {.lex_state = 9, .external_lex_state = 2}, [813] = {.lex_state = 9, .external_lex_state = 2}, [814] = {.lex_state = 9, .external_lex_state = 2}, [815] = {.lex_state = 9, .external_lex_state = 2}, [816] = {.lex_state = 9, .external_lex_state = 2}, [817] = {.lex_state = 9, .external_lex_state = 2}, [818] = {.lex_state = 9, .external_lex_state = 2}, - [819] = {.lex_state = 9, .external_lex_state = 2}, + [819] = {.lex_state = 13}, [820] = {.lex_state = 9, .external_lex_state = 2}, - [821] = {.lex_state = 9, .external_lex_state = 2}, + [821] = {.lex_state = 13}, [822] = {.lex_state = 9, .external_lex_state = 2}, [823] = {.lex_state = 9, .external_lex_state = 2}, [824] = {.lex_state = 9, .external_lex_state = 2}, [825] = {.lex_state = 9, .external_lex_state = 2}, [826] = {.lex_state = 9, .external_lex_state = 2}, - [827] = {.lex_state = 13, .external_lex_state = 3}, + [827] = {.lex_state = 13}, [828] = {.lex_state = 9, .external_lex_state = 2}, [829] = {.lex_state = 9, .external_lex_state = 2}, [830] = {.lex_state = 9, .external_lex_state = 2}, [831] = {.lex_state = 9, .external_lex_state = 2}, [832] = {.lex_state = 9, .external_lex_state = 2}, [833] = {.lex_state = 9, .external_lex_state = 2}, - [834] = {.lex_state = 13, .external_lex_state = 3}, - [835] = {.lex_state = 13, .external_lex_state = 3}, + [834] = {.lex_state = 9, .external_lex_state = 2}, + [835] = {.lex_state = 9, .external_lex_state = 2}, [836] = {.lex_state = 9, .external_lex_state = 2}, - [837] = {.lex_state = 13, .external_lex_state = 3}, - [838] = {.lex_state = 13, .external_lex_state = 3}, - [839] = {.lex_state = 13, .external_lex_state = 3}, - [840] = {.lex_state = 13, .external_lex_state = 3}, - [841] = {.lex_state = 13, .external_lex_state = 3}, - [842] = {.lex_state = 13, .external_lex_state = 3}, - [843] = {.lex_state = 13, .external_lex_state = 3}, - [844] = {.lex_state = 13, .external_lex_state = 3}, - [845] = {.lex_state = 13, .external_lex_state = 3}, - [846] = {.lex_state = 13, .external_lex_state = 3}, - [847] = {.lex_state = 13, .external_lex_state = 3}, - [848] = {.lex_state = 13, .external_lex_state = 3}, - [849] = {.lex_state = 13, .external_lex_state = 3}, - [850] = {.lex_state = 13, .external_lex_state = 3}, - [851] = {.lex_state = 13, .external_lex_state = 3}, - [852] = {.lex_state = 13, .external_lex_state = 3}, - [853] = {.lex_state = 13, .external_lex_state = 3}, - [854] = {.lex_state = 13, .external_lex_state = 3}, - [855] = {.lex_state = 13, .external_lex_state = 3}, - [856] = {.lex_state = 13, .external_lex_state = 3}, - [857] = {.lex_state = 13, .external_lex_state = 3}, - [858] = {.lex_state = 13, .external_lex_state = 3}, - [859] = {.lex_state = 13, .external_lex_state = 3}, - [860] = {.lex_state = 13, .external_lex_state = 3}, - [861] = {.lex_state = 13, .external_lex_state = 3}, - [862] = {.lex_state = 13, .external_lex_state = 3}, - [863] = {.lex_state = 13, .external_lex_state = 3}, - [864] = {.lex_state = 13, .external_lex_state = 3}, - [865] = {.lex_state = 13, .external_lex_state = 3}, - [866] = {.lex_state = 13, .external_lex_state = 3}, - [867] = {.lex_state = 13, .external_lex_state = 3}, - [868] = {.lex_state = 13, .external_lex_state = 3}, - [869] = {.lex_state = 13, .external_lex_state = 3}, - [870] = {.lex_state = 13, .external_lex_state = 3}, - [871] = {.lex_state = 13, .external_lex_state = 3}, - [872] = {.lex_state = 13, .external_lex_state = 3}, - [873] = {.lex_state = 13, .external_lex_state = 3}, - [874] = {.lex_state = 13, .external_lex_state = 3}, - [875] = {.lex_state = 13, .external_lex_state = 3}, - [876] = {.lex_state = 13, .external_lex_state = 3}, - [877] = {.lex_state = 13, .external_lex_state = 3}, - [878] = {.lex_state = 13, .external_lex_state = 3}, - [879] = {.lex_state = 13, .external_lex_state = 3}, - [880] = {.lex_state = 13, .external_lex_state = 3}, - [881] = {.lex_state = 13, .external_lex_state = 3}, - [882] = {.lex_state = 13, .external_lex_state = 3}, - [883] = {.lex_state = 13, .external_lex_state = 3}, - [884] = {.lex_state = 13, .external_lex_state = 3}, - [885] = {.lex_state = 13, .external_lex_state = 3}, - [886] = {.lex_state = 13, .external_lex_state = 3}, - [887] = {.lex_state = 13, .external_lex_state = 3}, - [888] = {.lex_state = 13, .external_lex_state = 3}, - [889] = {.lex_state = 13, .external_lex_state = 3}, - [890] = {.lex_state = 13, .external_lex_state = 3}, - [891] = {.lex_state = 13, .external_lex_state = 3}, - [892] = {.lex_state = 13, .external_lex_state = 3}, - [893] = {.lex_state = 13, .external_lex_state = 3}, - [894] = {.lex_state = 13, .external_lex_state = 3}, - [895] = {.lex_state = 13, .external_lex_state = 3}, - [896] = {.lex_state = 13, .external_lex_state = 3}, - [897] = {.lex_state = 13, .external_lex_state = 3}, - [898] = {.lex_state = 13, .external_lex_state = 3}, - [899] = {.lex_state = 13, .external_lex_state = 3}, - [900] = {.lex_state = 13, .external_lex_state = 3}, - [901] = {.lex_state = 13, .external_lex_state = 3}, - [902] = {.lex_state = 13, .external_lex_state = 3}, - [903] = {.lex_state = 13, .external_lex_state = 3}, - [904] = {.lex_state = 13, .external_lex_state = 3}, - [905] = {.lex_state = 13, .external_lex_state = 3}, - [906] = {.lex_state = 13, .external_lex_state = 3}, - [907] = {.lex_state = 13, .external_lex_state = 3}, - [908] = {.lex_state = 13, .external_lex_state = 3}, - [909] = {.lex_state = 13, .external_lex_state = 3}, - [910] = {.lex_state = 13, .external_lex_state = 3}, - [911] = {.lex_state = 13, .external_lex_state = 3}, - [912] = {.lex_state = 13, .external_lex_state = 3}, - [913] = {.lex_state = 13, .external_lex_state = 3}, - [914] = {.lex_state = 13, .external_lex_state = 3}, - [915] = {.lex_state = 13, .external_lex_state = 3}, - [916] = {.lex_state = 13, .external_lex_state = 3}, - [917] = {.lex_state = 13, .external_lex_state = 3}, - [918] = {.lex_state = 13, .external_lex_state = 3}, - [919] = {.lex_state = 13, .external_lex_state = 3}, - [920] = {.lex_state = 13, .external_lex_state = 3}, - [921] = {.lex_state = 13, .external_lex_state = 3}, - [922] = {.lex_state = 13, .external_lex_state = 3}, - [923] = {.lex_state = 13, .external_lex_state = 3}, - [924] = {.lex_state = 13, .external_lex_state = 3}, - [925] = {.lex_state = 13, .external_lex_state = 3}, - [926] = {.lex_state = 13, .external_lex_state = 3}, - [927] = {.lex_state = 13, .external_lex_state = 3}, - [928] = {.lex_state = 13, .external_lex_state = 3}, - [929] = {.lex_state = 13, .external_lex_state = 3}, - [930] = {.lex_state = 13, .external_lex_state = 3}, - [931] = {.lex_state = 13, .external_lex_state = 3}, - [932] = {.lex_state = 13, .external_lex_state = 3}, - [933] = {.lex_state = 13, .external_lex_state = 3}, - [934] = {.lex_state = 13, .external_lex_state = 3}, - [935] = {.lex_state = 13, .external_lex_state = 3}, - [936] = {.lex_state = 13, .external_lex_state = 3}, - [937] = {.lex_state = 13, .external_lex_state = 3}, - [938] = {.lex_state = 13, .external_lex_state = 3}, - [939] = {.lex_state = 13, .external_lex_state = 3}, - [940] = {.lex_state = 13, .external_lex_state = 3}, - [941] = {.lex_state = 13, .external_lex_state = 3}, - [942] = {.lex_state = 13, .external_lex_state = 3}, - [943] = {.lex_state = 13, .external_lex_state = 3}, - [944] = {.lex_state = 13, .external_lex_state = 3}, - [945] = {.lex_state = 13, .external_lex_state = 3}, - [946] = {.lex_state = 13, .external_lex_state = 3}, - [947] = {.lex_state = 13, .external_lex_state = 3}, - [948] = {.lex_state = 13, .external_lex_state = 3}, - [949] = {.lex_state = 13, .external_lex_state = 3}, - [950] = {.lex_state = 13, .external_lex_state = 3}, - [951] = {.lex_state = 13, .external_lex_state = 3}, - [952] = {.lex_state = 13, .external_lex_state = 3}, - [953] = {.lex_state = 13, .external_lex_state = 3}, - [954] = {.lex_state = 13, .external_lex_state = 3}, - [955] = {.lex_state = 13, .external_lex_state = 3}, - [956] = {.lex_state = 13, .external_lex_state = 3}, - [957] = {.lex_state = 13, .external_lex_state = 3}, - [958] = {.lex_state = 13, .external_lex_state = 3}, - [959] = {.lex_state = 13, .external_lex_state = 3}, - [960] = {.lex_state = 13, .external_lex_state = 3}, - [961] = {.lex_state = 13, .external_lex_state = 3}, - [962] = {.lex_state = 13, .external_lex_state = 3}, - [963] = {.lex_state = 13, .external_lex_state = 3}, - [964] = {.lex_state = 13, .external_lex_state = 3}, - [965] = {.lex_state = 13, .external_lex_state = 3}, - [966] = {.lex_state = 13, .external_lex_state = 3}, - [967] = {.lex_state = 13, .external_lex_state = 3}, - [968] = {.lex_state = 13, .external_lex_state = 3}, - [969] = {.lex_state = 13, .external_lex_state = 3}, - [970] = {.lex_state = 13, .external_lex_state = 3}, - [971] = {.lex_state = 13, .external_lex_state = 3}, - [972] = {.lex_state = 13, .external_lex_state = 3}, - [973] = {.lex_state = 13, .external_lex_state = 3}, - [974] = {.lex_state = 13, .external_lex_state = 3}, - [975] = {.lex_state = 13, .external_lex_state = 3}, - [976] = {.lex_state = 13, .external_lex_state = 3}, - [977] = {.lex_state = 13, .external_lex_state = 3}, - [978] = {.lex_state = 13, .external_lex_state = 3}, - [979] = {.lex_state = 13, .external_lex_state = 3}, - [980] = {.lex_state = 13, .external_lex_state = 3}, - [981] = {.lex_state = 13, .external_lex_state = 3}, - [982] = {.lex_state = 13, .external_lex_state = 3}, - [983] = {.lex_state = 13, .external_lex_state = 3}, - [984] = {.lex_state = 13, .external_lex_state = 3}, - [985] = {.lex_state = 13, .external_lex_state = 3}, - [986] = {.lex_state = 13, .external_lex_state = 3}, - [987] = {.lex_state = 13, .external_lex_state = 3}, - [988] = {.lex_state = 13, .external_lex_state = 3}, - [989] = {.lex_state = 13, .external_lex_state = 3}, - [990] = {.lex_state = 13, .external_lex_state = 3}, - [991] = {.lex_state = 13, .external_lex_state = 3}, - [992] = {.lex_state = 13, .external_lex_state = 3}, - [993] = {.lex_state = 13, .external_lex_state = 3}, - [994] = {.lex_state = 13, .external_lex_state = 3}, - [995] = {.lex_state = 12, .external_lex_state = 2}, - [996] = {.lex_state = 12, .external_lex_state = 2}, - [997] = {.lex_state = 12, .external_lex_state = 2}, - [998] = {.lex_state = 9, .external_lex_state = 2}, - [999] = {.lex_state = 10, .external_lex_state = 2}, - [1000] = {.lex_state = 13, .external_lex_state = 3}, - [1001] = {.lex_state = 3, .external_lex_state = 3}, - [1002] = {.lex_state = 3, .external_lex_state = 3}, - [1003] = {.lex_state = 3, .external_lex_state = 3}, - [1004] = {.lex_state = 3, .external_lex_state = 3}, - [1005] = {.lex_state = 3, .external_lex_state = 3}, - [1006] = {.lex_state = 3, .external_lex_state = 3}, - [1007] = {.lex_state = 7, .external_lex_state = 3}, - [1008] = {.lex_state = 3, .external_lex_state = 3}, - [1009] = {.lex_state = 3, .external_lex_state = 3}, - [1010] = {.lex_state = 7, .external_lex_state = 3}, - [1011] = {.lex_state = 7, .external_lex_state = 3}, - [1012] = {.lex_state = 3, .external_lex_state = 3}, - [1013] = {.lex_state = 7, .external_lex_state = 3}, - [1014] = {.lex_state = 3, .external_lex_state = 3}, - [1015] = {.lex_state = 3, .external_lex_state = 3}, - [1016] = {.lex_state = 7, .external_lex_state = 3}, - [1017] = {.lex_state = 3, .external_lex_state = 3}, - [1018] = {.lex_state = 7, .external_lex_state = 3}, - [1019] = {.lex_state = 7, .external_lex_state = 3}, - [1020] = {.lex_state = 7, .external_lex_state = 3}, - [1021] = {.lex_state = 7, .external_lex_state = 3}, - [1022] = {.lex_state = 9, .external_lex_state = 2}, - [1023] = {.lex_state = 4, .external_lex_state = 3}, - [1024] = {.lex_state = 4, .external_lex_state = 3}, - [1025] = {.lex_state = 4, .external_lex_state = 3}, - [1026] = {.lex_state = 21, .external_lex_state = 3}, - [1027] = {.lex_state = 21, .external_lex_state = 3}, - [1028] = {.lex_state = 21, .external_lex_state = 3}, - [1029] = {.lex_state = 4, .external_lex_state = 3}, - [1030] = {.lex_state = 9, .external_lex_state = 2}, - [1031] = {.lex_state = 21, .external_lex_state = 3}, - [1032] = {.lex_state = 4, .external_lex_state = 3}, - [1033] = {.lex_state = 21, .external_lex_state = 3}, - [1034] = {.lex_state = 4, .external_lex_state = 3}, - [1035] = {.lex_state = 4, .external_lex_state = 3}, - [1036] = {.lex_state = 17, .external_lex_state = 3}, - [1037] = {.lex_state = 4, .external_lex_state = 3}, - [1038] = {.lex_state = 4, .external_lex_state = 3}, - [1039] = {.lex_state = 4, .external_lex_state = 3}, - [1040] = {.lex_state = 4, .external_lex_state = 3}, - [1041] = {.lex_state = 3, .external_lex_state = 3}, - [1042] = {.lex_state = 4, .external_lex_state = 3}, - [1043] = {.lex_state = 17, .external_lex_state = 3}, - [1044] = {.lex_state = 17, .external_lex_state = 3}, - [1045] = {.lex_state = 4, .external_lex_state = 3}, - [1046] = {.lex_state = 17, .external_lex_state = 3}, - [1047] = {.lex_state = 4, .external_lex_state = 3}, - [1048] = {.lex_state = 17, .external_lex_state = 3}, - [1049] = {.lex_state = 4, .external_lex_state = 3}, - [1050] = {.lex_state = 4, .external_lex_state = 3}, - [1051] = {.lex_state = 4, .external_lex_state = 3}, - [1052] = {.lex_state = 17, .external_lex_state = 3}, - [1053] = {.lex_state = 4, .external_lex_state = 3}, - [1054] = {.lex_state = 9, .external_lex_state = 2}, - [1055] = {.lex_state = 17, .external_lex_state = 3}, - [1056] = {.lex_state = 4, .external_lex_state = 3}, - [1057] = {.lex_state = 17, .external_lex_state = 3}, - [1058] = {.lex_state = 18, .external_lex_state = 3}, - [1059] = {.lex_state = 4, .external_lex_state = 3}, - [1060] = {.lex_state = 13, .external_lex_state = 3}, - [1061] = {.lex_state = 17, .external_lex_state = 3}, - [1062] = {.lex_state = 9, .external_lex_state = 2}, - [1063] = {.lex_state = 13, .external_lex_state = 3}, - [1064] = {.lex_state = 4, .external_lex_state = 3}, - [1065] = {.lex_state = 4, .external_lex_state = 3}, - [1066] = {.lex_state = 18, .external_lex_state = 3}, - [1067] = {.lex_state = 4, .external_lex_state = 3}, - [1068] = {.lex_state = 4, .external_lex_state = 3}, - [1069] = {.lex_state = 17, .external_lex_state = 3}, - [1070] = {.lex_state = 17, .external_lex_state = 3}, - [1071] = {.lex_state = 4, .external_lex_state = 3}, - [1072] = {.lex_state = 4, .external_lex_state = 3}, - [1073] = {.lex_state = 4, .external_lex_state = 3}, - [1074] = {.lex_state = 17, .external_lex_state = 3}, - [1075] = {.lex_state = 4, .external_lex_state = 3}, - [1076] = {.lex_state = 7, .external_lex_state = 3}, - [1077] = {.lex_state = 4, .external_lex_state = 3}, - [1078] = {.lex_state = 4, .external_lex_state = 3}, - [1079] = {.lex_state = 7, .external_lex_state = 3}, - [1080] = {.lex_state = 7, .external_lex_state = 3}, - [1081] = {.lex_state = 7, .external_lex_state = 3}, - [1082] = {.lex_state = 7, .external_lex_state = 3}, - [1083] = {.lex_state = 7, .external_lex_state = 3}, - [1084] = {.lex_state = 7, .external_lex_state = 3}, - [1085] = {.lex_state = 7, .external_lex_state = 3}, - [1086] = {.lex_state = 7, .external_lex_state = 3}, - [1087] = {.lex_state = 7, .external_lex_state = 3}, - [1088] = {.lex_state = 7, .external_lex_state = 3}, - [1089] = {.lex_state = 7, .external_lex_state = 3}, - [1090] = {.lex_state = 7, .external_lex_state = 3}, - [1091] = {.lex_state = 7, .external_lex_state = 3}, - [1092] = {.lex_state = 7, .external_lex_state = 3}, - [1093] = {.lex_state = 7, .external_lex_state = 3}, - [1094] = {.lex_state = 7, .external_lex_state = 3}, - [1095] = {.lex_state = 7, .external_lex_state = 3}, - [1096] = {.lex_state = 7, .external_lex_state = 3}, - [1097] = {.lex_state = 4, .external_lex_state = 3}, - [1098] = {.lex_state = 7, .external_lex_state = 3}, - [1099] = {.lex_state = 7, .external_lex_state = 3}, - [1100] = {.lex_state = 4, .external_lex_state = 3}, - [1101] = {.lex_state = 4, .external_lex_state = 3}, - [1102] = {.lex_state = 7, .external_lex_state = 3}, - [1103] = {.lex_state = 7, .external_lex_state = 3}, - [1104] = {.lex_state = 7, .external_lex_state = 3}, - [1105] = {.lex_state = 7, .external_lex_state = 3}, - [1106] = {.lex_state = 7, .external_lex_state = 3}, - [1107] = {.lex_state = 7, .external_lex_state = 3}, - [1108] = {.lex_state = 7, .external_lex_state = 3}, - [1109] = {.lex_state = 7, .external_lex_state = 3}, - [1110] = {.lex_state = 7, .external_lex_state = 3}, - [1111] = {.lex_state = 7, .external_lex_state = 3}, - [1112] = {.lex_state = 7, .external_lex_state = 3}, - [1113] = {.lex_state = 4, .external_lex_state = 3}, - [1114] = {.lex_state = 7, .external_lex_state = 3}, - [1115] = {.lex_state = 7, .external_lex_state = 3}, - [1116] = {.lex_state = 7, .external_lex_state = 3}, - [1117] = {.lex_state = 4, .external_lex_state = 3}, - [1118] = {.lex_state = 7, .external_lex_state = 3}, - [1119] = {.lex_state = 7, .external_lex_state = 3}, - [1120] = {.lex_state = 7, .external_lex_state = 3}, - [1121] = {.lex_state = 4, .external_lex_state = 3}, - [1122] = {.lex_state = 7, .external_lex_state = 3}, - [1123] = {.lex_state = 7, .external_lex_state = 3}, - [1124] = {.lex_state = 4, .external_lex_state = 3}, - [1125] = {.lex_state = 7, .external_lex_state = 3}, - [1126] = {.lex_state = 7, .external_lex_state = 3}, - [1127] = {.lex_state = 7, .external_lex_state = 3}, - [1128] = {.lex_state = 7, .external_lex_state = 3}, - [1129] = {.lex_state = 7, .external_lex_state = 3}, - [1130] = {.lex_state = 7, .external_lex_state = 3}, - [1131] = {.lex_state = 4, .external_lex_state = 3}, - [1132] = {.lex_state = 7, .external_lex_state = 3}, - [1133] = {.lex_state = 4, .external_lex_state = 3}, - [1134] = {.lex_state = 7, .external_lex_state = 3}, - [1135] = {.lex_state = 4, .external_lex_state = 3}, - [1136] = {.lex_state = 4, .external_lex_state = 3}, - [1137] = {.lex_state = 4, .external_lex_state = 3}, - [1138] = {.lex_state = 4, .external_lex_state = 3}, - [1139] = {.lex_state = 4, .external_lex_state = 3}, - [1140] = {.lex_state = 4, .external_lex_state = 3}, - [1141] = {.lex_state = 7, .external_lex_state = 3}, - [1142] = {.lex_state = 4, .external_lex_state = 3}, - [1143] = {.lex_state = 4, .external_lex_state = 3}, - [1144] = {.lex_state = 4, .external_lex_state = 3}, - [1145] = {.lex_state = 7, .external_lex_state = 3}, - [1146] = {.lex_state = 7, .external_lex_state = 3}, - [1147] = {.lex_state = 7, .external_lex_state = 3}, - [1148] = {.lex_state = 7, .external_lex_state = 3}, - [1149] = {.lex_state = 4, .external_lex_state = 3}, - [1150] = {.lex_state = 7, .external_lex_state = 3}, - [1151] = {.lex_state = 7, .external_lex_state = 3}, - [1152] = {.lex_state = 7, .external_lex_state = 3}, - [1153] = {.lex_state = 7, .external_lex_state = 3}, - [1154] = {.lex_state = 4, .external_lex_state = 3}, - [1155] = {.lex_state = 4, .external_lex_state = 3}, - [1156] = {.lex_state = 7, .external_lex_state = 3}, - [1157] = {.lex_state = 4, .external_lex_state = 3}, - [1158] = {.lex_state = 7, .external_lex_state = 3}, - [1159] = {.lex_state = 7, .external_lex_state = 3}, - [1160] = {.lex_state = 7, .external_lex_state = 3}, - [1161] = {.lex_state = 7, .external_lex_state = 3}, - [1162] = {.lex_state = 7, .external_lex_state = 3}, - [1163] = {.lex_state = 4, .external_lex_state = 3}, - [1164] = {.lex_state = 4, .external_lex_state = 3}, - [1165] = {.lex_state = 7, .external_lex_state = 3}, - [1166] = {.lex_state = 7, .external_lex_state = 3}, - [1167] = {.lex_state = 7, .external_lex_state = 3}, - [1168] = {.lex_state = 4, .external_lex_state = 3}, - [1169] = {.lex_state = 4, .external_lex_state = 3}, - [1170] = {.lex_state = 7, .external_lex_state = 3}, - [1171] = {.lex_state = 4, .external_lex_state = 3}, - [1172] = {.lex_state = 7, .external_lex_state = 3}, - [1173] = {.lex_state = 7, .external_lex_state = 3}, - [1174] = {.lex_state = 7, .external_lex_state = 3}, - [1175] = {.lex_state = 7, .external_lex_state = 3}, - [1176] = {.lex_state = 7, .external_lex_state = 3}, - [1177] = {.lex_state = 7, .external_lex_state = 3}, - [1178] = {.lex_state = 7, .external_lex_state = 3}, - [1179] = {.lex_state = 7, .external_lex_state = 3}, - [1180] = {.lex_state = 7, .external_lex_state = 3}, - [1181] = {.lex_state = 7, .external_lex_state = 3}, - [1182] = {.lex_state = 7, .external_lex_state = 3}, - [1183] = {.lex_state = 7, .external_lex_state = 3}, - [1184] = {.lex_state = 7, .external_lex_state = 3}, - [1185] = {.lex_state = 7, .external_lex_state = 3}, - [1186] = {.lex_state = 7, .external_lex_state = 3}, - [1187] = {.lex_state = 7, .external_lex_state = 3}, - [1188] = {.lex_state = 7, .external_lex_state = 3}, - [1189] = {.lex_state = 7, .external_lex_state = 3}, - [1190] = {.lex_state = 7, .external_lex_state = 3}, - [1191] = {.lex_state = 7, .external_lex_state = 3}, - [1192] = {.lex_state = 7, .external_lex_state = 3}, - [1193] = {.lex_state = 7, .external_lex_state = 3}, - [1194] = {.lex_state = 4, .external_lex_state = 3}, - [1195] = {.lex_state = 7, .external_lex_state = 3}, - [1196] = {.lex_state = 7, .external_lex_state = 3}, - [1197] = {.lex_state = 7, .external_lex_state = 3}, - [1198] = {.lex_state = 7, .external_lex_state = 3}, - [1199] = {.lex_state = 7, .external_lex_state = 3}, - [1200] = {.lex_state = 7, .external_lex_state = 3}, - [1201] = {.lex_state = 7, .external_lex_state = 3}, - [1202] = {.lex_state = 7, .external_lex_state = 3}, - [1203] = {.lex_state = 4, .external_lex_state = 3}, - [1204] = {.lex_state = 7, .external_lex_state = 3}, - [1205] = {.lex_state = 4, .external_lex_state = 3}, - [1206] = {.lex_state = 7, .external_lex_state = 3}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, - [1208] = {.lex_state = 7, .external_lex_state = 3}, - [1209] = {.lex_state = 7, .external_lex_state = 3}, - [1210] = {.lex_state = 7, .external_lex_state = 3}, - [1211] = {.lex_state = 7, .external_lex_state = 3}, - [1212] = {.lex_state = 7, .external_lex_state = 3}, - [1213] = {.lex_state = 7, .external_lex_state = 3}, - [1214] = {.lex_state = 7, .external_lex_state = 3}, - [1215] = {.lex_state = 7, .external_lex_state = 3}, - [1216] = {.lex_state = 7, .external_lex_state = 3}, - [1217] = {.lex_state = 7, .external_lex_state = 3}, - [1218] = {.lex_state = 7, .external_lex_state = 3}, - [1219] = {.lex_state = 4, .external_lex_state = 3}, - [1220] = {.lex_state = 4, .external_lex_state = 3}, - [1221] = {.lex_state = 4, .external_lex_state = 3}, - [1222] = {.lex_state = 7, .external_lex_state = 3}, - [1223] = {.lex_state = 7, .external_lex_state = 3}, - [1224] = {.lex_state = 7, .external_lex_state = 3}, - [1225] = {.lex_state = 7, .external_lex_state = 3}, - [1226] = {.lex_state = 7, .external_lex_state = 3}, - [1227] = {.lex_state = 7, .external_lex_state = 3}, - [1228] = {.lex_state = 7, .external_lex_state = 3}, - [1229] = {.lex_state = 7, .external_lex_state = 3}, - [1230] = {.lex_state = 7, .external_lex_state = 3}, - [1231] = {.lex_state = 7, .external_lex_state = 3}, - [1232] = {.lex_state = 7, .external_lex_state = 3}, - [1233] = {.lex_state = 7, .external_lex_state = 3}, - [1234] = {.lex_state = 7, .external_lex_state = 3}, - [1235] = {.lex_state = 7, .external_lex_state = 3}, - [1236] = {.lex_state = 7, .external_lex_state = 3}, - [1237] = {.lex_state = 7, .external_lex_state = 3}, - [1238] = {.lex_state = 7, .external_lex_state = 3}, - [1239] = {.lex_state = 7, .external_lex_state = 3}, - [1240] = {.lex_state = 4, .external_lex_state = 3}, - [1241] = {.lex_state = 7, .external_lex_state = 3}, - [1242] = {.lex_state = 7, .external_lex_state = 3}, - [1243] = {.lex_state = 7, .external_lex_state = 3}, - [1244] = {.lex_state = 4, .external_lex_state = 3}, - [1245] = {.lex_state = 7, .external_lex_state = 3}, - [1246] = {.lex_state = 4, .external_lex_state = 3}, - [1247] = {.lex_state = 7, .external_lex_state = 3}, - [1248] = {.lex_state = 4, .external_lex_state = 3}, - [1249] = {.lex_state = 4, .external_lex_state = 3}, - [1250] = {.lex_state = 7, .external_lex_state = 3}, - [1251] = {.lex_state = 7, .external_lex_state = 3}, - [1252] = {.lex_state = 7, .external_lex_state = 3}, - [1253] = {.lex_state = 7, .external_lex_state = 3}, - [1254] = {.lex_state = 4, .external_lex_state = 3}, - [1255] = {.lex_state = 7, .external_lex_state = 3}, - [1256] = {.lex_state = 7, .external_lex_state = 3}, - [1257] = {.lex_state = 7, .external_lex_state = 3}, - [1258] = {.lex_state = 7, .external_lex_state = 3}, - [1259] = {.lex_state = 7, .external_lex_state = 3}, - [1260] = {.lex_state = 7, .external_lex_state = 3}, - [1261] = {.lex_state = 7, .external_lex_state = 3}, - [1262] = {.lex_state = 7, .external_lex_state = 3}, - [1263] = {.lex_state = 4, .external_lex_state = 3}, - [1264] = {.lex_state = 7, .external_lex_state = 3}, - [1265] = {.lex_state = 4, .external_lex_state = 3}, - [1266] = {.lex_state = 4, .external_lex_state = 3}, - [1267] = {.lex_state = 4, .external_lex_state = 3}, - [1268] = {.lex_state = 7, .external_lex_state = 3}, - [1269] = {.lex_state = 7, .external_lex_state = 3}, - [1270] = {.lex_state = 4, .external_lex_state = 3}, - [1271] = {.lex_state = 7, .external_lex_state = 3}, - [1272] = {.lex_state = 7, .external_lex_state = 3}, - [1273] = {.lex_state = 7, .external_lex_state = 3}, - [1274] = {.lex_state = 4, .external_lex_state = 3}, - [1275] = {.lex_state = 7, .external_lex_state = 3}, - [1276] = {.lex_state = 4, .external_lex_state = 3}, - [1277] = {.lex_state = 4, .external_lex_state = 3}, - [1278] = {.lex_state = 7, .external_lex_state = 3}, - [1279] = {.lex_state = 4, .external_lex_state = 3}, - [1280] = {.lex_state = 7, .external_lex_state = 3}, - [1281] = {.lex_state = 7, .external_lex_state = 3}, - [1282] = {.lex_state = 7, .external_lex_state = 3}, - [1283] = {.lex_state = 7, .external_lex_state = 3}, - [1284] = {.lex_state = 7, .external_lex_state = 3}, - [1285] = {.lex_state = 7, .external_lex_state = 3}, - [1286] = {.lex_state = 4, .external_lex_state = 3}, - [1287] = {.lex_state = 4, .external_lex_state = 3}, - [1288] = {.lex_state = 7, .external_lex_state = 3}, - [1289] = {.lex_state = 7, .external_lex_state = 3}, - [1290] = {.lex_state = 4, .external_lex_state = 3}, - [1291] = {.lex_state = 7, .external_lex_state = 3}, - [1292] = {.lex_state = 4, .external_lex_state = 3}, - [1293] = {.lex_state = 4, .external_lex_state = 3}, - [1294] = {.lex_state = 7, .external_lex_state = 3}, - [1295] = {.lex_state = 4, .external_lex_state = 3}, - [1296] = {.lex_state = 7, .external_lex_state = 3}, - [1297] = {.lex_state = 7, .external_lex_state = 3}, - [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 7, .external_lex_state = 3}, - [1300] = {.lex_state = 4, .external_lex_state = 3}, - [1301] = {.lex_state = 4, .external_lex_state = 3}, - [1302] = {.lex_state = 7, .external_lex_state = 3}, - [1303] = {.lex_state = 7, .external_lex_state = 3}, - [1304] = {.lex_state = 7, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .external_lex_state = 3}, - [1306] = {.lex_state = 7, .external_lex_state = 3}, - [1307] = {.lex_state = 7, .external_lex_state = 3}, - [1308] = {.lex_state = 7, .external_lex_state = 3}, - [1309] = {.lex_state = 7, .external_lex_state = 3}, - [1310] = {.lex_state = 7, .external_lex_state = 3}, - [1311] = {.lex_state = 7, .external_lex_state = 3}, - [1312] = {.lex_state = 7, .external_lex_state = 3}, - [1313] = {.lex_state = 7, .external_lex_state = 3}, - [1314] = {.lex_state = 7, .external_lex_state = 3}, - [1315] = {.lex_state = 7, .external_lex_state = 3}, - [1316] = {.lex_state = 7, .external_lex_state = 3}, - [1317] = {.lex_state = 7, .external_lex_state = 3}, - [1318] = {.lex_state = 7, .external_lex_state = 3}, - [1319] = {.lex_state = 7, .external_lex_state = 3}, - [1320] = {.lex_state = 7, .external_lex_state = 3}, - [1321] = {.lex_state = 4, .external_lex_state = 3}, - [1322] = {.lex_state = 4, .external_lex_state = 3}, - [1323] = {.lex_state = 7, .external_lex_state = 3}, - [1324] = {.lex_state = 7, .external_lex_state = 3}, - [1325] = {.lex_state = 7, .external_lex_state = 3}, - [1326] = {.lex_state = 7, .external_lex_state = 3}, - [1327] = {.lex_state = 7, .external_lex_state = 3}, - [1328] = {.lex_state = 7, .external_lex_state = 3}, - [1329] = {.lex_state = 4, .external_lex_state = 3}, - [1330] = {.lex_state = 7, .external_lex_state = 3}, - [1331] = {.lex_state = 7, .external_lex_state = 3}, - [1332] = {.lex_state = 7, .external_lex_state = 3}, - [1333] = {.lex_state = 7, .external_lex_state = 3}, - [1334] = {.lex_state = 7, .external_lex_state = 3}, - [1335] = {.lex_state = 4, .external_lex_state = 3}, - [1336] = {.lex_state = 7, .external_lex_state = 3}, - [1337] = {.lex_state = 4, .external_lex_state = 3}, - [1338] = {.lex_state = 4, .external_lex_state = 3}, - [1339] = {.lex_state = 7, .external_lex_state = 3}, - [1340] = {.lex_state = 7, .external_lex_state = 3}, - [1341] = {.lex_state = 7, .external_lex_state = 3}, - [1342] = {.lex_state = 7, .external_lex_state = 3}, - [1343] = {.lex_state = 7, .external_lex_state = 3}, - [1344] = {.lex_state = 4, .external_lex_state = 3}, - [1345] = {.lex_state = 7, .external_lex_state = 3}, - [1346] = {.lex_state = 7, .external_lex_state = 3}, - [1347] = {.lex_state = 7, .external_lex_state = 3}, - [1348] = {.lex_state = 7, .external_lex_state = 3}, - [1349] = {.lex_state = 7, .external_lex_state = 3}, - [1350] = {.lex_state = 4, .external_lex_state = 3}, - [1351] = {.lex_state = 4, .external_lex_state = 3}, - [1352] = {.lex_state = 4, .external_lex_state = 3}, - [1353] = {.lex_state = 4, .external_lex_state = 3}, - [1354] = {.lex_state = 4, .external_lex_state = 3}, - [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, - [1357] = {.lex_state = 7, .external_lex_state = 3}, - [1358] = {.lex_state = 4, .external_lex_state = 3}, - [1359] = {.lex_state = 7, .external_lex_state = 3}, - [1360] = {.lex_state = 7, .external_lex_state = 3}, - [1361] = {.lex_state = 7, .external_lex_state = 3}, - [1362] = {.lex_state = 7, .external_lex_state = 3}, - [1363] = {.lex_state = 7, .external_lex_state = 3}, - [1364] = {.lex_state = 7, .external_lex_state = 3}, - [1365] = {.lex_state = 7, .external_lex_state = 3}, - [1366] = {.lex_state = 4, .external_lex_state = 3}, - [1367] = {.lex_state = 7, .external_lex_state = 3}, - [1368] = {.lex_state = 7, .external_lex_state = 3}, - [1369] = {.lex_state = 4, .external_lex_state = 3}, - [1370] = {.lex_state = 7, .external_lex_state = 3}, - [1371] = {.lex_state = 7, .external_lex_state = 3}, - [1372] = {.lex_state = 7, .external_lex_state = 3}, - [1373] = {.lex_state = 7, .external_lex_state = 3}, - [1374] = {.lex_state = 4, .external_lex_state = 3}, - [1375] = {.lex_state = 7, .external_lex_state = 3}, - [1376] = {.lex_state = 7, .external_lex_state = 3}, - [1377] = {.lex_state = 7, .external_lex_state = 3}, - [1378] = {.lex_state = 7, .external_lex_state = 3}, - [1379] = {.lex_state = 7, .external_lex_state = 3}, - [1380] = {.lex_state = 7, .external_lex_state = 3}, - [1381] = {.lex_state = 7, .external_lex_state = 3}, - [1382] = {.lex_state = 7, .external_lex_state = 3}, - [1383] = {.lex_state = 4, .external_lex_state = 3}, - [1384] = {.lex_state = 4, .external_lex_state = 3}, - [1385] = {.lex_state = 4, .external_lex_state = 3}, - [1386] = {.lex_state = 7, .external_lex_state = 3}, - [1387] = {.lex_state = 7, .external_lex_state = 3}, - [1388] = {.lex_state = 7, .external_lex_state = 3}, - [1389] = {.lex_state = 7, .external_lex_state = 3}, - [1390] = {.lex_state = 7, .external_lex_state = 3}, - [1391] = {.lex_state = 7, .external_lex_state = 3}, - [1392] = {.lex_state = 7, .external_lex_state = 3}, - [1393] = {.lex_state = 7, .external_lex_state = 3}, - [1394] = {.lex_state = 7, .external_lex_state = 3}, - [1395] = {.lex_state = 7, .external_lex_state = 3}, - [1396] = {.lex_state = 7, .external_lex_state = 3}, - [1397] = {.lex_state = 7, .external_lex_state = 3}, - [1398] = {.lex_state = 7, .external_lex_state = 3}, - [1399] = {.lex_state = 7, .external_lex_state = 3}, - [1400] = {.lex_state = 4, .external_lex_state = 3}, - [1401] = {.lex_state = 7, .external_lex_state = 3}, - [1402] = {.lex_state = 7, .external_lex_state = 3}, - [1403] = {.lex_state = 4, .external_lex_state = 3}, - [1404] = {.lex_state = 4, .external_lex_state = 3}, - [1405] = {.lex_state = 4, .external_lex_state = 3}, - [1406] = {.lex_state = 4, .external_lex_state = 3}, - [1407] = {.lex_state = 4, .external_lex_state = 3}, - [1408] = {.lex_state = 4, .external_lex_state = 3}, - [1409] = {.lex_state = 4, .external_lex_state = 3}, - [1410] = {.lex_state = 4, .external_lex_state = 3}, - [1411] = {.lex_state = 4, .external_lex_state = 3}, - [1412] = {.lex_state = 4, .external_lex_state = 3}, - [1413] = {.lex_state = 4, .external_lex_state = 3}, - [1414] = {.lex_state = 4, .external_lex_state = 3}, - [1415] = {.lex_state = 4, .external_lex_state = 3}, - [1416] = {.lex_state = 4, .external_lex_state = 3}, - [1417] = {.lex_state = 4, .external_lex_state = 3}, - [1418] = {.lex_state = 4, .external_lex_state = 3}, - [1419] = {.lex_state = 4, .external_lex_state = 3}, - [1420] = {.lex_state = 4, .external_lex_state = 3}, - [1421] = {.lex_state = 7, .external_lex_state = 3}, - [1422] = {.lex_state = 4, .external_lex_state = 3}, - [1423] = {.lex_state = 4, .external_lex_state = 3}, - [1424] = {.lex_state = 4, .external_lex_state = 3}, - [1425] = {.lex_state = 4, .external_lex_state = 3}, - [1426] = {.lex_state = 4, .external_lex_state = 3}, - [1427] = {.lex_state = 7, .external_lex_state = 3}, - [1428] = {.lex_state = 7, .external_lex_state = 3}, - [1429] = {.lex_state = 13, .external_lex_state = 3}, - [1430] = {.lex_state = 13, .external_lex_state = 3}, - [1431] = {.lex_state = 4, .external_lex_state = 3}, - [1432] = {.lex_state = 13, .external_lex_state = 3}, - [1433] = {.lex_state = 13, .external_lex_state = 3}, - [1434] = {.lex_state = 4, .external_lex_state = 3}, - [1435] = {.lex_state = 13, .external_lex_state = 3}, - [1436] = {.lex_state = 13, .external_lex_state = 3}, - [1437] = {.lex_state = 13, .external_lex_state = 3}, - [1438] = {.lex_state = 13, .external_lex_state = 3}, - [1439] = {.lex_state = 13, .external_lex_state = 3}, - [1440] = {.lex_state = 6, .external_lex_state = 3}, - [1441] = {.lex_state = 4, .external_lex_state = 3}, - [1442] = {.lex_state = 4, .external_lex_state = 3}, - [1443] = {.lex_state = 4, .external_lex_state = 3}, - [1444] = {.lex_state = 4, .external_lex_state = 3}, - [1445] = {.lex_state = 4, .external_lex_state = 3}, - [1446] = {.lex_state = 4, .external_lex_state = 3}, - [1447] = {.lex_state = 5, .external_lex_state = 3}, - [1448] = {.lex_state = 4, .external_lex_state = 3}, - [1449] = {.lex_state = 4, .external_lex_state = 3}, - [1450] = {.lex_state = 4, .external_lex_state = 3}, - [1451] = {.lex_state = 4, .external_lex_state = 3}, - [1452] = {.lex_state = 6, .external_lex_state = 3}, - [1453] = {.lex_state = 4, .external_lex_state = 3}, - [1454] = {.lex_state = 4, .external_lex_state = 3}, - [1455] = {.lex_state = 4, .external_lex_state = 3}, - [1456] = {.lex_state = 6, .external_lex_state = 3}, - [1457] = {.lex_state = 4, .external_lex_state = 3}, - [1458] = {.lex_state = 4, .external_lex_state = 3}, - [1459] = {.lex_state = 4, .external_lex_state = 3}, - [1460] = {.lex_state = 6, .external_lex_state = 3}, - [1461] = {.lex_state = 4, .external_lex_state = 3}, - [1462] = {.lex_state = 4, .external_lex_state = 3}, - [1463] = {.lex_state = 4, .external_lex_state = 3}, - [1464] = {.lex_state = 4, .external_lex_state = 3}, - [1465] = {.lex_state = 13, .external_lex_state = 3}, - [1466] = {.lex_state = 13, .external_lex_state = 3}, - [1467] = {.lex_state = 5, .external_lex_state = 3}, - [1468] = {.lex_state = 6, .external_lex_state = 3}, - [1469] = {.lex_state = 13, .external_lex_state = 3}, - [1470] = {.lex_state = 13, .external_lex_state = 3}, - [1471] = {.lex_state = 6, .external_lex_state = 3}, - [1472] = {.lex_state = 6, .external_lex_state = 3}, - [1473] = {.lex_state = 6, .external_lex_state = 3}, - [1474] = {.lex_state = 6, .external_lex_state = 3}, - [1475] = {.lex_state = 6, .external_lex_state = 3}, - [1476] = {.lex_state = 13, .external_lex_state = 3}, - [1477] = {.lex_state = 13, .external_lex_state = 3}, - [1478] = {.lex_state = 13, .external_lex_state = 3}, - [1479] = {.lex_state = 13, .external_lex_state = 3}, - [1480] = {.lex_state = 5, .external_lex_state = 3}, - [1481] = {.lex_state = 4, .external_lex_state = 3}, - [1482] = {.lex_state = 13, .external_lex_state = 3}, - [1483] = {.lex_state = 13, .external_lex_state = 3}, - [1484] = {.lex_state = 6, .external_lex_state = 3}, - [1485] = {.lex_state = 6, .external_lex_state = 3}, - [1486] = {.lex_state = 5, .external_lex_state = 3}, - [1487] = {.lex_state = 4, .external_lex_state = 3}, - [1488] = {.lex_state = 5, .external_lex_state = 3}, - [1489] = {.lex_state = 4, .external_lex_state = 3}, - [1490] = {.lex_state = 5, .external_lex_state = 3}, - [1491] = {.lex_state = 5, .external_lex_state = 3}, - [1492] = {.lex_state = 4, .external_lex_state = 3}, - [1493] = {.lex_state = 5, .external_lex_state = 3}, - [1494] = {.lex_state = 4, .external_lex_state = 3}, - [1495] = {.lex_state = 5, .external_lex_state = 3}, - [1496] = {.lex_state = 5, .external_lex_state = 3}, - [1497] = {.lex_state = 5, .external_lex_state = 3}, - [1498] = {.lex_state = 5, .external_lex_state = 3}, - [1499] = {.lex_state = 4, .external_lex_state = 3}, - [1500] = {.lex_state = 4, .external_lex_state = 3}, - [1501] = {.lex_state = 5, .external_lex_state = 3}, - [1502] = {.lex_state = 5, .external_lex_state = 3}, - [1503] = {.lex_state = 4, .external_lex_state = 3}, - [1504] = {.lex_state = 4, .external_lex_state = 3}, - [1505] = {.lex_state = 5, .external_lex_state = 3}, - [1506] = {.lex_state = 9, .external_lex_state = 2}, - [1507] = {.lex_state = 9, .external_lex_state = 2}, - [1508] = {.lex_state = 5, .external_lex_state = 3}, - [1509] = {.lex_state = 5, .external_lex_state = 3}, - [1510] = {.lex_state = 9, .external_lex_state = 2}, - [1511] = {.lex_state = 5, .external_lex_state = 3}, - [1512] = {.lex_state = 9, .external_lex_state = 2}, - [1513] = {.lex_state = 6, .external_lex_state = 3}, - [1514] = {.lex_state = 13, .external_lex_state = 3}, - [1515] = {.lex_state = 19, .external_lex_state = 3}, - [1516] = {.lex_state = 4, .external_lex_state = 3}, - [1517] = {.lex_state = 19, .external_lex_state = 3}, - [1518] = {.lex_state = 5, .external_lex_state = 3}, - [1519] = {.lex_state = 19, .external_lex_state = 3}, - [1520] = {.lex_state = 4, .external_lex_state = 3}, - [1521] = {.lex_state = 4, .external_lex_state = 3}, - [1522] = {.lex_state = 5, .external_lex_state = 3}, - [1523] = {.lex_state = 5, .external_lex_state = 3}, - [1524] = {.lex_state = 19, .external_lex_state = 3}, - [1525] = {.lex_state = 4, .external_lex_state = 3}, - [1526] = {.lex_state = 5, .external_lex_state = 3}, - [1527] = {.lex_state = 13, .external_lex_state = 3}, - [1528] = {.lex_state = 5, .external_lex_state = 3}, - [1529] = {.lex_state = 5, .external_lex_state = 3}, - [1530] = {.lex_state = 13, .external_lex_state = 3}, - [1531] = {.lex_state = 4, .external_lex_state = 3}, - [1532] = {.lex_state = 19, .external_lex_state = 3}, - [1533] = {.lex_state = 19, .external_lex_state = 3}, - [1534] = {.lex_state = 4, .external_lex_state = 3}, - [1535] = {.lex_state = 5, .external_lex_state = 3}, - [1536] = {.lex_state = 4, .external_lex_state = 3}, - [1537] = {.lex_state = 4, .external_lex_state = 3}, - [1538] = {.lex_state = 4, .external_lex_state = 3}, - [1539] = {.lex_state = 4, .external_lex_state = 3}, - [1540] = {.lex_state = 19, .external_lex_state = 3}, - [1541] = {.lex_state = 19, .external_lex_state = 3}, - [1542] = {.lex_state = 4, .external_lex_state = 3}, - [1543] = {.lex_state = 4, .external_lex_state = 3}, - [1544] = {.lex_state = 19, .external_lex_state = 3}, - [1545] = {.lex_state = 4, .external_lex_state = 3}, - [1546] = {.lex_state = 4, .external_lex_state = 3}, - [1547] = {.lex_state = 4, .external_lex_state = 3}, - [1548] = {.lex_state = 5, .external_lex_state = 3}, - [1549] = {.lex_state = 5, .external_lex_state = 3}, - [1550] = {.lex_state = 5, .external_lex_state = 3}, - [1551] = {.lex_state = 4, .external_lex_state = 3}, - [1552] = {.lex_state = 19, .external_lex_state = 3}, - [1553] = {.lex_state = 5, .external_lex_state = 3}, - [1554] = {.lex_state = 19, .external_lex_state = 3}, - [1555] = {.lex_state = 5, .external_lex_state = 3}, - [1556] = {.lex_state = 4, .external_lex_state = 3}, - [1557] = {.lex_state = 13, .external_lex_state = 3}, - [1558] = {.lex_state = 13, .external_lex_state = 3}, - [1559] = {.lex_state = 5, .external_lex_state = 3}, - [1560] = {.lex_state = 5, .external_lex_state = 3}, - [1561] = {.lex_state = 5, .external_lex_state = 3}, - [1562] = {.lex_state = 5, .external_lex_state = 3}, - [1563] = {.lex_state = 5, .external_lex_state = 3}, - [1564] = {.lex_state = 5, .external_lex_state = 3}, - [1565] = {.lex_state = 13, .external_lex_state = 3}, - [1566] = {.lex_state = 19, .external_lex_state = 3}, - [1567] = {.lex_state = 13, .external_lex_state = 3}, - [1568] = {.lex_state = 5, .external_lex_state = 3}, - [1569] = {.lex_state = 5, .external_lex_state = 3}, - [1570] = {.lex_state = 5, .external_lex_state = 3}, - [1571] = {.lex_state = 5, .external_lex_state = 3}, - [1572] = {.lex_state = 5, .external_lex_state = 3}, - [1573] = {.lex_state = 5, .external_lex_state = 3}, - [1574] = {.lex_state = 5, .external_lex_state = 3}, - [1575] = {.lex_state = 5, .external_lex_state = 3}, - [1576] = {.lex_state = 5, .external_lex_state = 3}, - [1577] = {.lex_state = 4, .external_lex_state = 3}, - [1578] = {.lex_state = 4, .external_lex_state = 3}, - [1579] = {.lex_state = 5, .external_lex_state = 3}, - [1580] = {.lex_state = 5, .external_lex_state = 3}, - [1581] = {.lex_state = 4, .external_lex_state = 3}, - [1582] = {.lex_state = 4, .external_lex_state = 3}, - [1583] = {.lex_state = 4, .external_lex_state = 3}, - [1584] = {.lex_state = 5, .external_lex_state = 3}, - [1585] = {.lex_state = 5, .external_lex_state = 3}, - [1586] = {.lex_state = 5, .external_lex_state = 3}, - [1587] = {.lex_state = 5, .external_lex_state = 3}, - [1588] = {.lex_state = 5, .external_lex_state = 3}, - [1589] = {.lex_state = 5, .external_lex_state = 3}, - [1590] = {.lex_state = 5, .external_lex_state = 3}, - [1591] = {.lex_state = 5, .external_lex_state = 3}, - [1592] = {.lex_state = 5, .external_lex_state = 3}, - [1593] = {.lex_state = 5, .external_lex_state = 3}, - [1594] = {.lex_state = 5, .external_lex_state = 3}, - [1595] = {.lex_state = 5, .external_lex_state = 3}, - [1596] = {.lex_state = 5, .external_lex_state = 3}, - [1597] = {.lex_state = 5, .external_lex_state = 3}, - [1598] = {.lex_state = 5, .external_lex_state = 3}, - [1599] = {.lex_state = 4, .external_lex_state = 3}, - [1600] = {.lex_state = 5, .external_lex_state = 3}, - [1601] = {.lex_state = 5, .external_lex_state = 3}, - [1602] = {.lex_state = 5, .external_lex_state = 3}, - [1603] = {.lex_state = 5, .external_lex_state = 3}, - [1604] = {.lex_state = 5, .external_lex_state = 3}, - [1605] = {.lex_state = 5, .external_lex_state = 3}, - [1606] = {.lex_state = 5, .external_lex_state = 3}, - [1607] = {.lex_state = 4, .external_lex_state = 3}, - [1608] = {.lex_state = 5, .external_lex_state = 3}, - [1609] = {.lex_state = 4, .external_lex_state = 3}, - [1610] = {.lex_state = 5, .external_lex_state = 3}, - [1611] = {.lex_state = 4, .external_lex_state = 3}, - [1612] = {.lex_state = 5, .external_lex_state = 3}, - [1613] = {.lex_state = 5, .external_lex_state = 3}, - [1614] = {.lex_state = 5, .external_lex_state = 3}, - [1615] = {.lex_state = 5, .external_lex_state = 3}, - [1616] = {.lex_state = 5, .external_lex_state = 3}, - [1617] = {.lex_state = 4, .external_lex_state = 3}, - [1618] = {.lex_state = 5, .external_lex_state = 3}, - [1619] = {.lex_state = 5, .external_lex_state = 3}, - [1620] = {.lex_state = 5, .external_lex_state = 3}, - [1621] = {.lex_state = 5, .external_lex_state = 3}, - [1622] = {.lex_state = 5, .external_lex_state = 3}, - [1623] = {.lex_state = 5, .external_lex_state = 3}, - [1624] = {.lex_state = 5, .external_lex_state = 3}, - [1625] = {.lex_state = 5, .external_lex_state = 3}, - [1626] = {.lex_state = 5, .external_lex_state = 3}, - [1627] = {.lex_state = 5, .external_lex_state = 3}, - [1628] = {.lex_state = 5, .external_lex_state = 3}, - [1629] = {.lex_state = 5, .external_lex_state = 3}, - [1630] = {.lex_state = 5, .external_lex_state = 3}, - [1631] = {.lex_state = 5, .external_lex_state = 3}, - [1632] = {.lex_state = 5, .external_lex_state = 3}, - [1633] = {.lex_state = 5, .external_lex_state = 3}, - [1634] = {.lex_state = 5, .external_lex_state = 3}, - [1635] = {.lex_state = 5, .external_lex_state = 3}, - [1636] = {.lex_state = 5, .external_lex_state = 3}, - [1637] = {.lex_state = 4, .external_lex_state = 3}, - [1638] = {.lex_state = 5, .external_lex_state = 3}, - [1639] = {.lex_state = 5, .external_lex_state = 3}, - [1640] = {.lex_state = 5, .external_lex_state = 3}, - [1641] = {.lex_state = 5, .external_lex_state = 3}, - [1642] = {.lex_state = 5, .external_lex_state = 3}, - [1643] = {.lex_state = 5, .external_lex_state = 3}, - [1644] = {.lex_state = 5, .external_lex_state = 3}, - [1645] = {.lex_state = 4, .external_lex_state = 3}, - [1646] = {.lex_state = 5, .external_lex_state = 3}, - [1647] = {.lex_state = 5, .external_lex_state = 3}, - [1648] = {.lex_state = 4, .external_lex_state = 3}, - [1649] = {.lex_state = 5, .external_lex_state = 3}, - [1650] = {.lex_state = 5, .external_lex_state = 3}, - [1651] = {.lex_state = 5, .external_lex_state = 3}, - [1652] = {.lex_state = 5, .external_lex_state = 3}, - [1653] = {.lex_state = 5, .external_lex_state = 3}, - [1654] = {.lex_state = 5, .external_lex_state = 3}, - [1655] = {.lex_state = 5, .external_lex_state = 3}, - [1656] = {.lex_state = 4, .external_lex_state = 3}, - [1657] = {.lex_state = 5, .external_lex_state = 3}, - [1658] = {.lex_state = 5, .external_lex_state = 3}, - [1659] = {.lex_state = 5, .external_lex_state = 3}, - [1660] = {.lex_state = 5, .external_lex_state = 3}, - [1661] = {.lex_state = 5, .external_lex_state = 3}, - [1662] = {.lex_state = 5, .external_lex_state = 3}, - [1663] = {.lex_state = 5, .external_lex_state = 3}, - [1664] = {.lex_state = 5, .external_lex_state = 3}, - [1665] = {.lex_state = 13, .external_lex_state = 3}, - [1666] = {.lex_state = 5, .external_lex_state = 3}, - [1667] = {.lex_state = 13, .external_lex_state = 3}, - [1668] = {.lex_state = 5, .external_lex_state = 3}, - [1669] = {.lex_state = 5, .external_lex_state = 3}, - [1670] = {.lex_state = 5, .external_lex_state = 3}, - [1671] = {.lex_state = 5, .external_lex_state = 3}, - [1672] = {.lex_state = 5, .external_lex_state = 3}, - [1673] = {.lex_state = 5, .external_lex_state = 3}, - [1674] = {.lex_state = 5, .external_lex_state = 3}, - [1675] = {.lex_state = 5, .external_lex_state = 3}, - [1676] = {.lex_state = 5, .external_lex_state = 3}, - [1677] = {.lex_state = 5, .external_lex_state = 3}, - [1678] = {.lex_state = 5, .external_lex_state = 3}, - [1679] = {.lex_state = 5, .external_lex_state = 3}, - [1680] = {.lex_state = 5, .external_lex_state = 3}, - [1681] = {.lex_state = 5, .external_lex_state = 3}, - [1682] = {.lex_state = 5, .external_lex_state = 3}, - [1683] = {.lex_state = 5, .external_lex_state = 3}, - [1684] = {.lex_state = 5, .external_lex_state = 3}, - [1685] = {.lex_state = 5, .external_lex_state = 3}, - [1686] = {.lex_state = 5, .external_lex_state = 3}, - [1687] = {.lex_state = 5, .external_lex_state = 3}, - [1688] = {.lex_state = 4, .external_lex_state = 3}, - [1689] = {.lex_state = 4, .external_lex_state = 3}, - [1690] = {.lex_state = 4, .external_lex_state = 3}, - [1691] = {.lex_state = 4, .external_lex_state = 3}, - [1692] = {.lex_state = 4, .external_lex_state = 3}, - [1693] = {.lex_state = 5, .external_lex_state = 3}, - [1694] = {.lex_state = 4, .external_lex_state = 3}, - [1695] = {.lex_state = 4, .external_lex_state = 3}, - [1696] = {.lex_state = 4, .external_lex_state = 3}, - [1697] = {.lex_state = 4, .external_lex_state = 3}, - [1698] = {.lex_state = 5, .external_lex_state = 3}, - [1699] = {.lex_state = 4, .external_lex_state = 3}, - [1700] = {.lex_state = 4, .external_lex_state = 3}, - [1701] = {.lex_state = 5, .external_lex_state = 3}, - [1702] = {.lex_state = 4, .external_lex_state = 3}, - [1703] = {.lex_state = 5, .external_lex_state = 3}, - [1704] = {.lex_state = 13, .external_lex_state = 3}, - [1705] = {.lex_state = 5, .external_lex_state = 3}, - [1706] = {.lex_state = 5, .external_lex_state = 3}, - [1707] = {.lex_state = 5, .external_lex_state = 3}, - [1708] = {.lex_state = 5, .external_lex_state = 3}, - [1709] = {.lex_state = 5, .external_lex_state = 3}, - [1710] = {.lex_state = 4, .external_lex_state = 3}, - [1711] = {.lex_state = 5, .external_lex_state = 3}, - [1712] = {.lex_state = 5, .external_lex_state = 3}, - [1713] = {.lex_state = 5, .external_lex_state = 3}, - [1714] = {.lex_state = 4, .external_lex_state = 3}, - [1715] = {.lex_state = 4, .external_lex_state = 3}, - [1716] = {.lex_state = 5, .external_lex_state = 3}, - [1717] = {.lex_state = 4, .external_lex_state = 3}, - [1718] = {.lex_state = 4, .external_lex_state = 3}, - [1719] = {.lex_state = 4, .external_lex_state = 3}, - [1720] = {.lex_state = 5, .external_lex_state = 3}, - [1721] = {.lex_state = 4, .external_lex_state = 3}, - [1722] = {.lex_state = 4, .external_lex_state = 3}, - [1723] = {.lex_state = 4, .external_lex_state = 3}, - [1724] = {.lex_state = 4, .external_lex_state = 3}, - [1725] = {.lex_state = 4, .external_lex_state = 3}, - [1726] = {.lex_state = 4, .external_lex_state = 3}, - [1727] = {.lex_state = 4, .external_lex_state = 3}, - [1728] = {.lex_state = 4, .external_lex_state = 3}, - [1729] = {.lex_state = 4, .external_lex_state = 3}, - [1730] = {.lex_state = 4, .external_lex_state = 3}, - [1731] = {.lex_state = 4, .external_lex_state = 3}, - [1732] = {.lex_state = 4, .external_lex_state = 3}, - [1733] = {.lex_state = 5, .external_lex_state = 3}, - [1734] = {.lex_state = 5, .external_lex_state = 3}, - [1735] = {.lex_state = 4, .external_lex_state = 3}, - [1736] = {.lex_state = 4, .external_lex_state = 3}, - [1737] = {.lex_state = 4, .external_lex_state = 3}, - [1738] = {.lex_state = 4, .external_lex_state = 3}, - [1739] = {.lex_state = 4, .external_lex_state = 3}, - [1740] = {.lex_state = 5, .external_lex_state = 3}, - [1741] = {.lex_state = 4, .external_lex_state = 3}, - [1742] = {.lex_state = 4, .external_lex_state = 3}, - [1743] = {.lex_state = 5, .external_lex_state = 3}, - [1744] = {.lex_state = 4, .external_lex_state = 3}, - [1745] = {.lex_state = 4, .external_lex_state = 3}, - [1746] = {.lex_state = 4, .external_lex_state = 3}, - [1747] = {.lex_state = 4, .external_lex_state = 3}, - [1748] = {.lex_state = 4, .external_lex_state = 3}, - [1749] = {.lex_state = 4, .external_lex_state = 3}, - [1750] = {.lex_state = 4, .external_lex_state = 3}, - [1751] = {.lex_state = 4, .external_lex_state = 3}, - [1752] = {.lex_state = 5, .external_lex_state = 3}, - [1753] = {.lex_state = 5, .external_lex_state = 3}, - [1754] = {.lex_state = 5, .external_lex_state = 3}, - [1755] = {.lex_state = 4, .external_lex_state = 3}, - [1756] = {.lex_state = 4, .external_lex_state = 3}, - [1757] = {.lex_state = 4, .external_lex_state = 3}, - [1758] = {.lex_state = 4, .external_lex_state = 3}, - [1759] = {.lex_state = 4, .external_lex_state = 3}, - [1760] = {.lex_state = 4, .external_lex_state = 3}, - [1761] = {.lex_state = 4, .external_lex_state = 3}, - [1762] = {.lex_state = 4, .external_lex_state = 3}, - [1763] = {.lex_state = 4, .external_lex_state = 3}, - [1764] = {.lex_state = 4, .external_lex_state = 3}, - [1765] = {.lex_state = 5, .external_lex_state = 3}, - [1766] = {.lex_state = 5, .external_lex_state = 3}, - [1767] = {.lex_state = 5, .external_lex_state = 3}, - [1768] = {.lex_state = 5, .external_lex_state = 3}, - [1769] = {.lex_state = 5, .external_lex_state = 3}, - [1770] = {.lex_state = 4, .external_lex_state = 3}, - [1771] = {.lex_state = 5, .external_lex_state = 3}, - [1772] = {.lex_state = 4, .external_lex_state = 3}, - [1773] = {.lex_state = 5, .external_lex_state = 3}, - [1774] = {.lex_state = 4, .external_lex_state = 3}, - [1775] = {.lex_state = 4, .external_lex_state = 3}, - [1776] = {.lex_state = 4, .external_lex_state = 3}, - [1777] = {.lex_state = 5, .external_lex_state = 3}, - [1778] = {.lex_state = 4, .external_lex_state = 3}, - [1779] = {.lex_state = 4, .external_lex_state = 3}, - [1780] = {.lex_state = 5, .external_lex_state = 3}, - [1781] = {.lex_state = 4, .external_lex_state = 3}, - [1782] = {.lex_state = 4, .external_lex_state = 3}, - [1783] = {.lex_state = 5, .external_lex_state = 3}, - [1784] = {.lex_state = 4, .external_lex_state = 3}, - [1785] = {.lex_state = 4, .external_lex_state = 3}, - [1786] = {.lex_state = 4, .external_lex_state = 3}, - [1787] = {.lex_state = 4, .external_lex_state = 3}, - [1788] = {.lex_state = 4, .external_lex_state = 3}, - [1789] = {.lex_state = 4, .external_lex_state = 3}, - [1790] = {.lex_state = 4, .external_lex_state = 3}, - [1791] = {.lex_state = 4, .external_lex_state = 3}, - [1792] = {.lex_state = 4, .external_lex_state = 3}, - [1793] = {.lex_state = 4, .external_lex_state = 3}, - [1794] = {.lex_state = 4, .external_lex_state = 3}, - [1795] = {.lex_state = 4, .external_lex_state = 3}, - [1796] = {.lex_state = 4, .external_lex_state = 3}, - [1797] = {.lex_state = 4, .external_lex_state = 3}, - [1798] = {.lex_state = 4, .external_lex_state = 3}, - [1799] = {.lex_state = 4, .external_lex_state = 3}, - [1800] = {.lex_state = 4, .external_lex_state = 3}, - [1801] = {.lex_state = 4, .external_lex_state = 3}, - [1802] = {.lex_state = 4, .external_lex_state = 3}, - [1803] = {.lex_state = 4, .external_lex_state = 3}, - [1804] = {.lex_state = 4, .external_lex_state = 3}, - [1805] = {.lex_state = 4, .external_lex_state = 3}, - [1806] = {.lex_state = 5, .external_lex_state = 3}, - [1807] = {.lex_state = 4, .external_lex_state = 3}, - [1808] = {.lex_state = 4, .external_lex_state = 3}, - [1809] = {.lex_state = 4, .external_lex_state = 3}, - [1810] = {.lex_state = 4, .external_lex_state = 3}, - [1811] = {.lex_state = 4, .external_lex_state = 3}, - [1812] = {.lex_state = 4, .external_lex_state = 3}, - [1813] = {.lex_state = 5, .external_lex_state = 3}, - [1814] = {.lex_state = 4, .external_lex_state = 3}, - [1815] = {.lex_state = 4, .external_lex_state = 3}, - [1816] = {.lex_state = 13, .external_lex_state = 3}, - [1817] = {.lex_state = 4, .external_lex_state = 3}, - [1818] = {.lex_state = 4, .external_lex_state = 3}, - [1819] = {.lex_state = 4, .external_lex_state = 3}, - [1820] = {.lex_state = 5, .external_lex_state = 3}, - [1821] = {.lex_state = 4, .external_lex_state = 3}, - [1822] = {.lex_state = 5, .external_lex_state = 3}, - [1823] = {.lex_state = 4, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 3}, - [1825] = {.lex_state = 4, .external_lex_state = 3}, - [1826] = {.lex_state = 4, .external_lex_state = 3}, - [1827] = {.lex_state = 4, .external_lex_state = 3}, - [1828] = {.lex_state = 4, .external_lex_state = 3}, - [1829] = {.lex_state = 13, .external_lex_state = 3}, - [1830] = {.lex_state = 4, .external_lex_state = 3}, - [1831] = {.lex_state = 4, .external_lex_state = 3}, - [1832] = {.lex_state = 4, .external_lex_state = 3}, - [1833] = {.lex_state = 4, .external_lex_state = 3}, - [1834] = {.lex_state = 5, .external_lex_state = 3}, - [1835] = {.lex_state = 4, .external_lex_state = 3}, - [1836] = {.lex_state = 4, .external_lex_state = 3}, - [1837] = {.lex_state = 4, .external_lex_state = 3}, - [1838] = {.lex_state = 4, .external_lex_state = 3}, - [1839] = {.lex_state = 4, .external_lex_state = 3}, - [1840] = {.lex_state = 4, .external_lex_state = 3}, - [1841] = {.lex_state = 4, .external_lex_state = 3}, - [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 13, .external_lex_state = 3}, - [1844] = {.lex_state = 4, .external_lex_state = 3}, - [1845] = {.lex_state = 4, .external_lex_state = 3}, - [1846] = {.lex_state = 4, .external_lex_state = 3}, - [1847] = {.lex_state = 4, .external_lex_state = 3}, - [1848] = {.lex_state = 4, .external_lex_state = 3}, - [1849] = {.lex_state = 4, .external_lex_state = 3}, - [1850] = {.lex_state = 4, .external_lex_state = 3}, - [1851] = {.lex_state = 4, .external_lex_state = 3}, - [1852] = {.lex_state = 13, .external_lex_state = 3}, - [1853] = {.lex_state = 13, .external_lex_state = 3}, - [1854] = {.lex_state = 13, .external_lex_state = 3}, - [1855] = {.lex_state = 13, .external_lex_state = 3}, - [1856] = {.lex_state = 13, .external_lex_state = 3}, - [1857] = {.lex_state = 13, .external_lex_state = 3}, - [1858] = {.lex_state = 13, .external_lex_state = 3}, - [1859] = {.lex_state = 13, .external_lex_state = 3}, - [1860] = {.lex_state = 13, .external_lex_state = 3}, - [1861] = {.lex_state = 13, .external_lex_state = 3}, - [1862] = {.lex_state = 13, .external_lex_state = 3}, - [1863] = {.lex_state = 13, .external_lex_state = 3}, - [1864] = {.lex_state = 13, .external_lex_state = 3}, - [1865] = {.lex_state = 13, .external_lex_state = 3}, - [1866] = {.lex_state = 13, .external_lex_state = 3}, - [1867] = {.lex_state = 13, .external_lex_state = 3}, - [1868] = {.lex_state = 13, .external_lex_state = 3}, - [1869] = {.lex_state = 13, .external_lex_state = 3}, - [1870] = {.lex_state = 13, .external_lex_state = 3}, - [1871] = {.lex_state = 13, .external_lex_state = 3}, - [1872] = {.lex_state = 13, .external_lex_state = 3}, - [1873] = {.lex_state = 13, .external_lex_state = 3}, - [1874] = {.lex_state = 13, .external_lex_state = 3}, - [1875] = {.lex_state = 13, .external_lex_state = 3}, - [1876] = {.lex_state = 13, .external_lex_state = 3}, - [1877] = {.lex_state = 26, .external_lex_state = 3}, - [1878] = {.lex_state = 15, .external_lex_state = 3}, - [1879] = {.lex_state = 26, .external_lex_state = 3}, - [1880] = {.lex_state = 15, .external_lex_state = 3}, - [1881] = {.lex_state = 15, .external_lex_state = 3}, - [1882] = {.lex_state = 15, .external_lex_state = 3}, - [1883] = {.lex_state = 15, .external_lex_state = 3}, - [1884] = {.lex_state = 15, .external_lex_state = 3}, - [1885] = {.lex_state = 15, .external_lex_state = 3}, - [1886] = {.lex_state = 15, .external_lex_state = 3}, - [1887] = {.lex_state = 15, .external_lex_state = 3}, - [1888] = {.lex_state = 26, .external_lex_state = 3}, - [1889] = {.lex_state = 26, .external_lex_state = 3}, - [1890] = {.lex_state = 26, .external_lex_state = 3}, - [1891] = {.lex_state = 26, .external_lex_state = 3}, - [1892] = {.lex_state = 13, .external_lex_state = 3}, - [1893] = {.lex_state = 15, .external_lex_state = 3}, - [1894] = {.lex_state = 26, .external_lex_state = 3}, - [1895] = {.lex_state = 15, .external_lex_state = 3}, - [1896] = {.lex_state = 13, .external_lex_state = 3}, - [1897] = {.lex_state = 15, .external_lex_state = 3}, - [1898] = {.lex_state = 13, .external_lex_state = 3}, - [1899] = {.lex_state = 13, .external_lex_state = 3}, - [1900] = {.lex_state = 15, .external_lex_state = 3}, - [1901] = {.lex_state = 13, .external_lex_state = 3}, - [1902] = {.lex_state = 15, .external_lex_state = 3}, - [1903] = {.lex_state = 15, .external_lex_state = 3}, - [1904] = {.lex_state = 13, .external_lex_state = 3}, - [1905] = {.lex_state = 13, .external_lex_state = 3}, - [1906] = {.lex_state = 13, .external_lex_state = 3}, - [1907] = {.lex_state = 13, .external_lex_state = 3}, - [1908] = {.lex_state = 13, .external_lex_state = 3}, - [1909] = {.lex_state = 13, .external_lex_state = 3}, - [1910] = {.lex_state = 13, .external_lex_state = 3}, - [1911] = {.lex_state = 15, .external_lex_state = 3}, - [1912] = {.lex_state = 26, .external_lex_state = 3}, - [1913] = {.lex_state = 26, .external_lex_state = 3}, - [1914] = {.lex_state = 13, .external_lex_state = 3}, - [1915] = {.lex_state = 26, .external_lex_state = 3}, - [1916] = {.lex_state = 26, .external_lex_state = 3}, - [1917] = {.lex_state = 26, .external_lex_state = 3}, - [1918] = {.lex_state = 13, .external_lex_state = 3}, - [1919] = {.lex_state = 26, .external_lex_state = 3}, - [1920] = {.lex_state = 26, .external_lex_state = 3}, - [1921] = {.lex_state = 13, .external_lex_state = 3}, - [1922] = {.lex_state = 13, .external_lex_state = 3}, - [1923] = {.lex_state = 15, .external_lex_state = 3}, - [1924] = {.lex_state = 13, .external_lex_state = 3}, - [1925] = {.lex_state = 13, .external_lex_state = 3}, - [1926] = {.lex_state = 26, .external_lex_state = 3}, - [1927] = {.lex_state = 26, .external_lex_state = 3}, - [1928] = {.lex_state = 26, .external_lex_state = 3}, - [1929] = {.lex_state = 13, .external_lex_state = 3}, - [1930] = {.lex_state = 26, .external_lex_state = 3}, - [1931] = {.lex_state = 15, .external_lex_state = 3}, - [1932] = {.lex_state = 15, .external_lex_state = 3}, - [1933] = {.lex_state = 26, .external_lex_state = 3}, - [1934] = {.lex_state = 26, .external_lex_state = 3}, - [1935] = {.lex_state = 26, .external_lex_state = 3}, - [1936] = {.lex_state = 26, .external_lex_state = 3}, - [1937] = {.lex_state = 13, .external_lex_state = 3}, - [1938] = {.lex_state = 26, .external_lex_state = 3}, - [1939] = {.lex_state = 26, .external_lex_state = 3}, - [1940] = {.lex_state = 26, .external_lex_state = 3}, - [1941] = {.lex_state = 26, .external_lex_state = 3}, - [1942] = {.lex_state = 26, .external_lex_state = 3}, - [1943] = {.lex_state = 26, .external_lex_state = 3}, - [1944] = {.lex_state = 26, .external_lex_state = 3}, - [1945] = {.lex_state = 26, .external_lex_state = 3}, - [1946] = {.lex_state = 26, .external_lex_state = 3}, - [1947] = {.lex_state = 26, .external_lex_state = 3}, - [1948] = {.lex_state = 26, .external_lex_state = 3}, - [1949] = {.lex_state = 13, .external_lex_state = 3}, - [1950] = {.lex_state = 26, .external_lex_state = 3}, - [1951] = {.lex_state = 15, .external_lex_state = 3}, - [1952] = {.lex_state = 26, .external_lex_state = 3}, - [1953] = {.lex_state = 13, .external_lex_state = 3}, - [1954] = {.lex_state = 13, .external_lex_state = 3}, - [1955] = {.lex_state = 13, .external_lex_state = 3}, - [1956] = {.lex_state = 26, .external_lex_state = 3}, - [1957] = {.lex_state = 26, .external_lex_state = 3}, - [1958] = {.lex_state = 13, .external_lex_state = 3}, - [1959] = {.lex_state = 26, .external_lex_state = 3}, - [1960] = {.lex_state = 26, .external_lex_state = 3}, - [1961] = {.lex_state = 26, .external_lex_state = 3}, - [1962] = {.lex_state = 26, .external_lex_state = 3}, - [1963] = {.lex_state = 26, .external_lex_state = 3}, - [1964] = {.lex_state = 26, .external_lex_state = 3}, - [1965] = {.lex_state = 26, .external_lex_state = 3}, - [1966] = {.lex_state = 26, .external_lex_state = 3}, - [1967] = {.lex_state = 26, .external_lex_state = 3}, - [1968] = {.lex_state = 26, .external_lex_state = 3}, - [1969] = {.lex_state = 13, .external_lex_state = 3}, - [1970] = {.lex_state = 15, .external_lex_state = 3}, - [1971] = {.lex_state = 26, .external_lex_state = 3}, - [1972] = {.lex_state = 13, .external_lex_state = 3}, - [1973] = {.lex_state = 26, .external_lex_state = 3}, - [1974] = {.lex_state = 15, .external_lex_state = 3}, - [1975] = {.lex_state = 15, .external_lex_state = 3}, - [1976] = {.lex_state = 15, .external_lex_state = 3}, - [1977] = {.lex_state = 15, .external_lex_state = 3}, - [1978] = {.lex_state = 26, .external_lex_state = 3}, - [1979] = {.lex_state = 26, .external_lex_state = 3}, - [1980] = {.lex_state = 15, .external_lex_state = 3}, - [1981] = {.lex_state = 15, .external_lex_state = 3}, - [1982] = {.lex_state = 15, .external_lex_state = 3}, - [1983] = {.lex_state = 15, .external_lex_state = 3}, - [1984] = {.lex_state = 15, .external_lex_state = 3}, - [1985] = {.lex_state = 15, .external_lex_state = 3}, - [1986] = {.lex_state = 16, .external_lex_state = 3}, - [1987] = {.lex_state = 15, .external_lex_state = 3}, - [1988] = {.lex_state = 15, .external_lex_state = 3}, - [1989] = {.lex_state = 13, .external_lex_state = 3}, - [1990] = {.lex_state = 13, .external_lex_state = 3}, - [1991] = {.lex_state = 15, .external_lex_state = 3}, - [1992] = {.lex_state = 15, .external_lex_state = 3}, - [1993] = {.lex_state = 26, .external_lex_state = 3}, - [1994] = {.lex_state = 13, .external_lex_state = 3}, - [1995] = {.lex_state = 15, .external_lex_state = 3}, - [1996] = {.lex_state = 20, .external_lex_state = 3}, - [1997] = {.lex_state = 15, .external_lex_state = 3}, - [1998] = {.lex_state = 20, .external_lex_state = 3}, - [1999] = {.lex_state = 13, .external_lex_state = 3}, - [2000] = {.lex_state = 16, .external_lex_state = 3}, - [2001] = {.lex_state = 15, .external_lex_state = 3}, - [2002] = {.lex_state = 13, .external_lex_state = 3}, - [2003] = {.lex_state = 26, .external_lex_state = 3}, - [2004] = {.lex_state = 26, .external_lex_state = 3}, - [2005] = {.lex_state = 13, .external_lex_state = 3}, - [2006] = {.lex_state = 13, .external_lex_state = 3}, - [2007] = {.lex_state = 20, .external_lex_state = 3}, - [2008] = {.lex_state = 13, .external_lex_state = 3}, - [2009] = {.lex_state = 15, .external_lex_state = 3}, - [2010] = {.lex_state = 15, .external_lex_state = 3}, - [2011] = {.lex_state = 20, .external_lex_state = 3}, - [2012] = {.lex_state = 16, .external_lex_state = 3}, - [2013] = {.lex_state = 15, .external_lex_state = 3}, - [2014] = {.lex_state = 13, .external_lex_state = 3}, - [2015] = {.lex_state = 16, .external_lex_state = 3}, - [2016] = {.lex_state = 26, .external_lex_state = 3}, - [2017] = {.lex_state = 15, .external_lex_state = 3}, - [2018] = {.lex_state = 26, .external_lex_state = 3}, - [2019] = {.lex_state = 13, .external_lex_state = 3}, - [2020] = {.lex_state = 13, .external_lex_state = 3}, - [2021] = {.lex_state = 16, .external_lex_state = 3}, - [2022] = {.lex_state = 26, .external_lex_state = 3}, - [2023] = {.lex_state = 26, .external_lex_state = 3}, - [2024] = {.lex_state = 22, .external_lex_state = 3}, - [2025] = {.lex_state = 26, .external_lex_state = 3}, - [2026] = {.lex_state = 26, .external_lex_state = 3}, - [2027] = {.lex_state = 26, .external_lex_state = 3}, - [2028] = {.lex_state = 26, .external_lex_state = 3}, - [2029] = {.lex_state = 26, .external_lex_state = 3}, - [2030] = {.lex_state = 26, .external_lex_state = 3}, - [2031] = {.lex_state = 13, .external_lex_state = 3}, - [2032] = {.lex_state = 26, .external_lex_state = 3}, - [2033] = {.lex_state = 26, .external_lex_state = 3}, - [2034] = {.lex_state = 26, .external_lex_state = 3}, - [2035] = {.lex_state = 15, .external_lex_state = 3}, - [2036] = {.lex_state = 26, .external_lex_state = 3}, - [2037] = {.lex_state = 26, .external_lex_state = 3}, - [2038] = {.lex_state = 26, .external_lex_state = 3}, - [2039] = {.lex_state = 26, .external_lex_state = 3}, - [2040] = {.lex_state = 26, .external_lex_state = 3}, - [2041] = {.lex_state = 26, .external_lex_state = 3}, - [2042] = {.lex_state = 26, .external_lex_state = 3}, - [2043] = {.lex_state = 26, .external_lex_state = 3}, - [2044] = {.lex_state = 26, .external_lex_state = 3}, - [2045] = {.lex_state = 22, .external_lex_state = 3}, - [2046] = {.lex_state = 15, .external_lex_state = 3}, - [2047] = {.lex_state = 26, .external_lex_state = 3}, - [2048] = {.lex_state = 26, .external_lex_state = 3}, - [2049] = {.lex_state = 26, .external_lex_state = 3}, - [2050] = {.lex_state = 26, .external_lex_state = 3}, - [2051] = {.lex_state = 13, .external_lex_state = 3}, - [2052] = {.lex_state = 13, .external_lex_state = 3}, - [2053] = {.lex_state = 26, .external_lex_state = 3}, - [2054] = {.lex_state = 13, .external_lex_state = 3}, - [2055] = {.lex_state = 26, .external_lex_state = 3}, - [2056] = {.lex_state = 13, .external_lex_state = 3}, - [2057] = {.lex_state = 16, .external_lex_state = 3}, - [2058] = {.lex_state = 26, .external_lex_state = 3}, - [2059] = {.lex_state = 15, .external_lex_state = 3}, - [2060] = {.lex_state = 26, .external_lex_state = 3}, - [2061] = {.lex_state = 26, .external_lex_state = 3}, - [2062] = {.lex_state = 26, .external_lex_state = 3}, - [2063] = {.lex_state = 26, .external_lex_state = 3}, - [2064] = {.lex_state = 26, .external_lex_state = 3}, - [2065] = {.lex_state = 7, .external_lex_state = 3}, - [2066] = {.lex_state = 15, .external_lex_state = 3}, - [2067] = {.lex_state = 15, .external_lex_state = 3}, - [2068] = {.lex_state = 26, .external_lex_state = 3}, - [2069] = {.lex_state = 26, .external_lex_state = 3}, - [2070] = {.lex_state = 26, .external_lex_state = 3}, - [2071] = {.lex_state = 16, .external_lex_state = 3}, - [2072] = {.lex_state = 13, .external_lex_state = 3}, - [2073] = {.lex_state = 13, .external_lex_state = 3}, - [2074] = {.lex_state = 13, .external_lex_state = 3}, - [2075] = {.lex_state = 26, .external_lex_state = 3}, - [2076] = {.lex_state = 13, .external_lex_state = 3}, - [2077] = {.lex_state = 26, .external_lex_state = 3}, - [2078] = {.lex_state = 3, .external_lex_state = 3}, - [2079] = {.lex_state = 13, .external_lex_state = 3}, - [2080] = {.lex_state = 26, .external_lex_state = 3}, - [2081] = {.lex_state = 22, .external_lex_state = 3}, - [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 13, .external_lex_state = 3}, - [2084] = {.lex_state = 13, .external_lex_state = 3}, - [2085] = {.lex_state = 13, .external_lex_state = 3}, - [2086] = {.lex_state = 13, .external_lex_state = 3}, - [2087] = {.lex_state = 13, .external_lex_state = 3}, - [2088] = {.lex_state = 13, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 3}, - [2090] = {.lex_state = 13, .external_lex_state = 3}, - [2091] = {.lex_state = 22, .external_lex_state = 3}, - [2092] = {.lex_state = 13, .external_lex_state = 3}, - [2093] = {.lex_state = 13, .external_lex_state = 3}, - [2094] = {.lex_state = 13, .external_lex_state = 3}, - [2095] = {.lex_state = 26, .external_lex_state = 3}, - [2096] = {.lex_state = 13, .external_lex_state = 3}, - [2097] = {.lex_state = 13, .external_lex_state = 3}, - [2098] = {.lex_state = 22, .external_lex_state = 3}, - [2099] = {.lex_state = 15, .external_lex_state = 3}, - [2100] = {.lex_state = 22, .external_lex_state = 3}, - [2101] = {.lex_state = 13, .external_lex_state = 3}, - [2102] = {.lex_state = 16, .external_lex_state = 3}, - [2103] = {.lex_state = 16, .external_lex_state = 3}, - [2104] = {.lex_state = 13, .external_lex_state = 3}, - [2105] = {.lex_state = 13, .external_lex_state = 3}, - [2106] = {.lex_state = 7, .external_lex_state = 3}, - [2107] = {.lex_state = 13, .external_lex_state = 3}, - [2108] = {.lex_state = 3, .external_lex_state = 3}, - [2109] = {.lex_state = 13, .external_lex_state = 3}, - [2110] = {.lex_state = 13, .external_lex_state = 3}, - [2111] = {.lex_state = 13, .external_lex_state = 3}, - [2112] = {.lex_state = 13, .external_lex_state = 3}, - [2113] = {.lex_state = 13, .external_lex_state = 3}, - [2114] = {.lex_state = 26, .external_lex_state = 3}, - [2115] = {.lex_state = 13, .external_lex_state = 3}, - [2116] = {.lex_state = 16, .external_lex_state = 3}, - [2117] = {.lex_state = 13, .external_lex_state = 3}, - [2118] = {.lex_state = 13, .external_lex_state = 3}, - [2119] = {.lex_state = 26, .external_lex_state = 3}, - [2120] = {.lex_state = 16, .external_lex_state = 3}, - [2121] = {.lex_state = 7, .external_lex_state = 3}, - [2122] = {.lex_state = 26, .external_lex_state = 3}, - [2123] = {.lex_state = 3, .external_lex_state = 3}, - [2124] = {.lex_state = 13, .external_lex_state = 3}, - [2125] = {.lex_state = 13, .external_lex_state = 3}, - [2126] = {.lex_state = 13, .external_lex_state = 3}, - [2127] = {.lex_state = 13, .external_lex_state = 3}, - [2128] = {.lex_state = 13, .external_lex_state = 3}, - [2129] = {.lex_state = 13, .external_lex_state = 3}, - [2130] = {.lex_state = 22, .external_lex_state = 3}, - [2131] = {.lex_state = 13, .external_lex_state = 3}, - [2132] = {.lex_state = 13, .external_lex_state = 3}, - [2133] = {.lex_state = 22, .external_lex_state = 3}, - [2134] = {.lex_state = 13, .external_lex_state = 3}, - [2135] = {.lex_state = 13, .external_lex_state = 3}, - [2136] = {.lex_state = 22, .external_lex_state = 3}, - [2137] = {.lex_state = 22, .external_lex_state = 3}, - [2138] = {.lex_state = 13, .external_lex_state = 3}, - [2139] = {.lex_state = 13, .external_lex_state = 3}, - [2140] = {.lex_state = 7, .external_lex_state = 3}, - [2141] = {.lex_state = 22, .external_lex_state = 3}, - [2142] = {.lex_state = 0, .external_lex_state = 3}, - [2143] = {.lex_state = 13, .external_lex_state = 3}, - [2144] = {.lex_state = 13, .external_lex_state = 3}, - [2145] = {.lex_state = 22, .external_lex_state = 3}, - [2146] = {.lex_state = 13, .external_lex_state = 3}, - [2147] = {.lex_state = 13, .external_lex_state = 3}, - [2148] = {.lex_state = 22, .external_lex_state = 3}, - [2149] = {.lex_state = 13, .external_lex_state = 3}, - [2150] = {.lex_state = 13, .external_lex_state = 3}, - [2151] = {.lex_state = 13, .external_lex_state = 3}, - [2152] = {.lex_state = 13, .external_lex_state = 3}, - [2153] = {.lex_state = 13, .external_lex_state = 3}, - [2154] = {.lex_state = 13, .external_lex_state = 3}, - [2155] = {.lex_state = 13, .external_lex_state = 3}, - [2156] = {.lex_state = 13, .external_lex_state = 3}, - [2157] = {.lex_state = 13, .external_lex_state = 3}, - [2158] = {.lex_state = 22, .external_lex_state = 3}, - [2159] = {.lex_state = 13, .external_lex_state = 3}, - [2160] = {.lex_state = 13, .external_lex_state = 3}, - [2161] = {.lex_state = 13, .external_lex_state = 3}, - [2162] = {.lex_state = 13, .external_lex_state = 3}, - [2163] = {.lex_state = 13, .external_lex_state = 3}, - [2164] = {.lex_state = 13, .external_lex_state = 3}, - [2165] = {.lex_state = 13, .external_lex_state = 3}, - [2166] = {.lex_state = 13, .external_lex_state = 3}, - [2167] = {.lex_state = 13, .external_lex_state = 3}, - [2168] = {.lex_state = 13, .external_lex_state = 3}, - [2169] = {.lex_state = 13, .external_lex_state = 3}, - [2170] = {.lex_state = 13, .external_lex_state = 3}, - [2171] = {.lex_state = 13, .external_lex_state = 3}, - [2172] = {.lex_state = 13, .external_lex_state = 3}, - [2173] = {.lex_state = 22, .external_lex_state = 3}, - [2174] = {.lex_state = 20, .external_lex_state = 3}, - [2175] = {.lex_state = 13, .external_lex_state = 3}, - [2176] = {.lex_state = 22, .external_lex_state = 3}, - [2177] = {.lex_state = 13, .external_lex_state = 3}, - [2178] = {.lex_state = 13, .external_lex_state = 3}, - [2179] = {.lex_state = 13, .external_lex_state = 3}, - [2180] = {.lex_state = 13, .external_lex_state = 3}, - [2181] = {.lex_state = 13, .external_lex_state = 3}, - [2182] = {.lex_state = 13, .external_lex_state = 3}, - [2183] = {.lex_state = 13, .external_lex_state = 3}, - [2184] = {.lex_state = 13, .external_lex_state = 3}, - [2185] = {.lex_state = 13, .external_lex_state = 3}, - [2186] = {.lex_state = 13, .external_lex_state = 3}, - [2187] = {.lex_state = 13, .external_lex_state = 3}, - [2188] = {.lex_state = 22, .external_lex_state = 3}, - [2189] = {.lex_state = 13, .external_lex_state = 3}, - [2190] = {.lex_state = 13, .external_lex_state = 3}, - [2191] = {.lex_state = 13, .external_lex_state = 3}, - [2192] = {.lex_state = 13, .external_lex_state = 3}, - [2193] = {.lex_state = 13, .external_lex_state = 3}, - [2194] = {.lex_state = 13, .external_lex_state = 3}, - [2195] = {.lex_state = 22, .external_lex_state = 3}, - [2196] = {.lex_state = 22, .external_lex_state = 3}, - [2197] = {.lex_state = 0, .external_lex_state = 3}, - [2198] = {.lex_state = 0, .external_lex_state = 3}, - [2199] = {.lex_state = 26, .external_lex_state = 3}, - [2200] = {.lex_state = 16, .external_lex_state = 3}, - [2201] = {.lex_state = 0, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 7, .external_lex_state = 3}, - [2204] = {.lex_state = 67, .external_lex_state = 3}, - [2205] = {.lex_state = 67, .external_lex_state = 3}, - [2206] = {.lex_state = 26, .external_lex_state = 3}, - [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 67, .external_lex_state = 3}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 0, .external_lex_state = 3}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, - [2212] = {.lex_state = 22, .external_lex_state = 3}, - [2213] = {.lex_state = 7, .external_lex_state = 3}, - [2214] = {.lex_state = 0, .external_lex_state = 3}, - [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 13, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 67, .external_lex_state = 3}, - [2219] = {.lex_state = 22, .external_lex_state = 3}, - [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 13, .external_lex_state = 3}, - [2222] = {.lex_state = 22, .external_lex_state = 3}, - [2223] = {.lex_state = 22, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 0, .external_lex_state = 3}, - [2226] = {.lex_state = 0, .external_lex_state = 3}, - [2227] = {.lex_state = 67, .external_lex_state = 3}, - [2228] = {.lex_state = 13, .external_lex_state = 3}, - [2229] = {.lex_state = 7, .external_lex_state = 3}, - [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 22, .external_lex_state = 3}, - [2233] = {.lex_state = 67, .external_lex_state = 3}, - [2234] = {.lex_state = 22, .external_lex_state = 3}, - [2235] = {.lex_state = 13, .external_lex_state = 3}, - [2236] = {.lex_state = 0, .external_lex_state = 3}, - [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 13, .external_lex_state = 3}, - [2239] = {.lex_state = 13, .external_lex_state = 3}, - [2240] = {.lex_state = 13, .external_lex_state = 3}, - [2241] = {.lex_state = 13, .external_lex_state = 3}, - [2242] = {.lex_state = 26, .external_lex_state = 3}, - [2243] = {.lex_state = 17, .external_lex_state = 3}, - [2244] = {.lex_state = 13, .external_lex_state = 3}, - [2245] = {.lex_state = 13, .external_lex_state = 3}, - [2246] = {.lex_state = 26, .external_lex_state = 3}, - [2247] = {.lex_state = 20, .external_lex_state = 3}, - [2248] = {.lex_state = 13, .external_lex_state = 3}, - [2249] = {.lex_state = 13, .external_lex_state = 3}, - [2250] = {.lex_state = 13, .external_lex_state = 3}, - [2251] = {.lex_state = 17, .external_lex_state = 3}, - [2252] = {.lex_state = 13, .external_lex_state = 3}, - [2253] = {.lex_state = 13, .external_lex_state = 3}, - [2254] = {.lex_state = 13, .external_lex_state = 3}, - [2255] = {.lex_state = 13, .external_lex_state = 3}, - [2256] = {.lex_state = 13, .external_lex_state = 3}, - [2257] = {.lex_state = 13, .external_lex_state = 3}, - [2258] = {.lex_state = 16, .external_lex_state = 3}, - [2259] = {.lex_state = 13, .external_lex_state = 3}, - [2260] = {.lex_state = 13, .external_lex_state = 3}, - [2261] = {.lex_state = 0, .external_lex_state = 3}, - [2262] = {.lex_state = 26, .external_lex_state = 3}, - [2263] = {.lex_state = 13, .external_lex_state = 3}, - [2264] = {.lex_state = 13, .external_lex_state = 3}, - [2265] = {.lex_state = 13, .external_lex_state = 3}, - [2266] = {.lex_state = 13, .external_lex_state = 3}, - [2267] = {.lex_state = 13, .external_lex_state = 3}, - [2268] = {.lex_state = 16, .external_lex_state = 3}, - [2269] = {.lex_state = 13, .external_lex_state = 3}, - [2270] = {.lex_state = 13, .external_lex_state = 3}, - [2271] = {.lex_state = 16, .external_lex_state = 3}, - [2272] = {.lex_state = 17, .external_lex_state = 3}, - [2273] = {.lex_state = 13, .external_lex_state = 3}, - [2274] = {.lex_state = 13, .external_lex_state = 3}, - [2275] = {.lex_state = 13, .external_lex_state = 3}, - [2276] = {.lex_state = 16, .external_lex_state = 3}, - [2277] = {.lex_state = 13, .external_lex_state = 3}, - [2278] = {.lex_state = 13, .external_lex_state = 3}, - [2279] = {.lex_state = 22, .external_lex_state = 3}, - [2280] = {.lex_state = 13, .external_lex_state = 3}, - [2281] = {.lex_state = 13, .external_lex_state = 3}, - [2282] = {.lex_state = 13, .external_lex_state = 3}, - [2283] = {.lex_state = 20, .external_lex_state = 3}, - [2284] = {.lex_state = 13, .external_lex_state = 3}, - [2285] = {.lex_state = 13, .external_lex_state = 3}, - [2286] = {.lex_state = 13, .external_lex_state = 3}, - [2287] = {.lex_state = 13, .external_lex_state = 3}, - [2288] = {.lex_state = 16, .external_lex_state = 3}, - [2289] = {.lex_state = 26, .external_lex_state = 3}, - [2290] = {.lex_state = 12, .external_lex_state = 3}, - [2291] = {.lex_state = 17, .external_lex_state = 3}, - [2292] = {.lex_state = 13, .external_lex_state = 3}, - [2293] = {.lex_state = 13, .external_lex_state = 3}, - [2294] = {.lex_state = 26, .external_lex_state = 3}, - [2295] = {.lex_state = 0, .external_lex_state = 3}, - [2296] = {.lex_state = 13, .external_lex_state = 3}, - [2297] = {.lex_state = 13, .external_lex_state = 3}, - [2298] = {.lex_state = 16, .external_lex_state = 3}, - [2299] = {.lex_state = 12, .external_lex_state = 3}, - [2300] = {.lex_state = 13, .external_lex_state = 3}, - [2301] = {.lex_state = 13, .external_lex_state = 3}, - [2302] = {.lex_state = 13, .external_lex_state = 3}, - [2303] = {.lex_state = 13, .external_lex_state = 3}, - [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 0, .external_lex_state = 3}, - [2306] = {.lex_state = 13, .external_lex_state = 3}, - [2307] = {.lex_state = 26, .external_lex_state = 3}, - [2308] = {.lex_state = 13, .external_lex_state = 3}, - [2309] = {.lex_state = 13, .external_lex_state = 3}, - [2310] = {.lex_state = 13, .external_lex_state = 3}, - [2311] = {.lex_state = 13, .external_lex_state = 3}, - [2312] = {.lex_state = 13, .external_lex_state = 3}, - [2313] = {.lex_state = 26, .external_lex_state = 3}, - [2314] = {.lex_state = 13, .external_lex_state = 3}, - [2315] = {.lex_state = 17, .external_lex_state = 3}, - [2316] = {.lex_state = 13, .external_lex_state = 3}, - [2317] = {.lex_state = 17, .external_lex_state = 3}, - [2318] = {.lex_state = 26, .external_lex_state = 3}, - [2319] = {.lex_state = 13, .external_lex_state = 3}, - [2320] = {.lex_state = 13, .external_lex_state = 3}, - [2321] = {.lex_state = 13, .external_lex_state = 3}, - [2322] = {.lex_state = 13, .external_lex_state = 3}, - [2323] = {.lex_state = 13, .external_lex_state = 3}, - [2324] = {.lex_state = 13, .external_lex_state = 3}, - [2325] = {.lex_state = 13, .external_lex_state = 3}, - [2326] = {.lex_state = 13, .external_lex_state = 3}, - [2327] = {.lex_state = 26, .external_lex_state = 3}, - [2328] = {.lex_state = 13, .external_lex_state = 3}, - [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, - [2331] = {.lex_state = 13, .external_lex_state = 3}, - [2332] = {.lex_state = 7, .external_lex_state = 3}, - [2333] = {.lex_state = 13, .external_lex_state = 3}, - [2334] = {.lex_state = 7, .external_lex_state = 3}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, - [2336] = {.lex_state = 7, .external_lex_state = 3}, - [2337] = {.lex_state = 26, .external_lex_state = 3}, - [2338] = {.lex_state = 13, .external_lex_state = 3}, - [2339] = {.lex_state = 13, .external_lex_state = 3}, - [2340] = {.lex_state = 26, .external_lex_state = 3}, - [2341] = {.lex_state = 7, .external_lex_state = 3}, - [2342] = {.lex_state = 26, .external_lex_state = 3}, - [2343] = {.lex_state = 7, .external_lex_state = 3}, - [2344] = {.lex_state = 26, .external_lex_state = 3}, - [2345] = {.lex_state = 7, .external_lex_state = 3}, - [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 26, .external_lex_state = 3}, - [2349] = {.lex_state = 7, .external_lex_state = 3}, - [2350] = {.lex_state = 0, .external_lex_state = 3}, - [2351] = {.lex_state = 0, .external_lex_state = 3}, - [2352] = {.lex_state = 7, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 13, .external_lex_state = 3}, - [2355] = {.lex_state = 26, .external_lex_state = 3}, - [2356] = {.lex_state = 13, .external_lex_state = 3}, - [2357] = {.lex_state = 7, .external_lex_state = 3}, - [2358] = {.lex_state = 13, .external_lex_state = 3}, - [2359] = {.lex_state = 7, .external_lex_state = 3}, - [2360] = {.lex_state = 26, .external_lex_state = 3}, - [2361] = {.lex_state = 13, .external_lex_state = 3}, - [2362] = {.lex_state = 26, .external_lex_state = 3}, - [2363] = {.lex_state = 26, .external_lex_state = 3}, - [2364] = {.lex_state = 13, .external_lex_state = 3}, - [2365] = {.lex_state = 7, .external_lex_state = 3}, - [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, - [2368] = {.lex_state = 26, .external_lex_state = 3}, - [2369] = {.lex_state = 13, .external_lex_state = 3}, - [2370] = {.lex_state = 13, .external_lex_state = 3}, - [2371] = {.lex_state = 26, .external_lex_state = 3}, - [2372] = {.lex_state = 7, .external_lex_state = 3}, - [2373] = {.lex_state = 13, .external_lex_state = 3}, - [2374] = {.lex_state = 26, .external_lex_state = 3}, - [2375] = {.lex_state = 26, .external_lex_state = 3}, - [2376] = {.lex_state = 0, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 3}, - [2378] = {.lex_state = 26, .external_lex_state = 3}, - [2379] = {.lex_state = 7, .external_lex_state = 3}, - [2380] = {.lex_state = 13, .external_lex_state = 3}, - [2381] = {.lex_state = 13, .external_lex_state = 3}, - [2382] = {.lex_state = 67, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, - [2384] = {.lex_state = 13, .external_lex_state = 3}, - [2385] = {.lex_state = 7, .external_lex_state = 3}, - [2386] = {.lex_state = 7, .external_lex_state = 3}, - [2387] = {.lex_state = 7, .external_lex_state = 3}, - [2388] = {.lex_state = 13, .external_lex_state = 3}, - [2389] = {.lex_state = 7, .external_lex_state = 3}, - [2390] = {.lex_state = 13, .external_lex_state = 3}, - [2391] = {.lex_state = 67, .external_lex_state = 3}, - [2392] = {.lex_state = 7, .external_lex_state = 3}, - [2393] = {.lex_state = 26, .external_lex_state = 3}, - [2394] = {.lex_state = 26, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, - [2396] = {.lex_state = 26, .external_lex_state = 3}, - [2397] = {.lex_state = 26, .external_lex_state = 3}, - [2398] = {.lex_state = 67, .external_lex_state = 3}, - [2399] = {.lex_state = 26, .external_lex_state = 3}, - [2400] = {.lex_state = 0, .external_lex_state = 3}, - [2401] = {.lex_state = 26, .external_lex_state = 3}, - [2402] = {.lex_state = 13, .external_lex_state = 3}, - [2403] = {.lex_state = 26, .external_lex_state = 3}, - [2404] = {.lex_state = 26, .external_lex_state = 3}, - [2405] = {.lex_state = 26, .external_lex_state = 3}, - [2406] = {.lex_state = 26, .external_lex_state = 3}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 13, .external_lex_state = 3}, - [2409] = {.lex_state = 13, .external_lex_state = 3}, - [2410] = {.lex_state = 13, .external_lex_state = 3}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 7, .external_lex_state = 3}, - [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 26, .external_lex_state = 3}, - [2417] = {.lex_state = 7, .external_lex_state = 3}, - [2418] = {.lex_state = 13, .external_lex_state = 3}, - [2419] = {.lex_state = 0, .external_lex_state = 3}, - [2420] = {.lex_state = 3, .external_lex_state = 3}, - [2421] = {.lex_state = 27, .external_lex_state = 3}, - [2422] = {.lex_state = 27, .external_lex_state = 3}, - [2423] = {.lex_state = 3, .external_lex_state = 3}, - [2424] = {.lex_state = 3, .external_lex_state = 3}, - [2425] = {.lex_state = 3, .external_lex_state = 3}, - [2426] = {.lex_state = 7, .external_lex_state = 3}, - [2427] = {.lex_state = 7, .external_lex_state = 3}, - [2428] = {.lex_state = 27, .external_lex_state = 3}, - [2429] = {.lex_state = 3, .external_lex_state = 3}, - [2430] = {.lex_state = 7, .external_lex_state = 3}, - [2431] = {.lex_state = 13, .external_lex_state = 3}, - [2432] = {.lex_state = 0, .external_lex_state = 3}, - [2433] = {.lex_state = 7, .external_lex_state = 3}, - [2434] = {.lex_state = 7, .external_lex_state = 3}, - [2435] = {.lex_state = 7, .external_lex_state = 4}, - [2436] = {.lex_state = 13, .external_lex_state = 3}, - [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 26, .external_lex_state = 3}, - [2440] = {.lex_state = 7, .external_lex_state = 3}, - [2441] = {.lex_state = 7, .external_lex_state = 3}, - [2442] = {.lex_state = 67, .external_lex_state = 3}, - [2443] = {.lex_state = 7, .external_lex_state = 3}, - [2444] = {.lex_state = 13, .external_lex_state = 3}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, - [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 67, .external_lex_state = 3}, - [2448] = {.lex_state = 7, .external_lex_state = 3}, + [837] = {.lex_state = 9, .external_lex_state = 2}, + [838] = {.lex_state = 9, .external_lex_state = 2}, + [839] = {.lex_state = 9, .external_lex_state = 2}, + [840] = {.lex_state = 9, .external_lex_state = 2}, + [841] = {.lex_state = 9, .external_lex_state = 2}, + [842] = {.lex_state = 9, .external_lex_state = 2}, + [843] = {.lex_state = 9, .external_lex_state = 2}, + [844] = {.lex_state = 9, .external_lex_state = 2}, + [845] = {.lex_state = 13}, + [846] = {.lex_state = 13}, + [847] = {.lex_state = 13}, + [848] = {.lex_state = 13}, + [849] = {.lex_state = 13}, + [850] = {.lex_state = 9, .external_lex_state = 2}, + [851] = {.lex_state = 13}, + [852] = {.lex_state = 13}, + [853] = {.lex_state = 13}, + [854] = {.lex_state = 13}, + [855] = {.lex_state = 13}, + [856] = {.lex_state = 13}, + [857] = {.lex_state = 13}, + [858] = {.lex_state = 13}, + [859] = {.lex_state = 13}, + [860] = {.lex_state = 13}, + [861] = {.lex_state = 13}, + [862] = {.lex_state = 13}, + [863] = {.lex_state = 13}, + [864] = {.lex_state = 13}, + [865] = {.lex_state = 13}, + [866] = {.lex_state = 13}, + [867] = {.lex_state = 13}, + [868] = {.lex_state = 13}, + [869] = {.lex_state = 13}, + [870] = {.lex_state = 13}, + [871] = {.lex_state = 13}, + [872] = {.lex_state = 13}, + [873] = {.lex_state = 13}, + [874] = {.lex_state = 13}, + [875] = {.lex_state = 13}, + [876] = {.lex_state = 13}, + [877] = {.lex_state = 13}, + [878] = {.lex_state = 13}, + [879] = {.lex_state = 13}, + [880] = {.lex_state = 13}, + [881] = {.lex_state = 13}, + [882] = {.lex_state = 13}, + [883] = {.lex_state = 13}, + [884] = {.lex_state = 13}, + [885] = {.lex_state = 13}, + [886] = {.lex_state = 13}, + [887] = {.lex_state = 13}, + [888] = {.lex_state = 13}, + [889] = {.lex_state = 13}, + [890] = {.lex_state = 13}, + [891] = {.lex_state = 13}, + [892] = {.lex_state = 13}, + [893] = {.lex_state = 13}, + [894] = {.lex_state = 13}, + [895] = {.lex_state = 13}, + [896] = {.lex_state = 13}, + [897] = {.lex_state = 13}, + [898] = {.lex_state = 13}, + [899] = {.lex_state = 13}, + [900] = {.lex_state = 13}, + [901] = {.lex_state = 13}, + [902] = {.lex_state = 13}, + [903] = {.lex_state = 13}, + [904] = {.lex_state = 13}, + [905] = {.lex_state = 13}, + [906] = {.lex_state = 13}, + [907] = {.lex_state = 13}, + [908] = {.lex_state = 13}, + [909] = {.lex_state = 13}, + [910] = {.lex_state = 13}, + [911] = {.lex_state = 13}, + [912] = {.lex_state = 13}, + [913] = {.lex_state = 13}, + [914] = {.lex_state = 13}, + [915] = {.lex_state = 13}, + [916] = {.lex_state = 13}, + [917] = {.lex_state = 13}, + [918] = {.lex_state = 13}, + [919] = {.lex_state = 13}, + [920] = {.lex_state = 13}, + [921] = {.lex_state = 13}, + [922] = {.lex_state = 13}, + [923] = {.lex_state = 13}, + [924] = {.lex_state = 13}, + [925] = {.lex_state = 13}, + [926] = {.lex_state = 13}, + [927] = {.lex_state = 13}, + [928] = {.lex_state = 13}, + [929] = {.lex_state = 13}, + [930] = {.lex_state = 13}, + [931] = {.lex_state = 13}, + [932] = {.lex_state = 13}, + [933] = {.lex_state = 13}, + [934] = {.lex_state = 13}, + [935] = {.lex_state = 13}, + [936] = {.lex_state = 13}, + [937] = {.lex_state = 13}, + [938] = {.lex_state = 13}, + [939] = {.lex_state = 13}, + [940] = {.lex_state = 13}, + [941] = {.lex_state = 13}, + [942] = {.lex_state = 13}, + [943] = {.lex_state = 13}, + [944] = {.lex_state = 13}, + [945] = {.lex_state = 13}, + [946] = {.lex_state = 13}, + [947] = {.lex_state = 13}, + [948] = {.lex_state = 13}, + [949] = {.lex_state = 13}, + [950] = {.lex_state = 13}, + [951] = {.lex_state = 13}, + [952] = {.lex_state = 13}, + [953] = {.lex_state = 13}, + [954] = {.lex_state = 13}, + [955] = {.lex_state = 13}, + [956] = {.lex_state = 13}, + [957] = {.lex_state = 13}, + [958] = {.lex_state = 13}, + [959] = {.lex_state = 13}, + [960] = {.lex_state = 13}, + [961] = {.lex_state = 13}, + [962] = {.lex_state = 13}, + [963] = {.lex_state = 13}, + [964] = {.lex_state = 13}, + [965] = {.lex_state = 13}, + [966] = {.lex_state = 13}, + [967] = {.lex_state = 13}, + [968] = {.lex_state = 13}, + [969] = {.lex_state = 13}, + [970] = {.lex_state = 13}, + [971] = {.lex_state = 13}, + [972] = {.lex_state = 13}, + [973] = {.lex_state = 13}, + [974] = {.lex_state = 13}, + [975] = {.lex_state = 13}, + [976] = {.lex_state = 13}, + [977] = {.lex_state = 13}, + [978] = {.lex_state = 13}, + [979] = {.lex_state = 13}, + [980] = {.lex_state = 13}, + [981] = {.lex_state = 13}, + [982] = {.lex_state = 13}, + [983] = {.lex_state = 13}, + [984] = {.lex_state = 13}, + [985] = {.lex_state = 13}, + [986] = {.lex_state = 13}, + [987] = {.lex_state = 13}, + [988] = {.lex_state = 13}, + [989] = {.lex_state = 13}, + [990] = {.lex_state = 13}, + [991] = {.lex_state = 13}, + [992] = {.lex_state = 13}, + [993] = {.lex_state = 13}, + [994] = {.lex_state = 13}, + [995] = {.lex_state = 13}, + [996] = {.lex_state = 13}, + [997] = {.lex_state = 13}, + [998] = {.lex_state = 13}, + [999] = {.lex_state = 13}, + [1000] = {.lex_state = 13}, + [1001] = {.lex_state = 13}, + [1002] = {.lex_state = 13}, + [1003] = {.lex_state = 13}, + [1004] = {.lex_state = 13}, + [1005] = {.lex_state = 13}, + [1006] = {.lex_state = 12, .external_lex_state = 2}, + [1007] = {.lex_state = 12, .external_lex_state = 2}, + [1008] = {.lex_state = 12, .external_lex_state = 2}, + [1009] = {.lex_state = 9, .external_lex_state = 2}, + [1010] = {.lex_state = 13}, + [1011] = {.lex_state = 10, .external_lex_state = 2}, + [1012] = {.lex_state = 3}, + [1013] = {.lex_state = 3}, + [1014] = {.lex_state = 3}, + [1015] = {.lex_state = 3}, + [1016] = {.lex_state = 7}, + [1017] = {.lex_state = 7}, + [1018] = {.lex_state = 7}, + [1019] = {.lex_state = 7}, + [1020] = {.lex_state = 7}, + [1021] = {.lex_state = 7}, + [1022] = {.lex_state = 3}, + [1023] = {.lex_state = 3}, + [1024] = {.lex_state = 3}, + [1025] = {.lex_state = 7}, + [1026] = {.lex_state = 3}, + [1027] = {.lex_state = 3}, + [1028] = {.lex_state = 3}, + [1029] = {.lex_state = 3}, + [1030] = {.lex_state = 7}, + [1031] = {.lex_state = 7}, + [1032] = {.lex_state = 3}, + [1033] = {.lex_state = 9, .external_lex_state = 2}, + [1034] = {.lex_state = 9, .external_lex_state = 2}, + [1035] = {.lex_state = 21}, + [1036] = {.lex_state = 4}, + [1037] = {.lex_state = 4}, + [1038] = {.lex_state = 4}, + [1039] = {.lex_state = 4}, + [1040] = {.lex_state = 4}, + [1041] = {.lex_state = 4}, + [1042] = {.lex_state = 21}, + [1043] = {.lex_state = 21}, + [1044] = {.lex_state = 21}, + [1045] = {.lex_state = 21}, + [1046] = {.lex_state = 17}, + [1047] = {.lex_state = 17}, + [1048] = {.lex_state = 3}, + [1049] = {.lex_state = 13}, + [1050] = {.lex_state = 17}, + [1051] = {.lex_state = 17}, + [1052] = {.lex_state = 4}, + [1053] = {.lex_state = 4}, + [1054] = {.lex_state = 4}, + [1055] = {.lex_state = 4}, + [1056] = {.lex_state = 9, .external_lex_state = 2}, + [1057] = {.lex_state = 17}, + [1058] = {.lex_state = 4}, + [1059] = {.lex_state = 4}, + [1060] = {.lex_state = 17}, + [1061] = {.lex_state = 9, .external_lex_state = 2}, + [1062] = {.lex_state = 17}, + [1063] = {.lex_state = 18}, + [1064] = {.lex_state = 4}, + [1065] = {.lex_state = 17}, + [1066] = {.lex_state = 4}, + [1067] = {.lex_state = 4}, + [1068] = {.lex_state = 4}, + [1069] = {.lex_state = 4}, + [1070] = {.lex_state = 4}, + [1071] = {.lex_state = 17}, + [1072] = {.lex_state = 4}, + [1073] = {.lex_state = 13}, + [1074] = {.lex_state = 17}, + [1075] = {.lex_state = 4}, + [1076] = {.lex_state = 4}, + [1077] = {.lex_state = 4}, + [1078] = {.lex_state = 9, .external_lex_state = 2}, + [1079] = {.lex_state = 18}, + [1080] = {.lex_state = 4}, + [1081] = {.lex_state = 17}, + [1082] = {.lex_state = 4}, + [1083] = {.lex_state = 4}, + [1084] = {.lex_state = 4}, + [1085] = {.lex_state = 4}, + [1086] = {.lex_state = 17}, + [1087] = {.lex_state = 4}, + [1088] = {.lex_state = 7}, + [1089] = {.lex_state = 7}, + [1090] = {.lex_state = 7}, + [1091] = {.lex_state = 7}, + [1092] = {.lex_state = 7}, + [1093] = {.lex_state = 7}, + [1094] = {.lex_state = 4}, + [1095] = {.lex_state = 7}, + [1096] = {.lex_state = 7}, + [1097] = {.lex_state = 7}, + [1098] = {.lex_state = 7}, + [1099] = {.lex_state = 7}, + [1100] = {.lex_state = 7}, + [1101] = {.lex_state = 7}, + [1102] = {.lex_state = 4}, + [1103] = {.lex_state = 7}, + [1104] = {.lex_state = 7}, + [1105] = {.lex_state = 7}, + [1106] = {.lex_state = 4}, + [1107] = {.lex_state = 4}, + [1108] = {.lex_state = 7}, + [1109] = {.lex_state = 7}, + [1110] = {.lex_state = 7}, + [1111] = {.lex_state = 4}, + [1112] = {.lex_state = 7}, + [1113] = {.lex_state = 7}, + [1114] = {.lex_state = 7}, + [1115] = {.lex_state = 7}, + [1116] = {.lex_state = 4}, + [1117] = {.lex_state = 7}, + [1118] = {.lex_state = 7}, + [1119] = {.lex_state = 4}, + [1120] = {.lex_state = 7}, + [1121] = {.lex_state = 7}, + [1122] = {.lex_state = 7}, + [1123] = {.lex_state = 4}, + [1124] = {.lex_state = 7}, + [1125] = {.lex_state = 7}, + [1126] = {.lex_state = 7}, + [1127] = {.lex_state = 7}, + [1128] = {.lex_state = 7}, + [1129] = {.lex_state = 7}, + [1130] = {.lex_state = 7}, + [1131] = {.lex_state = 7}, + [1132] = {.lex_state = 7}, + [1133] = {.lex_state = 4}, + [1134] = {.lex_state = 7}, + [1135] = {.lex_state = 7}, + [1136] = {.lex_state = 7}, + [1137] = {.lex_state = 7}, + [1138] = {.lex_state = 7}, + [1139] = {.lex_state = 7}, + [1140] = {.lex_state = 4}, + [1141] = {.lex_state = 7}, + [1142] = {.lex_state = 7}, + [1143] = {.lex_state = 7}, + [1144] = {.lex_state = 7}, + [1145] = {.lex_state = 4}, + [1146] = {.lex_state = 4}, + [1147] = {.lex_state = 7}, + [1148] = {.lex_state = 4}, + [1149] = {.lex_state = 7}, + [1150] = {.lex_state = 4}, + [1151] = {.lex_state = 4}, + [1152] = {.lex_state = 4}, + [1153] = {.lex_state = 4}, + [1154] = {.lex_state = 4}, + [1155] = {.lex_state = 4}, + [1156] = {.lex_state = 4}, + [1157] = {.lex_state = 4}, + [1158] = {.lex_state = 7}, + [1159] = {.lex_state = 7}, + [1160] = {.lex_state = 7}, + [1161] = {.lex_state = 7}, + [1162] = {.lex_state = 4}, + [1163] = {.lex_state = 7}, + [1164] = {.lex_state = 7}, + [1165] = {.lex_state = 7}, + [1166] = {.lex_state = 4}, + [1167] = {.lex_state = 7}, + [1168] = {.lex_state = 7}, + [1169] = {.lex_state = 4}, + [1170] = {.lex_state = 4}, + [1171] = {.lex_state = 7}, + [1172] = {.lex_state = 4}, + [1173] = {.lex_state = 7}, + [1174] = {.lex_state = 4}, + [1175] = {.lex_state = 7}, + [1176] = {.lex_state = 7}, + [1177] = {.lex_state = 7}, + [1178] = {.lex_state = 7}, + [1179] = {.lex_state = 7}, + [1180] = {.lex_state = 4}, + [1181] = {.lex_state = 7}, + [1182] = {.lex_state = 7}, + [1183] = {.lex_state = 7}, + [1184] = {.lex_state = 7}, + [1185] = {.lex_state = 7}, + [1186] = {.lex_state = 7}, + [1187] = {.lex_state = 7}, + [1188] = {.lex_state = 7}, + [1189] = {.lex_state = 7}, + [1190] = {.lex_state = 7}, + [1191] = {.lex_state = 7}, + [1192] = {.lex_state = 7}, + [1193] = {.lex_state = 7}, + [1194] = {.lex_state = 7}, + [1195] = {.lex_state = 7}, + [1196] = {.lex_state = 7}, + [1197] = {.lex_state = 7}, + [1198] = {.lex_state = 7}, + [1199] = {.lex_state = 7}, + [1200] = {.lex_state = 7}, + [1201] = {.lex_state = 7}, + [1202] = {.lex_state = 7}, + [1203] = {.lex_state = 7}, + [1204] = {.lex_state = 4}, + [1205] = {.lex_state = 7}, + [1206] = {.lex_state = 7}, + [1207] = {.lex_state = 4}, + [1208] = {.lex_state = 7}, + [1209] = {.lex_state = 7}, + [1210] = {.lex_state = 7}, + [1211] = {.lex_state = 7}, + [1212] = {.lex_state = 4}, + [1213] = {.lex_state = 7}, + [1214] = {.lex_state = 7}, + [1215] = {.lex_state = 4}, + [1216] = {.lex_state = 7}, + [1217] = {.lex_state = 4}, + [1218] = {.lex_state = 7}, + [1219] = {.lex_state = 7}, + [1220] = {.lex_state = 7}, + [1221] = {.lex_state = 7}, + [1222] = {.lex_state = 7}, + [1223] = {.lex_state = 4}, + [1224] = {.lex_state = 7}, + [1225] = {.lex_state = 7}, + [1226] = {.lex_state = 7}, + [1227] = {.lex_state = 7}, + [1228] = {.lex_state = 7}, + [1229] = {.lex_state = 7}, + [1230] = {.lex_state = 7}, + [1231] = {.lex_state = 7}, + [1232] = {.lex_state = 7}, + [1233] = {.lex_state = 4}, + [1234] = {.lex_state = 7}, + [1235] = {.lex_state = 7}, + [1236] = {.lex_state = 7}, + [1237] = {.lex_state = 7}, + [1238] = {.lex_state = 7}, + [1239] = {.lex_state = 7}, + [1240] = {.lex_state = 7}, + [1241] = {.lex_state = 7}, + [1242] = {.lex_state = 7}, + [1243] = {.lex_state = 4}, + [1244] = {.lex_state = 7}, + [1245] = {.lex_state = 7}, + [1246] = {.lex_state = 7}, + [1247] = {.lex_state = 4}, + [1248] = {.lex_state = 7}, + [1249] = {.lex_state = 7}, + [1250] = {.lex_state = 7}, + [1251] = {.lex_state = 7}, + [1252] = {.lex_state = 4}, + [1253] = {.lex_state = 7}, + [1254] = {.lex_state = 4}, + [1255] = {.lex_state = 7}, + [1256] = {.lex_state = 7}, + [1257] = {.lex_state = 7}, + [1258] = {.lex_state = 4}, + [1259] = {.lex_state = 7}, + [1260] = {.lex_state = 7}, + [1261] = {.lex_state = 4}, + [1262] = {.lex_state = 7}, + [1263] = {.lex_state = 7}, + [1264] = {.lex_state = 4}, + [1265] = {.lex_state = 7}, + [1266] = {.lex_state = 7}, + [1267] = {.lex_state = 7}, + [1268] = {.lex_state = 7}, + [1269] = {.lex_state = 4}, + [1270] = {.lex_state = 7}, + [1271] = {.lex_state = 4}, + [1272] = {.lex_state = 7}, + [1273] = {.lex_state = 4}, + [1274] = {.lex_state = 4}, + [1275] = {.lex_state = 4}, + [1276] = {.lex_state = 7}, + [1277] = {.lex_state = 7}, + [1278] = {.lex_state = 7}, + [1279] = {.lex_state = 4}, + [1280] = {.lex_state = 4}, + [1281] = {.lex_state = 7}, + [1282] = {.lex_state = 4}, + [1283] = {.lex_state = 7}, + [1284] = {.lex_state = 4}, + [1285] = {.lex_state = 7}, + [1286] = {.lex_state = 7}, + [1287] = {.lex_state = 4}, + [1288] = {.lex_state = 4}, + [1289] = {.lex_state = 7}, + [1290] = {.lex_state = 7}, + [1291] = {.lex_state = 7}, + [1292] = {.lex_state = 7}, + [1293] = {.lex_state = 7}, + [1294] = {.lex_state = 4}, + [1295] = {.lex_state = 7}, + [1296] = {.lex_state = 4}, + [1297] = {.lex_state = 7}, + [1298] = {.lex_state = 4}, + [1299] = {.lex_state = 4}, + [1300] = {.lex_state = 7}, + [1301] = {.lex_state = 7}, + [1302] = {.lex_state = 7}, + [1303] = {.lex_state = 7}, + [1304] = {.lex_state = 7}, + [1305] = {.lex_state = 7}, + [1306] = {.lex_state = 7}, + [1307] = {.lex_state = 7}, + [1308] = {.lex_state = 7}, + [1309] = {.lex_state = 7}, + [1310] = {.lex_state = 7}, + [1311] = {.lex_state = 7}, + [1312] = {.lex_state = 7}, + [1313] = {.lex_state = 4}, + [1314] = {.lex_state = 7}, + [1315] = {.lex_state = 7}, + [1316] = {.lex_state = 7}, + [1317] = {.lex_state = 4}, + [1318] = {.lex_state = 7}, + [1319] = {.lex_state = 7}, + [1320] = {.lex_state = 4}, + [1321] = {.lex_state = 7}, + [1322] = {.lex_state = 7}, + [1323] = {.lex_state = 4}, + [1324] = {.lex_state = 7}, + [1325] = {.lex_state = 7}, + [1326] = {.lex_state = 7}, + [1327] = {.lex_state = 7}, + [1328] = {.lex_state = 7}, + [1329] = {.lex_state = 7}, + [1330] = {.lex_state = 7}, + [1331] = {.lex_state = 7}, + [1332] = {.lex_state = 4}, + [1333] = {.lex_state = 7}, + [1334] = {.lex_state = 4}, + [1335] = {.lex_state = 4}, + [1336] = {.lex_state = 4}, + [1337] = {.lex_state = 7}, + [1338] = {.lex_state = 7}, + [1339] = {.lex_state = 7}, + [1340] = {.lex_state = 7}, + [1341] = {.lex_state = 7}, + [1342] = {.lex_state = 7}, + [1343] = {.lex_state = 7}, + [1344] = {.lex_state = 7}, + [1345] = {.lex_state = 7}, + [1346] = {.lex_state = 7}, + [1347] = {.lex_state = 4}, + [1348] = {.lex_state = 7}, + [1349] = {.lex_state = 7}, + [1350] = {.lex_state = 4}, + [1351] = {.lex_state = 7}, + [1352] = {.lex_state = 7}, + [1353] = {.lex_state = 7}, + [1354] = {.lex_state = 4}, + [1355] = {.lex_state = 7}, + [1356] = {.lex_state = 7}, + [1357] = {.lex_state = 7}, + [1358] = {.lex_state = 7}, + [1359] = {.lex_state = 7}, + [1360] = {.lex_state = 7}, + [1361] = {.lex_state = 7}, + [1362] = {.lex_state = 7}, + [1363] = {.lex_state = 7}, + [1364] = {.lex_state = 7}, + [1365] = {.lex_state = 7}, + [1366] = {.lex_state = 4}, + [1367] = {.lex_state = 7}, + [1368] = {.lex_state = 4}, + [1369] = {.lex_state = 7}, + [1370] = {.lex_state = 7}, + [1371] = {.lex_state = 4}, + [1372] = {.lex_state = 7}, + [1373] = {.lex_state = 7}, + [1374] = {.lex_state = 7}, + [1375] = {.lex_state = 7}, + [1376] = {.lex_state = 7}, + [1377] = {.lex_state = 7}, + [1378] = {.lex_state = 7}, + [1379] = {.lex_state = 7}, + [1380] = {.lex_state = 7}, + [1381] = {.lex_state = 7}, + [1382] = {.lex_state = 7}, + [1383] = {.lex_state = 7}, + [1384] = {.lex_state = 7}, + [1385] = {.lex_state = 4}, + [1386] = {.lex_state = 4}, + [1387] = {.lex_state = 4}, + [1388] = {.lex_state = 7}, + [1389] = {.lex_state = 7}, + [1390] = {.lex_state = 7}, + [1391] = {.lex_state = 7}, + [1392] = {.lex_state = 4}, + [1393] = {.lex_state = 7}, + [1394] = {.lex_state = 7}, + [1395] = {.lex_state = 4}, + [1396] = {.lex_state = 7}, + [1397] = {.lex_state = 4}, + [1398] = {.lex_state = 4}, + [1399] = {.lex_state = 4}, + [1400] = {.lex_state = 4}, + [1401] = {.lex_state = 4}, + [1402] = {.lex_state = 4}, + [1403] = {.lex_state = 7}, + [1404] = {.lex_state = 4}, + [1405] = {.lex_state = 4}, + [1406] = {.lex_state = 7}, + [1407] = {.lex_state = 7}, + [1408] = {.lex_state = 7}, + [1409] = {.lex_state = 7}, + [1410] = {.lex_state = 7}, + [1411] = {.lex_state = 7}, + [1412] = {.lex_state = 7}, + [1413] = {.lex_state = 7}, + [1414] = {.lex_state = 7}, + [1415] = {.lex_state = 7}, + [1416] = {.lex_state = 7}, + [1417] = {.lex_state = 4}, + [1418] = {.lex_state = 7}, + [1419] = {.lex_state = 7}, + [1420] = {.lex_state = 7}, + [1421] = {.lex_state = 7}, + [1422] = {.lex_state = 4}, + [1423] = {.lex_state = 4}, + [1424] = {.lex_state = 4}, + [1425] = {.lex_state = 4}, + [1426] = {.lex_state = 7}, + [1427] = {.lex_state = 4}, + [1428] = {.lex_state = 4}, + [1429] = {.lex_state = 4}, + [1430] = {.lex_state = 4}, + [1431] = {.lex_state = 4}, + [1432] = {.lex_state = 4}, + [1433] = {.lex_state = 4}, + [1434] = {.lex_state = 7}, + [1435] = {.lex_state = 4}, + [1436] = {.lex_state = 4}, + [1437] = {.lex_state = 4}, + [1438] = {.lex_state = 7}, + [1439] = {.lex_state = 7}, + [1440] = {.lex_state = 4}, + [1441] = {.lex_state = 4}, + [1442] = {.lex_state = 4}, + [1443] = {.lex_state = 4}, + [1444] = {.lex_state = 4}, + [1445] = {.lex_state = 4}, + [1446] = {.lex_state = 4}, + [1447] = {.lex_state = 13}, + [1448] = {.lex_state = 4}, + [1449] = {.lex_state = 13}, + [1450] = {.lex_state = 6}, + [1451] = {.lex_state = 13}, + [1452] = {.lex_state = 4}, + [1453] = {.lex_state = 13}, + [1454] = {.lex_state = 13}, + [1455] = {.lex_state = 13}, + [1456] = {.lex_state = 13}, + [1457] = {.lex_state = 13}, + [1458] = {.lex_state = 13}, + [1459] = {.lex_state = 4}, + [1460] = {.lex_state = 4}, + [1461] = {.lex_state = 4}, + [1462] = {.lex_state = 4}, + [1463] = {.lex_state = 5}, + [1464] = {.lex_state = 4}, + [1465] = {.lex_state = 6}, + [1466] = {.lex_state = 4}, + [1467] = {.lex_state = 6}, + [1468] = {.lex_state = 4}, + [1469] = {.lex_state = 4}, + [1470] = {.lex_state = 4}, + [1471] = {.lex_state = 6}, + [1472] = {.lex_state = 4}, + [1473] = {.lex_state = 4}, + [1474] = {.lex_state = 4}, + [1475] = {.lex_state = 4}, + [1476] = {.lex_state = 4}, + [1477] = {.lex_state = 4}, + [1478] = {.lex_state = 4}, + [1479] = {.lex_state = 4}, + [1480] = {.lex_state = 4}, + [1481] = {.lex_state = 4}, + [1482] = {.lex_state = 4}, + [1483] = {.lex_state = 13}, + [1484] = {.lex_state = 6}, + [1485] = {.lex_state = 5}, + [1486] = {.lex_state = 5}, + [1487] = {.lex_state = 6}, + [1488] = {.lex_state = 13}, + [1489] = {.lex_state = 13}, + [1490] = {.lex_state = 13}, + [1491] = {.lex_state = 13}, + [1492] = {.lex_state = 4}, + [1493] = {.lex_state = 13}, + [1494] = {.lex_state = 6}, + [1495] = {.lex_state = 6}, + [1496] = {.lex_state = 5}, + [1497] = {.lex_state = 6}, + [1498] = {.lex_state = 6}, + [1499] = {.lex_state = 6}, + [1500] = {.lex_state = 6}, + [1501] = {.lex_state = 13}, + [1502] = {.lex_state = 13}, + [1503] = {.lex_state = 5}, + [1504] = {.lex_state = 4}, + [1505] = {.lex_state = 13}, + [1506] = {.lex_state = 13}, + [1507] = {.lex_state = 13}, + [1508] = {.lex_state = 5}, + [1509] = {.lex_state = 4}, + [1510] = {.lex_state = 4}, + [1511] = {.lex_state = 5}, + [1512] = {.lex_state = 5}, + [1513] = {.lex_state = 5}, + [1514] = {.lex_state = 4}, + [1515] = {.lex_state = 5}, + [1516] = {.lex_state = 5}, + [1517] = {.lex_state = 4}, + [1518] = {.lex_state = 4}, + [1519] = {.lex_state = 5}, + [1520] = {.lex_state = 5}, + [1521] = {.lex_state = 5}, + [1522] = {.lex_state = 5}, + [1523] = {.lex_state = 9, .external_lex_state = 2}, + [1524] = {.lex_state = 5}, + [1525] = {.lex_state = 9, .external_lex_state = 2}, + [1526] = {.lex_state = 4}, + [1527] = {.lex_state = 5}, + [1528] = {.lex_state = 5}, + [1529] = {.lex_state = 9, .external_lex_state = 2}, + [1530] = {.lex_state = 4}, + [1531] = {.lex_state = 9, .external_lex_state = 2}, + [1532] = {.lex_state = 19}, + [1533] = {.lex_state = 13}, + [1534] = {.lex_state = 5}, + [1535] = {.lex_state = 4}, + [1536] = {.lex_state = 5}, + [1537] = {.lex_state = 4}, + [1538] = {.lex_state = 4}, + [1539] = {.lex_state = 5}, + [1540] = {.lex_state = 5}, + [1541] = {.lex_state = 4}, + [1542] = {.lex_state = 19}, + [1543] = {.lex_state = 4}, + [1544] = {.lex_state = 4}, + [1545] = {.lex_state = 13}, + [1546] = {.lex_state = 5}, + [1547] = {.lex_state = 13}, + [1548] = {.lex_state = 5}, + [1549] = {.lex_state = 5}, + [1550] = {.lex_state = 5}, + [1551] = {.lex_state = 4}, + [1552] = {.lex_state = 5}, + [1553] = {.lex_state = 4}, + [1554] = {.lex_state = 5}, + [1555] = {.lex_state = 5}, + [1556] = {.lex_state = 4}, + [1557] = {.lex_state = 5}, + [1558] = {.lex_state = 4}, + [1559] = {.lex_state = 5}, + [1560] = {.lex_state = 19}, + [1561] = {.lex_state = 4}, + [1562] = {.lex_state = 4}, + [1563] = {.lex_state = 4}, + [1564] = {.lex_state = 19}, + [1565] = {.lex_state = 19}, + [1566] = {.lex_state = 4}, + [1567] = {.lex_state = 19}, + [1568] = {.lex_state = 4}, + [1569] = {.lex_state = 5}, + [1570] = {.lex_state = 5}, + [1571] = {.lex_state = 5}, + [1572] = {.lex_state = 19}, + [1573] = {.lex_state = 4}, + [1574] = {.lex_state = 6}, + [1575] = {.lex_state = 4}, + [1576] = {.lex_state = 19}, + [1577] = {.lex_state = 13}, + [1578] = {.lex_state = 13}, + [1579] = {.lex_state = 19}, + [1580] = {.lex_state = 19}, + [1581] = {.lex_state = 5}, + [1582] = {.lex_state = 13}, + [1583] = {.lex_state = 19}, + [1584] = {.lex_state = 5}, + [1585] = {.lex_state = 13}, + [1586] = {.lex_state = 5}, + [1587] = {.lex_state = 19}, + [1588] = {.lex_state = 5}, + [1589] = {.lex_state = 4}, + [1590] = {.lex_state = 5}, + [1591] = {.lex_state = 5}, + [1592] = {.lex_state = 5}, + [1593] = {.lex_state = 5}, + [1594] = {.lex_state = 5}, + [1595] = {.lex_state = 5}, + [1596] = {.lex_state = 4}, + [1597] = {.lex_state = 4}, + [1598] = {.lex_state = 4}, + [1599] = {.lex_state = 5}, + [1600] = {.lex_state = 5}, + [1601] = {.lex_state = 5}, + [1602] = {.lex_state = 5}, + [1603] = {.lex_state = 5}, + [1604] = {.lex_state = 4}, + [1605] = {.lex_state = 5}, + [1606] = {.lex_state = 4}, + [1607] = {.lex_state = 5}, + [1608] = {.lex_state = 4}, + [1609] = {.lex_state = 5}, + [1610] = {.lex_state = 5}, + [1611] = {.lex_state = 4}, + [1612] = {.lex_state = 5}, + [1613] = {.lex_state = 5}, + [1614] = {.lex_state = 5}, + [1615] = {.lex_state = 5}, + [1616] = {.lex_state = 5}, + [1617] = {.lex_state = 5}, + [1618] = {.lex_state = 4}, + [1619] = {.lex_state = 5}, + [1620] = {.lex_state = 5}, + [1621] = {.lex_state = 5}, + [1622] = {.lex_state = 4}, + [1623] = {.lex_state = 5}, + [1624] = {.lex_state = 5}, + [1625] = {.lex_state = 5}, + [1626] = {.lex_state = 5}, + [1627] = {.lex_state = 5}, + [1628] = {.lex_state = 4}, + [1629] = {.lex_state = 5}, + [1630] = {.lex_state = 5}, + [1631] = {.lex_state = 5}, + [1632] = {.lex_state = 5}, + [1633] = {.lex_state = 5}, + [1634] = {.lex_state = 5}, + [1635] = {.lex_state = 5}, + [1636] = {.lex_state = 5}, + [1637] = {.lex_state = 5}, + [1638] = {.lex_state = 5}, + [1639] = {.lex_state = 5}, + [1640] = {.lex_state = 5}, + [1641] = {.lex_state = 5}, + [1642] = {.lex_state = 5}, + [1643] = {.lex_state = 5}, + [1644] = {.lex_state = 5}, + [1645] = {.lex_state = 5}, + [1646] = {.lex_state = 5}, + [1647] = {.lex_state = 5}, + [1648] = {.lex_state = 5}, + [1649] = {.lex_state = 5}, + [1650] = {.lex_state = 5}, + [1651] = {.lex_state = 5}, + [1652] = {.lex_state = 5}, + [1653] = {.lex_state = 5}, + [1654] = {.lex_state = 5}, + [1655] = {.lex_state = 5}, + [1656] = {.lex_state = 5}, + [1657] = {.lex_state = 4}, + [1658] = {.lex_state = 5}, + [1659] = {.lex_state = 5}, + [1660] = {.lex_state = 5}, + [1661] = {.lex_state = 5}, + [1662] = {.lex_state = 5}, + [1663] = {.lex_state = 5}, + [1664] = {.lex_state = 5}, + [1665] = {.lex_state = 5}, + [1666] = {.lex_state = 5}, + [1667] = {.lex_state = 5}, + [1668] = {.lex_state = 5}, + [1669] = {.lex_state = 5}, + [1670] = {.lex_state = 5}, + [1671] = {.lex_state = 5}, + [1672] = {.lex_state = 5}, + [1673] = {.lex_state = 5}, + [1674] = {.lex_state = 5}, + [1675] = {.lex_state = 5}, + [1676] = {.lex_state = 5}, + [1677] = {.lex_state = 5}, + [1678] = {.lex_state = 5}, + [1679] = {.lex_state = 5}, + [1680] = {.lex_state = 5}, + [1681] = {.lex_state = 5}, + [1682] = {.lex_state = 5}, + [1683] = {.lex_state = 5}, + [1684] = {.lex_state = 5}, + [1685] = {.lex_state = 5}, + [1686] = {.lex_state = 13}, + [1687] = {.lex_state = 13}, + [1688] = {.lex_state = 5}, + [1689] = {.lex_state = 5}, + [1690] = {.lex_state = 5}, + [1691] = {.lex_state = 5}, + [1692] = {.lex_state = 5}, + [1693] = {.lex_state = 4}, + [1694] = {.lex_state = 5}, + [1695] = {.lex_state = 5}, + [1696] = {.lex_state = 5}, + [1697] = {.lex_state = 5}, + [1698] = {.lex_state = 5}, + [1699] = {.lex_state = 5}, + [1700] = {.lex_state = 5}, + [1701] = {.lex_state = 5}, + [1702] = {.lex_state = 4}, + [1703] = {.lex_state = 4}, + [1704] = {.lex_state = 4}, + [1705] = {.lex_state = 4}, + [1706] = {.lex_state = 4}, + [1707] = {.lex_state = 5}, + [1708] = {.lex_state = 4}, + [1709] = {.lex_state = 4}, + [1710] = {.lex_state = 4}, + [1711] = {.lex_state = 4}, + [1712] = {.lex_state = 4}, + [1713] = {.lex_state = 4}, + [1714] = {.lex_state = 5}, + [1715] = {.lex_state = 4}, + [1716] = {.lex_state = 5}, + [1717] = {.lex_state = 4}, + [1718] = {.lex_state = 5}, + [1719] = {.lex_state = 5}, + [1720] = {.lex_state = 5}, + [1721] = {.lex_state = 4}, + [1722] = {.lex_state = 13}, + [1723] = {.lex_state = 5}, + [1724] = {.lex_state = 5}, + [1725] = {.lex_state = 5}, + [1726] = {.lex_state = 5}, + [1727] = {.lex_state = 5}, + [1728] = {.lex_state = 5}, + [1729] = {.lex_state = 5}, + [1730] = {.lex_state = 5}, + [1731] = {.lex_state = 5}, + [1732] = {.lex_state = 5}, + [1733] = {.lex_state = 5}, + [1734] = {.lex_state = 5}, + [1735] = {.lex_state = 5}, + [1736] = {.lex_state = 5}, + [1737] = {.lex_state = 5}, + [1738] = {.lex_state = 4}, + [1739] = {.lex_state = 4}, + [1740] = {.lex_state = 4}, + [1741] = {.lex_state = 4}, + [1742] = {.lex_state = 4}, + [1743] = {.lex_state = 5}, + [1744] = {.lex_state = 4}, + [1745] = {.lex_state = 4}, + [1746] = {.lex_state = 5}, + [1747] = {.lex_state = 4}, + [1748] = {.lex_state = 4}, + [1749] = {.lex_state = 4}, + [1750] = {.lex_state = 4}, + [1751] = {.lex_state = 4}, + [1752] = {.lex_state = 4}, + [1753] = {.lex_state = 5}, + [1754] = {.lex_state = 4}, + [1755] = {.lex_state = 4}, + [1756] = {.lex_state = 4}, + [1757] = {.lex_state = 4}, + [1758] = {.lex_state = 4}, + [1759] = {.lex_state = 4}, + [1760] = {.lex_state = 4}, + [1761] = {.lex_state = 4}, + [1762] = {.lex_state = 4}, + [1763] = {.lex_state = 4}, + [1764] = {.lex_state = 5}, + [1765] = {.lex_state = 4}, + [1766] = {.lex_state = 4}, + [1767] = {.lex_state = 4}, + [1768] = {.lex_state = 5}, + [1769] = {.lex_state = 4}, + [1770] = {.lex_state = 4}, + [1771] = {.lex_state = 4}, + [1772] = {.lex_state = 5}, + [1773] = {.lex_state = 4}, + [1774] = {.lex_state = 4}, + [1775] = {.lex_state = 4}, + [1776] = {.lex_state = 5}, + [1777] = {.lex_state = 4}, + [1778] = {.lex_state = 5}, + [1779] = {.lex_state = 4}, + [1780] = {.lex_state = 4}, + [1781] = {.lex_state = 5}, + [1782] = {.lex_state = 4}, + [1783] = {.lex_state = 5}, + [1784] = {.lex_state = 5}, + [1785] = {.lex_state = 4}, + [1786] = {.lex_state = 4}, + [1787] = {.lex_state = 4}, + [1788] = {.lex_state = 4}, + [1789] = {.lex_state = 4}, + [1790] = {.lex_state = 4}, + [1791] = {.lex_state = 4}, + [1792] = {.lex_state = 5}, + [1793] = {.lex_state = 4}, + [1794] = {.lex_state = 4}, + [1795] = {.lex_state = 4}, + [1796] = {.lex_state = 4}, + [1797] = {.lex_state = 4}, + [1798] = {.lex_state = 4}, + [1799] = {.lex_state = 5}, + [1800] = {.lex_state = 4}, + [1801] = {.lex_state = 5}, + [1802] = {.lex_state = 13}, + [1803] = {.lex_state = 4}, + [1804] = {.lex_state = 4}, + [1805] = {.lex_state = 4}, + [1806] = {.lex_state = 4}, + [1807] = {.lex_state = 4}, + [1808] = {.lex_state = 5}, + [1809] = {.lex_state = 5}, + [1810] = {.lex_state = 4}, + [1811] = {.lex_state = 4}, + [1812] = {.lex_state = 4}, + [1813] = {.lex_state = 4}, + [1814] = {.lex_state = 4}, + [1815] = {.lex_state = 4}, + [1816] = {.lex_state = 5}, + [1817] = {.lex_state = 4}, + [1818] = {.lex_state = 4}, + [1819] = {.lex_state = 4}, + [1820] = {.lex_state = 4}, + [1821] = {.lex_state = 5}, + [1822] = {.lex_state = 4}, + [1823] = {.lex_state = 5}, + [1824] = {.lex_state = 4}, + [1825] = {.lex_state = 4}, + [1826] = {.lex_state = 4}, + [1827] = {.lex_state = 4}, + [1828] = {.lex_state = 4}, + [1829] = {.lex_state = 5}, + [1830] = {.lex_state = 4}, + [1831] = {.lex_state = 4}, + [1832] = {.lex_state = 5}, + [1833] = {.lex_state = 4}, + [1834] = {.lex_state = 4}, + [1835] = {.lex_state = 4}, + [1836] = {.lex_state = 4}, + [1837] = {.lex_state = 4}, + [1838] = {.lex_state = 4}, + [1839] = {.lex_state = 4}, + [1840] = {.lex_state = 4}, + [1841] = {.lex_state = 4}, + [1842] = {.lex_state = 4}, + [1843] = {.lex_state = 4}, + [1844] = {.lex_state = 4}, + [1845] = {.lex_state = 4}, + [1846] = {.lex_state = 4}, + [1847] = {.lex_state = 4}, + [1848] = {.lex_state = 13}, + [1849] = {.lex_state = 4}, + [1850] = {.lex_state = 4}, + [1851] = {.lex_state = 5}, + [1852] = {.lex_state = 4}, + [1853] = {.lex_state = 4}, + [1854] = {.lex_state = 5}, + [1855] = {.lex_state = 4}, + [1856] = {.lex_state = 4}, + [1857] = {.lex_state = 4}, + [1858] = {.lex_state = 4}, + [1859] = {.lex_state = 4}, + [1860] = {.lex_state = 4}, + [1861] = {.lex_state = 4}, + [1862] = {.lex_state = 4}, + [1863] = {.lex_state = 5}, + [1864] = {.lex_state = 4}, + [1865] = {.lex_state = 4}, + [1866] = {.lex_state = 13}, + [1867] = {.lex_state = 4}, + [1868] = {.lex_state = 4}, + [1869] = {.lex_state = 4}, + [1870] = {.lex_state = 4}, + [1871] = {.lex_state = 4}, + [1872] = {.lex_state = 4}, + [1873] = {.lex_state = 4}, + [1874] = {.lex_state = 4}, + [1875] = {.lex_state = 4}, + [1876] = {.lex_state = 13}, + [1877] = {.lex_state = 13}, + [1878] = {.lex_state = 13}, + [1879] = {.lex_state = 13}, + [1880] = {.lex_state = 13}, + [1881] = {.lex_state = 13}, + [1882] = {.lex_state = 13}, + [1883] = {.lex_state = 13}, + [1884] = {.lex_state = 13}, + [1885] = {.lex_state = 13}, + [1886] = {.lex_state = 13}, + [1887] = {.lex_state = 13}, + [1888] = {.lex_state = 13}, + [1889] = {.lex_state = 13}, + [1890] = {.lex_state = 13}, + [1891] = {.lex_state = 13}, + [1892] = {.lex_state = 13}, + [1893] = {.lex_state = 13}, + [1894] = {.lex_state = 13}, + [1895] = {.lex_state = 13}, + [1896] = {.lex_state = 13}, + [1897] = {.lex_state = 13}, + [1898] = {.lex_state = 13}, + [1899] = {.lex_state = 13}, + [1900] = {.lex_state = 13}, + [1901] = {.lex_state = 26}, + [1902] = {.lex_state = 15}, + [1903] = {.lex_state = 26}, + [1904] = {.lex_state = 15}, + [1905] = {.lex_state = 15}, + [1906] = {.lex_state = 15}, + [1907] = {.lex_state = 15}, + [1908] = {.lex_state = 15}, + [1909] = {.lex_state = 15}, + [1910] = {.lex_state = 15}, + [1911] = {.lex_state = 15}, + [1912] = {.lex_state = 26}, + [1913] = {.lex_state = 26}, + [1914] = {.lex_state = 26}, + [1915] = {.lex_state = 26}, + [1916] = {.lex_state = 13}, + [1917] = {.lex_state = 15}, + [1918] = {.lex_state = 13}, + [1919] = {.lex_state = 13}, + [1920] = {.lex_state = 26}, + [1921] = {.lex_state = 15}, + [1922] = {.lex_state = 15}, + [1923] = {.lex_state = 13}, + [1924] = {.lex_state = 15}, + [1925] = {.lex_state = 15}, + [1926] = {.lex_state = 13}, + [1927] = {.lex_state = 13}, + [1928] = {.lex_state = 13}, + [1929] = {.lex_state = 13}, + [1930] = {.lex_state = 13}, + [1931] = {.lex_state = 13}, + [1932] = {.lex_state = 15}, + [1933] = {.lex_state = 13}, + [1934] = {.lex_state = 13}, + [1935] = {.lex_state = 13}, + [1936] = {.lex_state = 13}, + [1937] = {.lex_state = 13}, + [1938] = {.lex_state = 26}, + [1939] = {.lex_state = 26}, + [1940] = {.lex_state = 15}, + [1941] = {.lex_state = 26}, + [1942] = {.lex_state = 26}, + [1943] = {.lex_state = 15}, + [1944] = {.lex_state = 26}, + [1945] = {.lex_state = 26}, + [1946] = {.lex_state = 26}, + [1947] = {.lex_state = 26}, + [1948] = {.lex_state = 26}, + [1949] = {.lex_state = 13}, + [1950] = {.lex_state = 13}, + [1951] = {.lex_state = 26}, + [1952] = {.lex_state = 15}, + [1953] = {.lex_state = 26}, + [1954] = {.lex_state = 26}, + [1955] = {.lex_state = 26}, + [1956] = {.lex_state = 26}, + [1957] = {.lex_state = 13}, + [1958] = {.lex_state = 26}, + [1959] = {.lex_state = 26}, + [1960] = {.lex_state = 13}, + [1961] = {.lex_state = 15}, + [1962] = {.lex_state = 13}, + [1963] = {.lex_state = 26}, + [1964] = {.lex_state = 13}, + [1965] = {.lex_state = 26}, + [1966] = {.lex_state = 26}, + [1967] = {.lex_state = 26}, + [1968] = {.lex_state = 26}, + [1969] = {.lex_state = 26}, + [1970] = {.lex_state = 26}, + [1971] = {.lex_state = 26}, + [1972] = {.lex_state = 26}, + [1973] = {.lex_state = 26}, + [1974] = {.lex_state = 13}, + [1975] = {.lex_state = 13}, + [1976] = {.lex_state = 26}, + [1977] = {.lex_state = 26}, + [1978] = {.lex_state = 26}, + [1979] = {.lex_state = 26}, + [1980] = {.lex_state = 26}, + [1981] = {.lex_state = 13}, + [1982] = {.lex_state = 26}, + [1983] = {.lex_state = 26}, + [1984] = {.lex_state = 26}, + [1985] = {.lex_state = 26}, + [1986] = {.lex_state = 26}, + [1987] = {.lex_state = 26}, + [1988] = {.lex_state = 13}, + [1989] = {.lex_state = 26}, + [1990] = {.lex_state = 15}, + [1991] = {.lex_state = 26}, + [1992] = {.lex_state = 26}, + [1993] = {.lex_state = 13}, + [1994] = {.lex_state = 15}, + [1995] = {.lex_state = 13}, + [1996] = {.lex_state = 26}, + [1997] = {.lex_state = 26}, + [1998] = {.lex_state = 15}, + [1999] = {.lex_state = 15}, + [2000] = {.lex_state = 15}, + [2001] = {.lex_state = 15}, + [2002] = {.lex_state = 15}, + [2003] = {.lex_state = 15}, + [2004] = {.lex_state = 15}, + [2005] = {.lex_state = 15}, + [2006] = {.lex_state = 15}, + [2007] = {.lex_state = 15}, + [2008] = {.lex_state = 15}, + [2009] = {.lex_state = 16}, + [2010] = {.lex_state = 15}, + [2011] = {.lex_state = 26}, + [2012] = {.lex_state = 26}, + [2013] = {.lex_state = 13}, + [2014] = {.lex_state = 20}, + [2015] = {.lex_state = 16}, + [2016] = {.lex_state = 16}, + [2017] = {.lex_state = 13}, + [2018] = {.lex_state = 13}, + [2019] = {.lex_state = 15}, + [2020] = {.lex_state = 26}, + [2021] = {.lex_state = 13}, + [2022] = {.lex_state = 20}, + [2023] = {.lex_state = 15}, + [2024] = {.lex_state = 15}, + [2025] = {.lex_state = 26}, + [2026] = {.lex_state = 13}, + [2027] = {.lex_state = 13}, + [2028] = {.lex_state = 15}, + [2029] = {.lex_state = 13}, + [2030] = {.lex_state = 26}, + [2031] = {.lex_state = 13}, + [2032] = {.lex_state = 15}, + [2033] = {.lex_state = 15}, + [2034] = {.lex_state = 20}, + [2035] = {.lex_state = 16}, + [2036] = {.lex_state = 16}, + [2037] = {.lex_state = 26}, + [2038] = {.lex_state = 26}, + [2039] = {.lex_state = 15}, + [2040] = {.lex_state = 15}, + [2041] = {.lex_state = 20}, + [2042] = {.lex_state = 13}, + [2043] = {.lex_state = 13}, + [2044] = {.lex_state = 15}, + [2045] = {.lex_state = 13}, + [2046] = {.lex_state = 26}, + [2047] = {.lex_state = 15}, + [2048] = {.lex_state = 13}, + [2049] = {.lex_state = 13}, + [2050] = {.lex_state = 26}, + [2051] = {.lex_state = 26}, + [2052] = {.lex_state = 26}, + [2053] = {.lex_state = 26}, + [2054] = {.lex_state = 26}, + [2055] = {.lex_state = 26}, + [2056] = {.lex_state = 26}, + [2057] = {.lex_state = 22}, + [2058] = {.lex_state = 15}, + [2059] = {.lex_state = 16}, + [2060] = {.lex_state = 26}, + [2061] = {.lex_state = 7}, + [2062] = {.lex_state = 26}, + [2063] = {.lex_state = 26}, + [2064] = {.lex_state = 26}, + [2065] = {.lex_state = 26}, + [2066] = {.lex_state = 26}, + [2067] = {.lex_state = 26}, + [2068] = {.lex_state = 26}, + [2069] = {.lex_state = 26}, + [2070] = {.lex_state = 26}, + [2071] = {.lex_state = 26}, + [2072] = {.lex_state = 15}, + [2073] = {.lex_state = 26}, + [2074] = {.lex_state = 26}, + [2075] = {.lex_state = 26}, + [2076] = {.lex_state = 13}, + [2077] = {.lex_state = 15}, + [2078] = {.lex_state = 15}, + [2079] = {.lex_state = 26}, + [2080] = {.lex_state = 26}, + [2081] = {.lex_state = 26}, + [2082] = {.lex_state = 22}, + [2083] = {.lex_state = 13}, + [2084] = {.lex_state = 26}, + [2085] = {.lex_state = 26}, + [2086] = {.lex_state = 26}, + [2087] = {.lex_state = 26}, + [2088] = {.lex_state = 26}, + [2089] = {.lex_state = 26}, + [2090] = {.lex_state = 26}, + [2091] = {.lex_state = 26}, + [2092] = {.lex_state = 26}, + [2093] = {.lex_state = 13}, + [2094] = {.lex_state = 13}, + [2095] = {.lex_state = 15}, + [2096] = {.lex_state = 26}, + [2097] = {.lex_state = 7}, + [2098] = {.lex_state = 26}, + [2099] = {.lex_state = 7}, + [2100] = {.lex_state = 13}, + [2101] = {.lex_state = 13}, + [2102] = {.lex_state = 3}, + [2103] = {.lex_state = 13}, + [2104] = {.lex_state = 13}, + [2105] = {.lex_state = 13}, + [2106] = {.lex_state = 22}, + [2107] = {.lex_state = 7}, + [2108] = {.lex_state = 13}, + [2109] = {.lex_state = 16}, + [2110] = {.lex_state = 26}, + [2111] = {.lex_state = 13}, + [2112] = {.lex_state = 16}, + [2113] = {.lex_state = 3}, + [2114] = {.lex_state = 13}, + [2115] = {.lex_state = 13}, + [2116] = {.lex_state = 13}, + [2117] = {.lex_state = 22}, + [2118] = {.lex_state = 13}, + [2119] = {.lex_state = 16}, + [2120] = {.lex_state = 22}, + [2121] = {.lex_state = 13}, + [2122] = {.lex_state = 22}, + [2123] = {.lex_state = 13}, + [2124] = {.lex_state = 13}, + [2125] = {.lex_state = 16}, + [2126] = {.lex_state = 13}, + [2127] = {.lex_state = 13}, + [2128] = {.lex_state = 13}, + [2129] = {.lex_state = 16}, + [2130] = {.lex_state = 13}, + [2131] = {.lex_state = 13}, + [2132] = {.lex_state = 13}, + [2133] = {.lex_state = 13}, + [2134] = {.lex_state = 26}, + [2135] = {.lex_state = 13}, + [2136] = {.lex_state = 13}, + [2137] = {.lex_state = 13}, + [2138] = {.lex_state = 13}, + [2139] = {.lex_state = 7}, + [2140] = {.lex_state = 26}, + [2141] = {.lex_state = 3}, + [2142] = {.lex_state = 13}, + [2143] = {.lex_state = 13}, + [2144] = {.lex_state = 13}, + [2145] = {.lex_state = 13}, + [2146] = {.lex_state = 26}, + [2147] = {.lex_state = 26}, + [2148] = {.lex_state = 13}, + [2149] = {.lex_state = 13}, + [2150] = {.lex_state = 13}, + [2151] = {.lex_state = 26}, + [2152] = {.lex_state = 13}, + [2153] = {.lex_state = 13}, + [2154] = {.lex_state = 22}, + [2155] = {.lex_state = 13}, + [2156] = {.lex_state = 13}, + [2157] = {.lex_state = 13}, + [2158] = {.lex_state = 13}, + [2159] = {.lex_state = 13}, + [2160] = {.lex_state = 13}, + [2161] = {.lex_state = 13}, + [2162] = {.lex_state = 22}, + [2163] = {.lex_state = 13}, + [2164] = {.lex_state = 13}, + [2165] = {.lex_state = 13}, + [2166] = {.lex_state = 13}, + [2167] = {.lex_state = 13}, + [2168] = {.lex_state = 13}, + [2169] = {.lex_state = 13}, + [2170] = {.lex_state = 22}, + [2171] = {.lex_state = 13}, + [2172] = {.lex_state = 13}, + [2173] = {.lex_state = 22}, + [2174] = {.lex_state = 22}, + [2175] = {.lex_state = 13}, + [2176] = {.lex_state = 20}, + [2177] = {.lex_state = 13}, + [2178] = {.lex_state = 22}, + [2179] = {.lex_state = 13}, + [2180] = {.lex_state = 13}, + [2181] = {.lex_state = 22}, + [2182] = {.lex_state = 13}, + [2183] = {.lex_state = 13}, + [2184] = {.lex_state = 13}, + [2185] = {.lex_state = 13}, + [2186] = {.lex_state = 22}, + [2187] = {.lex_state = 13}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 22}, + [2190] = {.lex_state = 7}, + [2191] = {.lex_state = 13}, + [2192] = {.lex_state = 13}, + [2193] = {.lex_state = 13}, + [2194] = {.lex_state = 13}, + [2195] = {.lex_state = 13}, + [2196] = {.lex_state = 13}, + [2197] = {.lex_state = 13}, + [2198] = {.lex_state = 22}, + [2199] = {.lex_state = 13}, + [2200] = {.lex_state = 13}, + [2201] = {.lex_state = 13}, + [2202] = {.lex_state = 13}, + [2203] = {.lex_state = 13}, + [2204] = {.lex_state = 13}, + [2205] = {.lex_state = 13}, + [2206] = {.lex_state = 22}, + [2207] = {.lex_state = 13}, + [2208] = {.lex_state = 13}, + [2209] = {.lex_state = 13}, + [2210] = {.lex_state = 13}, + [2211] = {.lex_state = 13}, + [2212] = {.lex_state = 13}, + [2213] = {.lex_state = 13}, + [2214] = {.lex_state = 13}, + [2215] = {.lex_state = 13}, + [2216] = {.lex_state = 13}, + [2217] = {.lex_state = 13}, + [2218] = {.lex_state = 13}, + [2219] = {.lex_state = 13}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 16}, + [2222] = {.lex_state = 13}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 7}, + [2225] = {.lex_state = 0}, + [2226] = {.lex_state = 26}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 22}, + [2230] = {.lex_state = 22}, + [2231] = {.lex_state = 68}, + [2232] = {.lex_state = 26}, + [2233] = {.lex_state = 22}, + [2234] = {.lex_state = 68}, + [2235] = {.lex_state = 7}, + [2236] = {.lex_state = 0}, + [2237] = {.lex_state = 0}, + [2238] = {.lex_state = 22}, + [2239] = {.lex_state = 0}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 0}, + [2243] = {.lex_state = 13}, + [2244] = {.lex_state = 68}, + [2245] = {.lex_state = 0}, + [2246] = {.lex_state = 7}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 0}, + [2251] = {.lex_state = 13}, + [2252] = {.lex_state = 68}, + [2253] = {.lex_state = 0}, + [2254] = {.lex_state = 13}, + [2255] = {.lex_state = 0}, + [2256] = {.lex_state = 22}, + [2257] = {.lex_state = 68}, + [2258] = {.lex_state = 22}, + [2259] = {.lex_state = 22}, + [2260] = {.lex_state = 22}, + [2261] = {.lex_state = 0}, + [2262] = {.lex_state = 13}, + [2263] = {.lex_state = 68}, + [2264] = {.lex_state = 13}, + [2265] = {.lex_state = 13}, + [2266] = {.lex_state = 26}, + [2267] = {.lex_state = 17}, + [2268] = {.lex_state = 13}, + [2269] = {.lex_state = 17}, + [2270] = {.lex_state = 13}, + [2271] = {.lex_state = 13}, + [2272] = {.lex_state = 13}, + [2273] = {.lex_state = 13}, + [2274] = {.lex_state = 13}, + [2275] = {.lex_state = 13}, + [2276] = {.lex_state = 13}, + [2277] = {.lex_state = 26}, + [2278] = {.lex_state = 13}, + [2279] = {.lex_state = 13}, + [2280] = {.lex_state = 13}, + [2281] = {.lex_state = 13}, + [2282] = {.lex_state = 17}, + [2283] = {.lex_state = 0}, + [2284] = {.lex_state = 26}, + [2285] = {.lex_state = 13}, + [2286] = {.lex_state = 13}, + [2287] = {.lex_state = 13}, + [2288] = {.lex_state = 13}, + [2289] = {.lex_state = 13}, + [2290] = {.lex_state = 13}, + [2291] = {.lex_state = 13}, + [2292] = {.lex_state = 13}, + [2293] = {.lex_state = 13}, + [2294] = {.lex_state = 13}, + [2295] = {.lex_state = 13}, + [2296] = {.lex_state = 13}, + [2297] = {.lex_state = 13}, + [2298] = {.lex_state = 13}, + [2299] = {.lex_state = 13}, + [2300] = {.lex_state = 13}, + [2301] = {.lex_state = 20}, + [2302] = {.lex_state = 13}, + [2303] = {.lex_state = 13}, + [2304] = {.lex_state = 13}, + [2305] = {.lex_state = 17}, + [2306] = {.lex_state = 16}, + [2307] = {.lex_state = 13}, + [2308] = {.lex_state = 13}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 13}, + [2311] = {.lex_state = 17}, + [2312] = {.lex_state = 16}, + [2313] = {.lex_state = 13}, + [2314] = {.lex_state = 13}, + [2315] = {.lex_state = 13}, + [2316] = {.lex_state = 13}, + [2317] = {.lex_state = 26}, + [2318] = {.lex_state = 13}, + [2319] = {.lex_state = 26}, + [2320] = {.lex_state = 13}, + [2321] = {.lex_state = 13}, + [2322] = {.lex_state = 13}, + [2323] = {.lex_state = 13}, + [2324] = {.lex_state = 13}, + [2325] = {.lex_state = 22}, + [2326] = {.lex_state = 13}, + [2327] = {.lex_state = 26}, + [2328] = {.lex_state = 0}, + [2329] = {.lex_state = 13}, + [2330] = {.lex_state = 13}, + [2331] = {.lex_state = 12}, + [2332] = {.lex_state = 20}, + [2333] = {.lex_state = 13}, + [2334] = {.lex_state = 13}, + [2335] = {.lex_state = 0}, + [2336] = {.lex_state = 16}, + [2337] = {.lex_state = 17}, + [2338] = {.lex_state = 13}, + [2339] = {.lex_state = 16}, + [2340] = {.lex_state = 12}, + [2341] = {.lex_state = 13}, + [2342] = {.lex_state = 13}, + [2343] = {.lex_state = 13}, + [2344] = {.lex_state = 13}, + [2345] = {.lex_state = 16}, + [2346] = {.lex_state = 13}, + [2347] = {.lex_state = 26}, + [2348] = {.lex_state = 13}, + [2349] = {.lex_state = 26}, + [2350] = {.lex_state = 13}, + [2351] = {.lex_state = 16}, + [2352] = {.lex_state = 26}, + [2353] = {.lex_state = 7}, + [2354] = {.lex_state = 0}, + [2355] = {.lex_state = 13}, + [2356] = {.lex_state = 26}, + [2357] = {.lex_state = 13}, + [2358] = {.lex_state = 7}, + [2359] = {.lex_state = 26}, + [2360] = {.lex_state = 7}, + [2361] = {.lex_state = 7}, + [2362] = {.lex_state = 26}, + [2363] = {.lex_state = 26}, + [2364] = {.lex_state = 7}, + [2365] = {.lex_state = 13}, + [2366] = {.lex_state = 7}, + [2367] = {.lex_state = 0}, + [2368] = {.lex_state = 7}, + [2369] = {.lex_state = 7}, + [2370] = {.lex_state = 13}, + [2371] = {.lex_state = 7}, + [2372] = {.lex_state = 7}, + [2373] = {.lex_state = 26}, + [2374] = {.lex_state = 13}, + [2375] = {.lex_state = 26}, + [2376] = {.lex_state = 13}, + [2377] = {.lex_state = 13}, + [2378] = {.lex_state = 7}, + [2379] = {.lex_state = 7}, + [2380] = {.lex_state = 13}, + [2381] = {.lex_state = 26}, + [2382] = {.lex_state = 7}, + [2383] = {.lex_state = 13}, + [2384] = {.lex_state = 13}, + [2385] = {.lex_state = 7}, + [2386] = {.lex_state = 26}, + [2387] = {.lex_state = 7}, + [2388] = {.lex_state = 0}, + [2389] = {.lex_state = 26}, + [2390] = {.lex_state = 26}, + [2391] = {.lex_state = 68}, + [2392] = {.lex_state = 26}, + [2393] = {.lex_state = 26}, + [2394] = {.lex_state = 7}, + [2395] = {.lex_state = 26}, + [2396] = {.lex_state = 172}, + [2397] = {.lex_state = 13}, + [2398] = {.lex_state = 13}, + [2399] = {.lex_state = 26}, + [2400] = {.lex_state = 13}, + [2401] = {.lex_state = 13}, + [2402] = {.lex_state = 68}, + [2403] = {.lex_state = 7}, + [2404] = {.lex_state = 7}, + [2405] = {.lex_state = 7}, + [2406] = {.lex_state = 7}, + [2407] = {.lex_state = 0}, + [2408] = {.lex_state = 7}, + [2409] = {.lex_state = 7}, + [2410] = {.lex_state = 26}, + [2411] = {.lex_state = 26}, + [2412] = {.lex_state = 13}, + [2413] = {.lex_state = 0}, + [2414] = {.lex_state = 26}, + [2415] = {.lex_state = 7}, + [2416] = {.lex_state = 7}, + [2417] = {.lex_state = 7}, + [2418] = {.lex_state = 7}, + [2419] = {.lex_state = 0}, + [2420] = {.lex_state = 26}, + [2421] = {.lex_state = 13}, + [2422] = {.lex_state = 26}, + [2423] = {.lex_state = 7}, + [2424] = {.lex_state = 68}, + [2425] = {.lex_state = 26}, + [2426] = {.lex_state = 13}, + [2427] = {.lex_state = 13}, + [2428] = {.lex_state = 13}, + [2429] = {.lex_state = 13}, + [2430] = {.lex_state = 26}, + [2431] = {.lex_state = 26}, + [2432] = {.lex_state = 13}, + [2433] = {.lex_state = 26}, + [2434] = {.lex_state = 13}, + [2435] = {.lex_state = 7}, + [2436] = {.lex_state = 7}, + [2437] = {.lex_state = 26}, + [2438] = {.lex_state = 7}, + [2439] = {.lex_state = 7}, + [2440] = {.lex_state = 7}, + [2441] = {.lex_state = 7}, + [2442] = {.lex_state = 0}, + [2443] = {.lex_state = 26}, + [2444] = {.lex_state = 13}, + [2445] = {.lex_state = 26}, + [2446] = {.lex_state = 16}, + [2447] = {.lex_state = 13}, + [2448] = {.lex_state = 0}, [2449] = {.lex_state = 7, .external_lex_state = 3}, - [2450] = {.lex_state = 7, .external_lex_state = 4}, - [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 26, .external_lex_state = 3}, - [2453] = {.lex_state = 67, .external_lex_state = 3}, - [2454] = {.lex_state = 15, .external_lex_state = 3}, - [2455] = {.lex_state = 7, .external_lex_state = 3}, - [2456] = {.lex_state = 3, .external_lex_state = 3}, - [2457] = {.lex_state = 27, .external_lex_state = 3}, - [2458] = {.lex_state = 13, .external_lex_state = 3}, - [2459] = {.lex_state = 3, .external_lex_state = 3}, - [2460] = {.lex_state = 13, .external_lex_state = 3}, - [2461] = {.lex_state = 67, .external_lex_state = 3}, - [2462] = {.lex_state = 7, .external_lex_state = 3}, - [2463] = {.lex_state = 67, .external_lex_state = 3}, - [2464] = {.lex_state = 67, .external_lex_state = 3}, - [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 3, .external_lex_state = 3}, - [2467] = {.lex_state = 3, .external_lex_state = 3}, - [2468] = {.lex_state = 0, .external_lex_state = 3}, - [2469] = {.lex_state = 67, .external_lex_state = 3}, - [2470] = {.lex_state = 26, .external_lex_state = 3}, - [2471] = {.lex_state = 13, .external_lex_state = 3}, - [2472] = {.lex_state = 7, .external_lex_state = 3}, - [2473] = {.lex_state = 13, .external_lex_state = 3}, - [2474] = {.lex_state = 0, .external_lex_state = 3}, - [2475] = {.lex_state = 67, .external_lex_state = 3}, - [2476] = {.lex_state = 67, .external_lex_state = 3}, - [2477] = {.lex_state = 0, .external_lex_state = 3}, - [2478] = {.lex_state = 67, .external_lex_state = 3}, - [2479] = {.lex_state = 13, .external_lex_state = 3}, - [2480] = {.lex_state = 16, .external_lex_state = 3}, - [2481] = {.lex_state = 16, .external_lex_state = 3}, - [2482] = {.lex_state = 7, .external_lex_state = 3}, - [2483] = {.lex_state = 16, .external_lex_state = 3}, - [2484] = {.lex_state = 16, .external_lex_state = 3}, - [2485] = {.lex_state = 26, .external_lex_state = 3}, - [2486] = {.lex_state = 3, .external_lex_state = 3}, - [2487] = {.lex_state = 3, .external_lex_state = 3}, - [2488] = {.lex_state = 13, .external_lex_state = 3}, - [2489] = {.lex_state = 3, .external_lex_state = 3}, - [2490] = {.lex_state = 3, .external_lex_state = 3}, - [2491] = {.lex_state = 3, .external_lex_state = 3}, - [2492] = {.lex_state = 3, .external_lex_state = 3}, - [2493] = {.lex_state = 3, .external_lex_state = 3}, - [2494] = {.lex_state = 3, .external_lex_state = 3}, - [2495] = {.lex_state = 16, .external_lex_state = 3}, - [2496] = {.lex_state = 16, .external_lex_state = 3}, - [2497] = {.lex_state = 16, .external_lex_state = 3}, - [2498] = {.lex_state = 7, .external_lex_state = 3}, - [2499] = {.lex_state = 3, .external_lex_state = 3}, - [2500] = {.lex_state = 7, .external_lex_state = 3}, - [2501] = {.lex_state = 7, .external_lex_state = 4}, - [2502] = {.lex_state = 67, .external_lex_state = 3}, - [2503] = {.lex_state = 3, .external_lex_state = 3}, - [2504] = {.lex_state = 16, .external_lex_state = 3}, - [2505] = {.lex_state = 13, .external_lex_state = 3}, - [2506] = {.lex_state = 7, .external_lex_state = 3}, - [2507] = {.lex_state = 7, .external_lex_state = 3}, - [2508] = {.lex_state = 7, .external_lex_state = 3}, - [2509] = {.lex_state = 3, .external_lex_state = 3}, - [2510] = {.lex_state = 3, .external_lex_state = 3}, - [2511] = {.lex_state = 7, .external_lex_state = 4}, - [2512] = {.lex_state = 7, .external_lex_state = 4}, - [2513] = {.lex_state = 7, .external_lex_state = 3}, - [2514] = {.lex_state = 7, .external_lex_state = 3}, - [2515] = {.lex_state = 13, .external_lex_state = 3}, - [2516] = {.lex_state = 3, .external_lex_state = 3}, - [2517] = {.lex_state = 3, .external_lex_state = 3}, - [2518] = {.lex_state = 0, .external_lex_state = 3}, - [2519] = {.lex_state = 7, .external_lex_state = 4}, - [2520] = {.lex_state = 0, .external_lex_state = 3}, - [2521] = {.lex_state = 7, .external_lex_state = 3}, - [2522] = {.lex_state = 7, .external_lex_state = 3}, - [2523] = {.lex_state = 7, .external_lex_state = 4}, - [2524] = {.lex_state = 15, .external_lex_state = 3}, - [2525] = {.lex_state = 7, .external_lex_state = 3}, - [2526] = {.lex_state = 7, .external_lex_state = 4}, - [2527] = {.lex_state = 67, .external_lex_state = 3}, - [2528] = {.lex_state = 3, .external_lex_state = 3}, - [2529] = {.lex_state = 0, .external_lex_state = 3}, - [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 7, .external_lex_state = 3}, - [2532] = {.lex_state = 7, .external_lex_state = 3}, - [2533] = {.lex_state = 0, .external_lex_state = 3}, - [2534] = {.lex_state = 3, .external_lex_state = 3}, - [2535] = {.lex_state = 3, .external_lex_state = 3}, - [2536] = {.lex_state = 0, .external_lex_state = 3}, - [2537] = {.lex_state = 7, .external_lex_state = 3}, - [2538] = {.lex_state = 7, .external_lex_state = 4}, - [2539] = {.lex_state = 7, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, - [2541] = {.lex_state = 0, .external_lex_state = 3}, - [2542] = {.lex_state = 7, .external_lex_state = 3}, - [2543] = {.lex_state = 7, .external_lex_state = 3}, + [2450] = {.lex_state = 13}, + [2451] = {.lex_state = 28}, + [2452] = {.lex_state = 28}, + [2453] = {.lex_state = 7}, + [2454] = {.lex_state = 7}, + [2455] = {.lex_state = 7, .external_lex_state = 4}, + [2456] = {.lex_state = 7}, + [2457] = {.lex_state = 13}, + [2458] = {.lex_state = 3}, + [2459] = {.lex_state = 3}, + [2460] = {.lex_state = 13}, + [2461] = {.lex_state = 7}, + [2462] = {.lex_state = 7}, + [2463] = {.lex_state = 13}, + [2464] = {.lex_state = 68}, + [2465] = {.lex_state = 3}, + [2466] = {.lex_state = 15}, + [2467] = {.lex_state = 7}, + [2468] = {.lex_state = 7}, + [2469] = {.lex_state = 3}, + [2470] = {.lex_state = 68}, + [2471] = {.lex_state = 13}, + [2472] = {.lex_state = 7}, + [2473] = {.lex_state = 13}, + [2474] = {.lex_state = 0}, + [2475] = {.lex_state = 7, .external_lex_state = 4}, + [2476] = {.lex_state = 7}, + [2477] = {.lex_state = 7}, + [2478] = {.lex_state = 13}, + [2479] = {.lex_state = 13}, + [2480] = {.lex_state = 28}, + [2481] = {.lex_state = 7}, + [2482] = {.lex_state = 7, .external_lex_state = 4}, + [2483] = {.lex_state = 3}, + [2484] = {.lex_state = 26}, + [2485] = {.lex_state = 0}, + [2486] = {.lex_state = 3}, + [2487] = {.lex_state = 3}, + [2488] = {.lex_state = 3}, + [2489] = {.lex_state = 3}, + [2490] = {.lex_state = 7}, + [2491] = {.lex_state = 7}, + [2492] = {.lex_state = 68}, + [2493] = {.lex_state = 68}, + [2494] = {.lex_state = 68}, + [2495] = {.lex_state = 13}, + [2496] = {.lex_state = 3}, + [2497] = {.lex_state = 68}, + [2498] = {.lex_state = 3}, + [2499] = {.lex_state = 0}, + [2500] = {.lex_state = 3}, + [2501] = {.lex_state = 68}, + [2502] = {.lex_state = 13}, + [2503] = {.lex_state = 7}, + [2504] = {.lex_state = 13}, + [2505] = {.lex_state = 26}, + [2506] = {.lex_state = 7}, + [2507] = {.lex_state = 13}, + [2508] = {.lex_state = 13}, + [2509] = {.lex_state = 68}, + [2510] = {.lex_state = 0}, + [2511] = {.lex_state = 68}, + [2512] = {.lex_state = 68}, + [2513] = {.lex_state = 0}, + [2514] = {.lex_state = 68}, + [2515] = {.lex_state = 13}, + [2516] = {.lex_state = 7}, + [2517] = {.lex_state = 13}, + [2518] = {.lex_state = 7}, + [2519] = {.lex_state = 13}, + [2520] = {.lex_state = 68}, + [2521] = {.lex_state = 7}, + [2522] = {.lex_state = 13}, + [2523] = {.lex_state = 0}, + [2524] = {.lex_state = 0}, + [2525] = {.lex_state = 68}, + [2526] = {.lex_state = 68}, + [2527] = {.lex_state = 68}, + [2528] = {.lex_state = 7, .external_lex_state = 4}, + [2529] = {.lex_state = 26}, + [2530] = {.lex_state = 7}, + [2531] = {.lex_state = 68}, + [2532] = {.lex_state = 3}, + [2533] = {.lex_state = 26}, + [2534] = {.lex_state = 68}, + [2535] = {.lex_state = 68}, + [2536] = {.lex_state = 7}, + [2537] = {.lex_state = 7, .external_lex_state = 4}, + [2538] = {.lex_state = 0}, + [2539] = {.lex_state = 7}, + [2540] = {.lex_state = 7}, + [2541] = {.lex_state = 7}, + [2542] = {.lex_state = 7, .external_lex_state = 4}, + [2543] = {.lex_state = 7}, [2544] = {.lex_state = 7, .external_lex_state = 4}, - [2545] = {.lex_state = 7, .external_lex_state = 3}, - [2546] = {.lex_state = 7, .external_lex_state = 3}, - [2547] = {.lex_state = 67, .external_lex_state = 3}, - [2548] = {.lex_state = 26, .external_lex_state = 3}, - [2549] = {.lex_state = 7, .external_lex_state = 3}, - [2550] = {.lex_state = 7, .external_lex_state = 3}, - [2551] = {.lex_state = 3, .external_lex_state = 3}, - [2552] = {.lex_state = 7, .external_lex_state = 4}, - [2553] = {.lex_state = 13, .external_lex_state = 3}, - [2554] = {.lex_state = 3, .external_lex_state = 3}, - [2555] = {.lex_state = 0, .external_lex_state = 3}, - [2556] = {.lex_state = 67, .external_lex_state = 3}, - [2557] = {.lex_state = 67, .external_lex_state = 3}, - [2558] = {.lex_state = 67, .external_lex_state = 3}, - [2559] = {.lex_state = 7, .external_lex_state = 3}, - [2560] = {.lex_state = 3, .external_lex_state = 3}, - [2561] = {.lex_state = 3, .external_lex_state = 3}, - [2562] = {.lex_state = 67, .external_lex_state = 3}, - [2563] = {.lex_state = 26, .external_lex_state = 3}, - [2564] = {.lex_state = 3, .external_lex_state = 3}, - [2565] = {.lex_state = 3, .external_lex_state = 3}, - [2566] = {.lex_state = 0, .external_lex_state = 3}, - [2567] = {.lex_state = 3, .external_lex_state = 3}, - [2568] = {.lex_state = 7, .external_lex_state = 3}, - [2569] = {.lex_state = 7, .external_lex_state = 4}, - [2570] = {.lex_state = 13, .external_lex_state = 3}, - [2571] = {.lex_state = 13, .external_lex_state = 3}, - [2572] = {.lex_state = 7, .external_lex_state = 3}, - [2573] = {.lex_state = 7, .external_lex_state = 3}, - [2574] = {.lex_state = 0, .external_lex_state = 3}, - [2575] = {.lex_state = 13, .external_lex_state = 3}, - [2576] = {.lex_state = 7, .external_lex_state = 3}, - [2577] = {.lex_state = 67, .external_lex_state = 3}, - [2578] = {.lex_state = 15, .external_lex_state = 3}, - [2579] = {.lex_state = 7, .external_lex_state = 3}, - [2580] = {.lex_state = 7, .external_lex_state = 3}, - [2581] = {.lex_state = 7, .external_lex_state = 4}, - [2582] = {.lex_state = 3, .external_lex_state = 3}, - [2583] = {.lex_state = 7, .external_lex_state = 3}, - [2584] = {.lex_state = 7, .external_lex_state = 3}, - [2585] = {.lex_state = 67, .external_lex_state = 3}, - [2586] = {.lex_state = 13, .external_lex_state = 3}, - [2587] = {.lex_state = 3, .external_lex_state = 3}, - [2588] = {.lex_state = 3, .external_lex_state = 3}, - [2589] = {.lex_state = 13, .external_lex_state = 3}, - [2590] = {.lex_state = 67, .external_lex_state = 3}, - [2591] = {.lex_state = 3, .external_lex_state = 3}, - [2592] = {.lex_state = 0, .external_lex_state = 3}, - [2593] = {.lex_state = 7, .external_lex_state = 3}, - [2594] = {.lex_state = 7, .external_lex_state = 3}, - [2595] = {.lex_state = 3, .external_lex_state = 3}, - [2596] = {.lex_state = 13, .external_lex_state = 3}, - [2597] = {.lex_state = 13, .external_lex_state = 3}, - [2598] = {.lex_state = 67, .external_lex_state = 3}, - [2599] = {.lex_state = 13, .external_lex_state = 3}, - [2600] = {.lex_state = 67, .external_lex_state = 3}, - [2601] = {.lex_state = 26, .external_lex_state = 3}, - [2602] = {.lex_state = 7, .external_lex_state = 3}, - [2603] = {.lex_state = 7, .external_lex_state = 3}, - [2604] = {.lex_state = 67, .external_lex_state = 3}, - [2605] = {.lex_state = 13, .external_lex_state = 3}, - [2606] = {.lex_state = 0, .external_lex_state = 3}, - [2607] = {.lex_state = 7, .external_lex_state = 3}, - [2608] = {.lex_state = 67, .external_lex_state = 3}, - [2609] = {.lex_state = 13, .external_lex_state = 3}, - [2610] = {.lex_state = 13, .external_lex_state = 3}, - [2611] = {.lex_state = 13, .external_lex_state = 3}, - [2612] = {.lex_state = 13, .external_lex_state = 3}, - [2613] = {.lex_state = 67, .external_lex_state = 3}, - [2614] = {.lex_state = 67, .external_lex_state = 3}, - [2615] = {.lex_state = 13, .external_lex_state = 3}, - [2616] = {.lex_state = 13, .external_lex_state = 3}, - [2617] = {.lex_state = 13, .external_lex_state = 3}, - [2618] = {.lex_state = 26, .external_lex_state = 3}, - [2619] = {.lex_state = 13, .external_lex_state = 3}, - [2620] = {.lex_state = 0, .external_lex_state = 3}, - [2621] = {.lex_state = 3, .external_lex_state = 3}, - [2622] = {.lex_state = 67, .external_lex_state = 3}, - [2623] = {.lex_state = 7, .external_lex_state = 3}, - [2624] = {.lex_state = 13, .external_lex_state = 3}, - [2625] = {.lex_state = 0, .external_lex_state = 3}, - [2626] = {.lex_state = 67, .external_lex_state = 3}, - [2627] = {.lex_state = 26, .external_lex_state = 3}, - [2628] = {.lex_state = 3, .external_lex_state = 3}, - [2629] = {.lex_state = 13, .external_lex_state = 3}, - [2630] = {.lex_state = 13, .external_lex_state = 3}, - [2631] = {.lex_state = 7, .external_lex_state = 3}, - [2632] = {.lex_state = 13, .external_lex_state = 3}, - [2633] = {.lex_state = 13, .external_lex_state = 3}, - [2634] = {.lex_state = 13, .external_lex_state = 3}, - [2635] = {.lex_state = 13, .external_lex_state = 3}, - [2636] = {.lex_state = 13, .external_lex_state = 3}, - [2637] = {.lex_state = 13, .external_lex_state = 3}, - [2638] = {.lex_state = 13, .external_lex_state = 3}, - [2639] = {.lex_state = 67, .external_lex_state = 3}, - [2640] = {.lex_state = 67, .external_lex_state = 3}, - [2641] = {.lex_state = 67, .external_lex_state = 3}, - [2642] = {.lex_state = 67, .external_lex_state = 3}, - [2643] = {.lex_state = 26, .external_lex_state = 3}, - [2644] = {.lex_state = 67, .external_lex_state = 3}, - [2645] = {.lex_state = 3, .external_lex_state = 3}, - [2646] = {.lex_state = 67, .external_lex_state = 3}, - [2647] = {.lex_state = 7, .external_lex_state = 3}, - [2648] = {.lex_state = 13, .external_lex_state = 3}, - [2649] = {.lex_state = 67, .external_lex_state = 3}, - [2650] = {.lex_state = 3, .external_lex_state = 3}, - [2651] = {.lex_state = 0, .external_lex_state = 3}, - [2652] = {.lex_state = 67, .external_lex_state = 3}, - [2653] = {.lex_state = 67, .external_lex_state = 3}, - [2654] = {.lex_state = 67, .external_lex_state = 3}, - [2655] = {.lex_state = 13, .external_lex_state = 3}, - [2656] = {.lex_state = 67, .external_lex_state = 3}, - [2657] = {.lex_state = 67, .external_lex_state = 3}, - [2658] = {.lex_state = 0, .external_lex_state = 3}, - [2659] = {.lex_state = 3, .external_lex_state = 3}, - [2660] = {.lex_state = 0, .external_lex_state = 3}, - [2661] = {.lex_state = 0, .external_lex_state = 3}, - [2662] = {.lex_state = 67, .external_lex_state = 3}, - [2663] = {.lex_state = 3, .external_lex_state = 3}, - [2664] = {.lex_state = 13, .external_lex_state = 3}, - [2665] = {.lex_state = 3, .external_lex_state = 3}, - [2666] = {.lex_state = 17, .external_lex_state = 3}, - [2667] = {.lex_state = 67, .external_lex_state = 3}, - [2668] = {.lex_state = 0, .external_lex_state = 3}, - [2669] = {.lex_state = 67, .external_lex_state = 3}, - [2670] = {.lex_state = 0, .external_lex_state = 3}, - [2671] = {.lex_state = 3, .external_lex_state = 3}, - [2672] = {.lex_state = 0, .external_lex_state = 3}, - [2673] = {.lex_state = 67, .external_lex_state = 3}, - [2674] = {.lex_state = 67, .external_lex_state = 3}, - [2675] = {.lex_state = 16, .external_lex_state = 3}, - [2676] = {.lex_state = 16, .external_lex_state = 3}, - [2677] = {.lex_state = 0, .external_lex_state = 3}, - [2678] = {.lex_state = 67, .external_lex_state = 3}, - [2679] = {.lex_state = 13, .external_lex_state = 3}, - [2680] = {.lex_state = 0, .external_lex_state = 3}, - [2681] = {.lex_state = 0, .external_lex_state = 3}, - [2682] = {.lex_state = 0, .external_lex_state = 3}, - [2683] = {.lex_state = 0, .external_lex_state = 3}, - [2684] = {.lex_state = 0, .external_lex_state = 3}, - [2685] = {.lex_state = 67, .external_lex_state = 3}, - [2686] = {.lex_state = 67, .external_lex_state = 3}, - [2687] = {.lex_state = 0, .external_lex_state = 3}, - [2688] = {.lex_state = 0, .external_lex_state = 3}, - [2689] = {.lex_state = 67, .external_lex_state = 3}, - [2690] = {.lex_state = 0, .external_lex_state = 3}, - [2691] = {.lex_state = 67, .external_lex_state = 3}, - [2692] = {.lex_state = 3, .external_lex_state = 3}, - [2693] = {.lex_state = 67, .external_lex_state = 3}, - [2694] = {.lex_state = 0, .external_lex_state = 3}, - [2695] = {.lex_state = 0, .external_lex_state = 3}, - [2696] = {.lex_state = 0, .external_lex_state = 3}, - [2697] = {.lex_state = 0, .external_lex_state = 3}, - [2698] = {.lex_state = 13, .external_lex_state = 3}, - [2699] = {.lex_state = 0, .external_lex_state = 3}, - [2700] = {.lex_state = 0, .external_lex_state = 3}, - [2701] = {.lex_state = 0, .external_lex_state = 3}, - [2702] = {.lex_state = 0, .external_lex_state = 3}, - [2703] = {.lex_state = 0, .external_lex_state = 3}, - [2704] = {.lex_state = 0, .external_lex_state = 3}, - [2705] = {.lex_state = 67, .external_lex_state = 3}, - [2706] = {.lex_state = 0, .external_lex_state = 3}, - [2707] = {.lex_state = 67, .external_lex_state = 3}, - [2708] = {.lex_state = 0, .external_lex_state = 3}, - [2709] = {.lex_state = 0, .external_lex_state = 3}, - [2710] = {.lex_state = 0, .external_lex_state = 3}, - [2711] = {.lex_state = 67, .external_lex_state = 3}, - [2712] = {.lex_state = 0, .external_lex_state = 3}, - [2713] = {.lex_state = 67, .external_lex_state = 3}, - [2714] = {.lex_state = 13, .external_lex_state = 3}, - [2715] = {.lex_state = 0, .external_lex_state = 3}, - [2716] = {.lex_state = 13, .external_lex_state = 3}, - [2717] = {.lex_state = 0, .external_lex_state = 3}, - [2718] = {.lex_state = 0, .external_lex_state = 3}, - [2719] = {.lex_state = 67, .external_lex_state = 3}, - [2720] = {.lex_state = 0, .external_lex_state = 3}, - [2721] = {.lex_state = 16, .external_lex_state = 3}, - [2722] = {.lex_state = 0, .external_lex_state = 3}, - [2723] = {.lex_state = 16, .external_lex_state = 3}, - [2724] = {.lex_state = 13, .external_lex_state = 3}, - [2725] = {.lex_state = 13, .external_lex_state = 3}, - [2726] = {.lex_state = 16, .external_lex_state = 3}, - [2727] = {.lex_state = 16, .external_lex_state = 3}, - [2728] = {.lex_state = 0, .external_lex_state = 3}, - [2729] = {.lex_state = 67, .external_lex_state = 3}, - [2730] = {.lex_state = 16, .external_lex_state = 3}, - [2731] = {.lex_state = 16, .external_lex_state = 3}, - [2732] = {.lex_state = 0, .external_lex_state = 3}, - [2733] = {.lex_state = 0, .external_lex_state = 3}, - [2734] = {.lex_state = 0, .external_lex_state = 3}, - [2735] = {.lex_state = 16, .external_lex_state = 3}, - [2736] = {.lex_state = 17, .external_lex_state = 3}, - [2737] = {.lex_state = 16, .external_lex_state = 3}, - [2738] = {.lex_state = 0, .external_lex_state = 3}, - [2739] = {.lex_state = 13, .external_lex_state = 3}, - [2740] = {.lex_state = 0, .external_lex_state = 3}, - [2741] = {.lex_state = 0, .external_lex_state = 3}, - [2742] = {.lex_state = 13, .external_lex_state = 3}, - [2743] = {.lex_state = 0, .external_lex_state = 3}, - [2744] = {.lex_state = 0, .external_lex_state = 3}, - [2745] = {.lex_state = 0, .external_lex_state = 3}, - [2746] = {.lex_state = 0, .external_lex_state = 3}, - [2747] = {.lex_state = 67, .external_lex_state = 3}, - [2748] = {.lex_state = 0, .external_lex_state = 3}, - [2749] = {.lex_state = 13, .external_lex_state = 3}, - [2750] = {.lex_state = 0, .external_lex_state = 3}, - [2751] = {.lex_state = 7, .external_lex_state = 3}, - [2752] = {.lex_state = 67, .external_lex_state = 3}, - [2753] = {.lex_state = 67, .external_lex_state = 3}, - [2754] = {.lex_state = 0, .external_lex_state = 3}, - [2755] = {.lex_state = 0, .external_lex_state = 3}, - [2756] = {.lex_state = 0, .external_lex_state = 3}, - [2757] = {.lex_state = 67, .external_lex_state = 3}, - [2758] = {.lex_state = 0, .external_lex_state = 3}, - [2759] = {.lex_state = 0, .external_lex_state = 3}, - [2760] = {.lex_state = 67, .external_lex_state = 3}, - [2761] = {.lex_state = 0, .external_lex_state = 3}, - [2762] = {.lex_state = 0, .external_lex_state = 3}, - [2763] = {.lex_state = 67, .external_lex_state = 3}, - [2764] = {.lex_state = 16, .external_lex_state = 3}, - [2765] = {.lex_state = 16, .external_lex_state = 3}, - [2766] = {.lex_state = 0, .external_lex_state = 3}, - [2767] = {.lex_state = 0, .external_lex_state = 3}, - [2768] = {.lex_state = 0, .external_lex_state = 3}, - [2769] = {.lex_state = 7, .external_lex_state = 3}, - [2770] = {.lex_state = 67, .external_lex_state = 3}, - [2771] = {.lex_state = 7, .external_lex_state = 3}, - [2772] = {.lex_state = 0, .external_lex_state = 3}, - [2773] = {.lex_state = 0, .external_lex_state = 3}, - [2774] = {.lex_state = 16, .external_lex_state = 3}, - [2775] = {.lex_state = 16, .external_lex_state = 3}, - [2776] = {.lex_state = 0, .external_lex_state = 3}, - [2777] = {.lex_state = 16, .external_lex_state = 3}, - [2778] = {.lex_state = 16, .external_lex_state = 3}, - [2779] = {.lex_state = 16, .external_lex_state = 3}, - [2780] = {.lex_state = 0, .external_lex_state = 3}, - [2781] = {.lex_state = 0, .external_lex_state = 3}, - [2782] = {.lex_state = 13, .external_lex_state = 3}, - [2783] = {.lex_state = 0, .external_lex_state = 3}, - [2784] = {.lex_state = 16, .external_lex_state = 3}, - [2785] = {.lex_state = 0, .external_lex_state = 3}, - [2786] = {.lex_state = 0, .external_lex_state = 3}, - [2787] = {.lex_state = 0, .external_lex_state = 3}, - [2788] = {.lex_state = 0, .external_lex_state = 3}, - [2789] = {.lex_state = 0, .external_lex_state = 3}, - [2790] = {.lex_state = 16, .external_lex_state = 3}, - [2791] = {.lex_state = 13, .external_lex_state = 3}, - [2792] = {.lex_state = 13, .external_lex_state = 3}, - [2793] = {.lex_state = 0, .external_lex_state = 3}, - [2794] = {.lex_state = 67, .external_lex_state = 3}, - [2795] = {.lex_state = 0, .external_lex_state = 3}, - [2796] = {.lex_state = 0, .external_lex_state = 3}, - [2797] = {.lex_state = 13, .external_lex_state = 3}, - [2798] = {.lex_state = 67, .external_lex_state = 3}, - [2799] = {.lex_state = 0, .external_lex_state = 3}, - [2800] = {.lex_state = 16, .external_lex_state = 3}, - [2801] = {.lex_state = 0, .external_lex_state = 3}, - [2802] = {.lex_state = 16, .external_lex_state = 3}, - [2803] = {.lex_state = 0, .external_lex_state = 3}, - [2804] = {.lex_state = 67, .external_lex_state = 3}, - [2805] = {.lex_state = 0, .external_lex_state = 3}, - [2806] = {.lex_state = 0, .external_lex_state = 3}, - [2807] = {.lex_state = 0, .external_lex_state = 3}, - [2808] = {.lex_state = 0, .external_lex_state = 3}, - [2809] = {.lex_state = 0, .external_lex_state = 3}, - [2810] = {.lex_state = 67, .external_lex_state = 3}, - [2811] = {.lex_state = 13, .external_lex_state = 3}, - [2812] = {.lex_state = 17, .external_lex_state = 3}, - [2813] = {.lex_state = 0, .external_lex_state = 3}, - [2814] = {.lex_state = 0, .external_lex_state = 3}, - [2815] = {.lex_state = 0, .external_lex_state = 3}, - [2816] = {.lex_state = 0, .external_lex_state = 3}, - [2817] = {.lex_state = 0, .external_lex_state = 3}, - [2818] = {.lex_state = 0, .external_lex_state = 3}, - [2819] = {.lex_state = 0, .external_lex_state = 3}, - [2820] = {.lex_state = 67, .external_lex_state = 3}, - [2821] = {.lex_state = 67, .external_lex_state = 3}, - [2822] = {.lex_state = 0, .external_lex_state = 3}, - [2823] = {.lex_state = 0, .external_lex_state = 3}, - [2824] = {.lex_state = 13, .external_lex_state = 3}, - [2825] = {.lex_state = 13, .external_lex_state = 3}, - [2826] = {.lex_state = 13, .external_lex_state = 3}, - [2827] = {.lex_state = 67, .external_lex_state = 3}, - [2828] = {.lex_state = 67, .external_lex_state = 3}, - [2829] = {.lex_state = 3, .external_lex_state = 3}, - [2830] = {.lex_state = 0, .external_lex_state = 3}, - [2831] = {.lex_state = 16, .external_lex_state = 3}, - [2832] = {.lex_state = 16, .external_lex_state = 3}, - [2833] = {.lex_state = 0, .external_lex_state = 3}, - [2834] = {.lex_state = 16, .external_lex_state = 3}, - [2835] = {.lex_state = 67, .external_lex_state = 3}, - [2836] = {.lex_state = 67, .external_lex_state = 3}, - [2837] = {.lex_state = 67, .external_lex_state = 3}, - [2838] = {.lex_state = 7, .external_lex_state = 3}, - [2839] = {.lex_state = 26, .external_lex_state = 3}, - [2840] = {.lex_state = 0, .external_lex_state = 3}, - [2841] = {.lex_state = 67, .external_lex_state = 3}, - [2842] = {.lex_state = 13, .external_lex_state = 3}, - [2843] = {.lex_state = 67, .external_lex_state = 3}, - [2844] = {.lex_state = 0, .external_lex_state = 3}, - [2845] = {.lex_state = 0, .external_lex_state = 3}, - [2846] = {.lex_state = 0, .external_lex_state = 3}, - [2847] = {.lex_state = 0, .external_lex_state = 3}, - [2848] = {.lex_state = 0, .external_lex_state = 3}, - [2849] = {.lex_state = 13, .external_lex_state = 3}, - [2850] = {.lex_state = 17, .external_lex_state = 3}, - [2851] = {.lex_state = 0, .external_lex_state = 3}, - [2852] = {.lex_state = 0, .external_lex_state = 3}, - [2853] = {.lex_state = 0, .external_lex_state = 3}, - [2854] = {.lex_state = 67, .external_lex_state = 3}, - [2855] = {.lex_state = 0, .external_lex_state = 3}, - [2856] = {.lex_state = 0, .external_lex_state = 3}, - [2857] = {.lex_state = 0, .external_lex_state = 3}, - [2858] = {.lex_state = 0, .external_lex_state = 3}, - [2859] = {.lex_state = 0, .external_lex_state = 3}, - [2860] = {.lex_state = 0, .external_lex_state = 3}, - [2861] = {.lex_state = 0, .external_lex_state = 3}, - [2862] = {.lex_state = 0, .external_lex_state = 3}, - [2863] = {.lex_state = 0, .external_lex_state = 3}, - [2864] = {.lex_state = 67, .external_lex_state = 3}, - [2865] = {.lex_state = 0, .external_lex_state = 3}, - [2866] = {.lex_state = 67, .external_lex_state = 3}, - [2867] = {.lex_state = 0, .external_lex_state = 3}, - [2868] = {.lex_state = 67, .external_lex_state = 3}, - [2869] = {.lex_state = 0, .external_lex_state = 3}, - [2870] = {.lex_state = 67, .external_lex_state = 3}, - [2871] = {.lex_state = 3, .external_lex_state = 3}, - [2872] = {.lex_state = 67, .external_lex_state = 3}, - [2873] = {.lex_state = 0, .external_lex_state = 3}, - [2874] = {.lex_state = 67, .external_lex_state = 3}, - [2875] = {.lex_state = 0, .external_lex_state = 3}, - [2876] = {.lex_state = 67, .external_lex_state = 3}, - [2877] = {.lex_state = 67, .external_lex_state = 3}, - [2878] = {.lex_state = 13, .external_lex_state = 3}, - [2879] = {.lex_state = 67, .external_lex_state = 3}, - [2880] = {.lex_state = 67, .external_lex_state = 3}, - [2881] = {.lex_state = 16, .external_lex_state = 3}, - [2882] = {.lex_state = 16, .external_lex_state = 3}, - [2883] = {.lex_state = 0, .external_lex_state = 3}, - [2884] = {.lex_state = 0, .external_lex_state = 3}, - [2885] = {.lex_state = 0, .external_lex_state = 3}, - [2886] = {.lex_state = 16, .external_lex_state = 3}, - [2887] = {.lex_state = 16, .external_lex_state = 3}, - [2888] = {.lex_state = 67, .external_lex_state = 3}, - [2889] = {.lex_state = 16, .external_lex_state = 3}, - [2890] = {.lex_state = 16, .external_lex_state = 3}, - [2891] = {.lex_state = 16, .external_lex_state = 3}, - [2892] = {.lex_state = 16, .external_lex_state = 3}, - [2893] = {.lex_state = 0, .external_lex_state = 3}, - [2894] = {.lex_state = 0, .external_lex_state = 3}, - [2895] = {.lex_state = 16, .external_lex_state = 3}, - [2896] = {.lex_state = 0, .external_lex_state = 3}, - [2897] = {.lex_state = 16, .external_lex_state = 3}, - [2898] = {.lex_state = 67, .external_lex_state = 3}, - [2899] = {.lex_state = 0, .external_lex_state = 3}, - [2900] = {.lex_state = 0, .external_lex_state = 3}, - [2901] = {.lex_state = 0, .external_lex_state = 3}, - [2902] = {.lex_state = 0, .external_lex_state = 3}, - [2903] = {.lex_state = 13, .external_lex_state = 3}, - [2904] = {.lex_state = 0, .external_lex_state = 3}, - [2905] = {.lex_state = 0, .external_lex_state = 3}, - [2906] = {.lex_state = 67, .external_lex_state = 3}, - [2907] = {.lex_state = 0, .external_lex_state = 3}, - [2908] = {.lex_state = 0, .external_lex_state = 3}, - [2909] = {.lex_state = 67, .external_lex_state = 3}, - [2910] = {.lex_state = 13, .external_lex_state = 3}, - [2911] = {.lex_state = 0, .external_lex_state = 3}, - [2912] = {.lex_state = 0, .external_lex_state = 3}, - [2913] = {.lex_state = 0, .external_lex_state = 3}, - [2914] = {.lex_state = 67, .external_lex_state = 3}, - [2915] = {.lex_state = 67, .external_lex_state = 3}, - [2916] = {.lex_state = 0, .external_lex_state = 3}, - [2917] = {.lex_state = 0, .external_lex_state = 3}, - [2918] = {.lex_state = 67, .external_lex_state = 3}, - [2919] = {.lex_state = 0, .external_lex_state = 3}, - [2920] = {.lex_state = 67, .external_lex_state = 3}, - [2921] = {.lex_state = 0, .external_lex_state = 3}, - [2922] = {.lex_state = 67, .external_lex_state = 3}, - [2923] = {.lex_state = 0, .external_lex_state = 3}, - [2924] = {.lex_state = 3, .external_lex_state = 3}, - [2925] = {.lex_state = 0, .external_lex_state = 3}, - [2926] = {.lex_state = 17, .external_lex_state = 3}, - [2927] = {.lex_state = 13, .external_lex_state = 3}, - [2928] = {.lex_state = 67, .external_lex_state = 3}, - [2929] = {.lex_state = 0, .external_lex_state = 3}, - [2930] = {.lex_state = 67, .external_lex_state = 3}, - [2931] = {.lex_state = 0, .external_lex_state = 3}, - [2932] = {.lex_state = 0, .external_lex_state = 3}, - [2933] = {.lex_state = 67, .external_lex_state = 3}, - [2934] = {.lex_state = 0, .external_lex_state = 3}, - [2935] = {.lex_state = 0, .external_lex_state = 3}, - [2936] = {.lex_state = 0, .external_lex_state = 3}, - [2937] = {.lex_state = 13, .external_lex_state = 3}, - [2938] = {.lex_state = 0, .external_lex_state = 3}, - [2939] = {.lex_state = 13, .external_lex_state = 3}, - [2940] = {.lex_state = 13, .external_lex_state = 3}, - [2941] = {.lex_state = 13, .external_lex_state = 3}, - [2942] = {.lex_state = 67, .external_lex_state = 3}, - [2943] = {.lex_state = 13, .external_lex_state = 3}, - [2944] = {.lex_state = 67, .external_lex_state = 3}, - [2945] = {.lex_state = 0, .external_lex_state = 3}, - [2946] = {.lex_state = 67, .external_lex_state = 3}, - [2947] = {.lex_state = 0, .external_lex_state = 3}, - [2948] = {.lex_state = 13, .external_lex_state = 3}, - [2949] = {.lex_state = 0, .external_lex_state = 3}, - [2950] = {.lex_state = 13, .external_lex_state = 3}, - [2951] = {.lex_state = 13, .external_lex_state = 3}, - [2952] = {.lex_state = 13, .external_lex_state = 3}, - [2953] = {.lex_state = 13, .external_lex_state = 3}, - [2954] = {.lex_state = 13, .external_lex_state = 3}, - [2955] = {.lex_state = 13, .external_lex_state = 3}, - [2956] = {.lex_state = 13, .external_lex_state = 3}, - [2957] = {.lex_state = 13, .external_lex_state = 3}, - [2958] = {.lex_state = 0, .external_lex_state = 3}, - [2959] = {.lex_state = 0, .external_lex_state = 3}, - [2960] = {.lex_state = 0, .external_lex_state = 3}, - [2961] = {.lex_state = 13, .external_lex_state = 3}, - [2962] = {.lex_state = 13, .external_lex_state = 3}, - [2963] = {.lex_state = 13, .external_lex_state = 3}, - [2964] = {.lex_state = 0, .external_lex_state = 3}, - [2965] = {.lex_state = 13, .external_lex_state = 3}, - [2966] = {.lex_state = 13, .external_lex_state = 3}, - [2967] = {.lex_state = 0, .external_lex_state = 3}, - [2968] = {.lex_state = 0, .external_lex_state = 3}, - [2969] = {.lex_state = 0, .external_lex_state = 3}, - [2970] = {.lex_state = 67, .external_lex_state = 3}, - [2971] = {.lex_state = 13, .external_lex_state = 3}, - [2972] = {.lex_state = 0, .external_lex_state = 3}, - [2973] = {.lex_state = 13, .external_lex_state = 3}, - [2974] = {.lex_state = 0, .external_lex_state = 3}, - [2975] = {.lex_state = 0, .external_lex_state = 3}, - [2976] = {.lex_state = 0, .external_lex_state = 3}, - [2977] = {.lex_state = 13, .external_lex_state = 3}, - [2978] = {.lex_state = 13, .external_lex_state = 3}, - [2979] = {.lex_state = 13, .external_lex_state = 3}, - [2980] = {.lex_state = 13, .external_lex_state = 3}, - [2981] = {.lex_state = 0, .external_lex_state = 3}, - [2982] = {.lex_state = 0, .external_lex_state = 3}, - [2983] = {.lex_state = 0, .external_lex_state = 3}, - [2984] = {.lex_state = 13, .external_lex_state = 3}, - [2985] = {.lex_state = 13, .external_lex_state = 3}, - [2986] = {.lex_state = 67, .external_lex_state = 3}, - [2987] = {.lex_state = 13, .external_lex_state = 3}, - [2988] = {.lex_state = 0, .external_lex_state = 3}, - [2989] = {.lex_state = 0, .external_lex_state = 3}, - [2990] = {.lex_state = 13, .external_lex_state = 3}, - [2991] = {.lex_state = 13, .external_lex_state = 3}, - [2992] = {.lex_state = 0, .external_lex_state = 3}, - [2993] = {.lex_state = 0, .external_lex_state = 3}, - [2994] = {.lex_state = 13, .external_lex_state = 3}, - [2995] = {.lex_state = 13, .external_lex_state = 3}, - [2996] = {.lex_state = 13, .external_lex_state = 3}, - [2997] = {.lex_state = 13, .external_lex_state = 3}, - [2998] = {.lex_state = 0, .external_lex_state = 3}, - [2999] = {.lex_state = 13, .external_lex_state = 3}, - [3000] = {.lex_state = 13, .external_lex_state = 3}, - [3001] = {.lex_state = 0, .external_lex_state = 3}, - [3002] = {.lex_state = 13, .external_lex_state = 3}, - [3003] = {.lex_state = 13, .external_lex_state = 3}, - [3004] = {.lex_state = 13, .external_lex_state = 3}, - [3005] = {.lex_state = 13, .external_lex_state = 3}, - [3006] = {.lex_state = 13, .external_lex_state = 3}, - [3007] = {.lex_state = 13, .external_lex_state = 3}, - [3008] = {.lex_state = 13, .external_lex_state = 3}, - [3009] = {.lex_state = 7, .external_lex_state = 3}, - [3010] = {.lex_state = 67, .external_lex_state = 3}, - [3011] = {.lex_state = 13, .external_lex_state = 3}, - [3012] = {.lex_state = 0, .external_lex_state = 3}, - [3013] = {.lex_state = 67, .external_lex_state = 3}, - [3014] = {.lex_state = 17, .external_lex_state = 3}, - [3015] = {.lex_state = 0, .external_lex_state = 3}, - [3016] = {.lex_state = 0, .external_lex_state = 3}, - [3017] = {.lex_state = 0, .external_lex_state = 3}, - [3018] = {.lex_state = 0, .external_lex_state = 3}, - [3019] = {.lex_state = 13, .external_lex_state = 3}, - [3020] = {.lex_state = 26, .external_lex_state = 3}, - [3021] = {.lex_state = 0, .external_lex_state = 3}, - [3022] = {.lex_state = 13, .external_lex_state = 3}, - [3023] = {.lex_state = 0, .external_lex_state = 3}, - [3024] = {.lex_state = 13, .external_lex_state = 3}, - [3025] = {.lex_state = 67, .external_lex_state = 3}, - [3026] = {.lex_state = 13, .external_lex_state = 3}, - [3027] = {.lex_state = 67, .external_lex_state = 3}, - [3028] = {.lex_state = 13, .external_lex_state = 3}, - [3029] = {.lex_state = 13, .external_lex_state = 3}, - [3030] = {.lex_state = 67, .external_lex_state = 3}, - [3031] = {.lex_state = 0, .external_lex_state = 3}, - [3032] = {.lex_state = 67, .external_lex_state = 3}, - [3033] = {.lex_state = 67, .external_lex_state = 3}, - [3034] = {.lex_state = 67, .external_lex_state = 3}, - [3035] = {.lex_state = 0, .external_lex_state = 3}, - [3036] = {.lex_state = 67, .external_lex_state = 3}, - [3037] = {.lex_state = 0, .external_lex_state = 3}, - [3038] = {.lex_state = 67, .external_lex_state = 3}, - [3039] = {.lex_state = 67, .external_lex_state = 3}, - [3040] = {.lex_state = 0, .external_lex_state = 3}, - [3041] = {.lex_state = 0, .external_lex_state = 3}, - [3042] = {.lex_state = 0, .external_lex_state = 3}, - [3043] = {.lex_state = 0, .external_lex_state = 3}, - [3044] = {.lex_state = 13, .external_lex_state = 3}, - [3045] = {.lex_state = 0, .external_lex_state = 3}, - [3046] = {.lex_state = 0, .external_lex_state = 3}, - [3047] = {.lex_state = 67, .external_lex_state = 3}, - [3048] = {.lex_state = 0, .external_lex_state = 3}, - [3049] = {.lex_state = 0, .external_lex_state = 3}, - [3050] = {.lex_state = 7, .external_lex_state = 3}, - [3051] = {.lex_state = 0, .external_lex_state = 3}, - [3052] = {.lex_state = 0, .external_lex_state = 3}, - [3053] = {.lex_state = 0, .external_lex_state = 3}, - [3054] = {.lex_state = 13, .external_lex_state = 3}, - [3055] = {.lex_state = 0, .external_lex_state = 3}, - [3056] = {.lex_state = 67, .external_lex_state = 3}, - [3057] = {.lex_state = 0, .external_lex_state = 3}, - [3058] = {.lex_state = 0, .external_lex_state = 3}, - [3059] = {.lex_state = 0, .external_lex_state = 3}, - [3060] = {.lex_state = 67, .external_lex_state = 3}, - [3061] = {.lex_state = 0, .external_lex_state = 3}, - [3062] = {.lex_state = 0, .external_lex_state = 3}, - [3063] = {.lex_state = 0, .external_lex_state = 3}, - [3064] = {.lex_state = 13, .external_lex_state = 3}, - [3065] = {.lex_state = 0, .external_lex_state = 3}, - [3066] = {.lex_state = 13, .external_lex_state = 3}, - [3067] = {.lex_state = 13, .external_lex_state = 3}, - [3068] = {.lex_state = 0, .external_lex_state = 3}, - [3069] = {.lex_state = 13, .external_lex_state = 3}, - [3070] = {.lex_state = 13, .external_lex_state = 3}, - [3071] = {.lex_state = 0, .external_lex_state = 3}, - [3072] = {.lex_state = 67, .external_lex_state = 3}, - [3073] = {.lex_state = 0, .external_lex_state = 3}, - [3074] = {.lex_state = 13, .external_lex_state = 3}, - [3075] = {.lex_state = 67, .external_lex_state = 3}, - [3076] = {.lex_state = 13, .external_lex_state = 3}, - [3077] = {.lex_state = 13, .external_lex_state = 3}, - [3078] = {.lex_state = 13, .external_lex_state = 3}, - [3079] = {.lex_state = 13, .external_lex_state = 3}, - [3080] = {.lex_state = 0, .external_lex_state = 5}, - [3081] = {.lex_state = 0, .external_lex_state = 3}, - [3082] = {.lex_state = 0, .external_lex_state = 3}, - [3083] = {.lex_state = 0, .external_lex_state = 3}, - [3084] = {.lex_state = 0, .external_lex_state = 3}, - [3085] = {.lex_state = 0, .external_lex_state = 3}, - [3086] = {.lex_state = 0, .external_lex_state = 3}, - [3087] = {.lex_state = 0, .external_lex_state = 3}, - [3088] = {.lex_state = 0, .external_lex_state = 3}, - [3089] = {.lex_state = 0, .external_lex_state = 3}, - [3090] = {.lex_state = 13, .external_lex_state = 3}, - [3091] = {.lex_state = 67, .external_lex_state = 3}, - [3092] = {.lex_state = 0, .external_lex_state = 3}, - [3093] = {.lex_state = 26, .external_lex_state = 3}, - [3094] = {.lex_state = 0, .external_lex_state = 3}, - [3095] = {.lex_state = 0, .external_lex_state = 3}, - [3096] = {.lex_state = 0, .external_lex_state = 3}, - [3097] = {.lex_state = 13, .external_lex_state = 3}, - [3098] = {.lex_state = 26, .external_lex_state = 3}, - [3099] = {.lex_state = 67, .external_lex_state = 3}, - [3100] = {.lex_state = 0, .external_lex_state = 3}, - [3101] = {.lex_state = 0, .external_lex_state = 3}, - [3102] = {.lex_state = 0, .external_lex_state = 3}, - [3103] = {.lex_state = 13, .external_lex_state = 3}, - [3104] = {.lex_state = 13, .external_lex_state = 3}, - [3105] = {.lex_state = 13, .external_lex_state = 3}, - [3106] = {.lex_state = 13, .external_lex_state = 3}, - [3107] = {.lex_state = 13, .external_lex_state = 3}, - [3108] = {.lex_state = 13, .external_lex_state = 3}, - [3109] = {.lex_state = 13, .external_lex_state = 3}, - [3110] = {.lex_state = 0, .external_lex_state = 3}, - [3111] = {.lex_state = 0, .external_lex_state = 3}, - [3112] = {.lex_state = 0, .external_lex_state = 3}, - [3113] = {.lex_state = 0, .external_lex_state = 3}, - [3114] = {.lex_state = 0, .external_lex_state = 3}, - [3115] = {.lex_state = 26, .external_lex_state = 3}, - [3116] = {.lex_state = 13, .external_lex_state = 3}, - [3117] = {.lex_state = 13, .external_lex_state = 3}, - [3118] = {.lex_state = 0, .external_lex_state = 3}, - [3119] = {.lex_state = 0, .external_lex_state = 3}, - [3120] = {.lex_state = 67, .external_lex_state = 3}, - [3121] = {.lex_state = 0, .external_lex_state = 3}, - [3122] = {.lex_state = 0, .external_lex_state = 3}, - [3123] = {.lex_state = 0, .external_lex_state = 3}, - [3124] = {.lex_state = 67, .external_lex_state = 3}, - [3125] = {.lex_state = 13, .external_lex_state = 3}, - [3126] = {.lex_state = 67, .external_lex_state = 3}, - [3127] = {.lex_state = 0, .external_lex_state = 3}, - [3128] = {.lex_state = 0, .external_lex_state = 3}, - [3129] = {.lex_state = 13, .external_lex_state = 3}, - [3130] = {.lex_state = 0, .external_lex_state = 3}, - [3131] = {.lex_state = 13, .external_lex_state = 3}, - [3132] = {.lex_state = 13, .external_lex_state = 3}, - [3133] = {.lex_state = 0, .external_lex_state = 3}, - [3134] = {.lex_state = 0, .external_lex_state = 3}, - [3135] = {.lex_state = 13, .external_lex_state = 3}, - [3136] = {.lex_state = 0, .external_lex_state = 5}, - [3137] = {.lex_state = 13, .external_lex_state = 3}, - [3138] = {.lex_state = 13, .external_lex_state = 3}, - [3139] = {.lex_state = 67, .external_lex_state = 3}, - [3140] = {.lex_state = 13, .external_lex_state = 3}, - [3141] = {.lex_state = 0, .external_lex_state = 3}, - [3142] = {.lex_state = 13, .external_lex_state = 3}, - [3143] = {.lex_state = 0, .external_lex_state = 3}, - [3144] = {.lex_state = 67, .external_lex_state = 3}, - [3145] = {.lex_state = 67, .external_lex_state = 3}, - [3146] = {.lex_state = 0, .external_lex_state = 3}, - [3147] = {.lex_state = 0, .external_lex_state = 3}, - [3148] = {.lex_state = 0, .external_lex_state = 3}, - [3149] = {.lex_state = 13, .external_lex_state = 3}, - [3150] = {.lex_state = 67, .external_lex_state = 3}, - [3151] = {.lex_state = 13, .external_lex_state = 3}, - [3152] = {.lex_state = 13, .external_lex_state = 3}, - [3153] = {.lex_state = 0, .external_lex_state = 3}, - [3154] = {.lex_state = 13, .external_lex_state = 3}, - [3155] = {.lex_state = 13, .external_lex_state = 3}, - [3156] = {.lex_state = 0, .external_lex_state = 3}, - [3157] = {.lex_state = 67, .external_lex_state = 3}, - [3158] = {.lex_state = 0, .external_lex_state = 3}, - [3159] = {.lex_state = 0, .external_lex_state = 3}, - [3160] = {.lex_state = 0, .external_lex_state = 3}, - [3161] = {.lex_state = 13, .external_lex_state = 3}, - [3162] = {.lex_state = 13, .external_lex_state = 3}, - [3163] = {.lex_state = 13, .external_lex_state = 3}, - [3164] = {.lex_state = 13, .external_lex_state = 3}, - [3165] = {.lex_state = 13, .external_lex_state = 3}, - [3166] = {.lex_state = 13, .external_lex_state = 3}, - [3167] = {.lex_state = 0, .external_lex_state = 3}, - [3168] = {.lex_state = 13, .external_lex_state = 3}, - [3169] = {.lex_state = 13, .external_lex_state = 3}, - [3170] = {.lex_state = 0, .external_lex_state = 3}, - [3171] = {.lex_state = 0, .external_lex_state = 3}, - [3172] = {.lex_state = 13, .external_lex_state = 3}, - [3173] = {.lex_state = 13, .external_lex_state = 3}, - [3174] = {.lex_state = 26, .external_lex_state = 3}, - [3175] = {.lex_state = 0, .external_lex_state = 3}, - [3176] = {.lex_state = 13, .external_lex_state = 3}, - [3177] = {.lex_state = 13, .external_lex_state = 3}, - [3178] = {.lex_state = 6, .external_lex_state = 3}, - [3179] = {.lex_state = 0, .external_lex_state = 3}, - [3180] = {.lex_state = 26, .external_lex_state = 3}, - [3181] = {.lex_state = 67, .external_lex_state = 3}, - [3182] = {.lex_state = 0, .external_lex_state = 3}, - [3183] = {.lex_state = 13, .external_lex_state = 3}, - [3184] = {.lex_state = 13, .external_lex_state = 3}, - [3185] = {.lex_state = 67, .external_lex_state = 3}, - [3186] = {.lex_state = 0, .external_lex_state = 3}, - [3187] = {.lex_state = 13, .external_lex_state = 3}, - [3188] = {.lex_state = 0, .external_lex_state = 3}, - [3189] = {.lex_state = 0, .external_lex_state = 3}, - [3190] = {.lex_state = 13, .external_lex_state = 3}, - [3191] = {.lex_state = 0, .external_lex_state = 3}, - [3192] = {.lex_state = 13, .external_lex_state = 3}, - [3193] = {.lex_state = 0, .external_lex_state = 3}, - [3194] = {.lex_state = 67, .external_lex_state = 3}, - [3195] = {.lex_state = 0, .external_lex_state = 3}, - [3196] = {.lex_state = 13, .external_lex_state = 3}, - [3197] = {.lex_state = 0, .external_lex_state = 3}, - [3198] = {.lex_state = 0, .external_lex_state = 3}, - [3199] = {.lex_state = 0, .external_lex_state = 3}, - [3200] = {.lex_state = 0, .external_lex_state = 3}, - [3201] = {.lex_state = 0, .external_lex_state = 3}, - [3202] = {.lex_state = 13, .external_lex_state = 3}, - [3203] = {.lex_state = 13, .external_lex_state = 3}, - [3204] = {.lex_state = 0, .external_lex_state = 3}, - [3205] = {.lex_state = 13, .external_lex_state = 3}, - [3206] = {.lex_state = 13, .external_lex_state = 3}, - [3207] = {.lex_state = 0, .external_lex_state = 3}, - [3208] = {.lex_state = 13, .external_lex_state = 3}, - [3209] = {.lex_state = 0, .external_lex_state = 3}, - [3210] = {.lex_state = 0, .external_lex_state = 3}, - [3211] = {.lex_state = 13, .external_lex_state = 3}, - [3212] = {.lex_state = 13, .external_lex_state = 3}, - [3213] = {.lex_state = 0, .external_lex_state = 3}, - [3214] = {.lex_state = 0, .external_lex_state = 3}, - [3215] = {.lex_state = 0, .external_lex_state = 3}, - [3216] = {.lex_state = 17, .external_lex_state = 3}, - [3217] = {.lex_state = 13, .external_lex_state = 3}, - [3218] = {.lex_state = 17, .external_lex_state = 3}, - [3219] = {.lex_state = 13, .external_lex_state = 3}, - [3220] = {.lex_state = 0, .external_lex_state = 3}, - [3221] = {.lex_state = 13, .external_lex_state = 3}, - [3222] = {.lex_state = 13, .external_lex_state = 3}, - [3223] = {.lex_state = 13, .external_lex_state = 3}, - [3224] = {.lex_state = 13, .external_lex_state = 3}, - [3225] = {.lex_state = 13, .external_lex_state = 3}, - [3226] = {.lex_state = 0, .external_lex_state = 3}, - [3227] = {.lex_state = 0, .external_lex_state = 3}, - [3228] = {.lex_state = 0, .external_lex_state = 3}, - [3229] = {.lex_state = 0, .external_lex_state = 3}, - [3230] = {.lex_state = 0, .external_lex_state = 3}, - [3231] = {.lex_state = 0, .external_lex_state = 3}, - [3232] = {.lex_state = 17, .external_lex_state = 3}, - [3233] = {.lex_state = 0, .external_lex_state = 3}, - [3234] = {.lex_state = 13, .external_lex_state = 3}, - [3235] = {.lex_state = 13, .external_lex_state = 3}, - [3236] = {.lex_state = 0, .external_lex_state = 3}, - [3237] = {.lex_state = 0, .external_lex_state = 3}, - [3238] = {.lex_state = 0, .external_lex_state = 3}, - [3239] = {.lex_state = 13, .external_lex_state = 3}, - [3240] = {.lex_state = 0, .external_lex_state = 3}, - [3241] = {.lex_state = 0, .external_lex_state = 3}, - [3242] = {.lex_state = 0, .external_lex_state = 3}, - [3243] = {.lex_state = 0, .external_lex_state = 3}, - [3244] = {.lex_state = 67, .external_lex_state = 3}, - [3245] = {.lex_state = 0, .external_lex_state = 3}, - [3246] = {.lex_state = 13, .external_lex_state = 3}, - [3247] = {.lex_state = 0, .external_lex_state = 3}, - [3248] = {.lex_state = 13, .external_lex_state = 3}, - [3249] = {.lex_state = 13, .external_lex_state = 3}, - [3250] = {.lex_state = 17, .external_lex_state = 3}, - [3251] = {.lex_state = 0, .external_lex_state = 3}, - [3252] = {.lex_state = 0, .external_lex_state = 3}, - [3253] = {.lex_state = 0, .external_lex_state = 3}, - [3254] = {.lex_state = 13, .external_lex_state = 3}, - [3255] = {.lex_state = 13, .external_lex_state = 3}, - [3256] = {.lex_state = 13, .external_lex_state = 3}, - [3257] = {.lex_state = 13, .external_lex_state = 3}, - [3258] = {.lex_state = 13, .external_lex_state = 3}, - [3259] = {.lex_state = 0, .external_lex_state = 3}, - [3260] = {.lex_state = 0, .external_lex_state = 3}, - [3261] = {.lex_state = 0, .external_lex_state = 3}, - [3262] = {.lex_state = 0, .external_lex_state = 3}, - [3263] = {.lex_state = 0, .external_lex_state = 3}, - [3264] = {.lex_state = 0, .external_lex_state = 3}, - [3265] = {.lex_state = 0, .external_lex_state = 3}, - [3266] = {.lex_state = 13, .external_lex_state = 3}, - [3267] = {.lex_state = 0, .external_lex_state = 3}, - [3268] = {.lex_state = 0, .external_lex_state = 3}, - [3269] = {.lex_state = 0, .external_lex_state = 3}, - [3270] = {.lex_state = 0, .external_lex_state = 3}, - [3271] = {.lex_state = 0, .external_lex_state = 3}, - [3272] = {.lex_state = 0, .external_lex_state = 3}, - [3273] = {.lex_state = 67, .external_lex_state = 3}, - [3274] = {.lex_state = 67, .external_lex_state = 3}, - [3275] = {.lex_state = 13, .external_lex_state = 3}, - [3276] = {.lex_state = 13, .external_lex_state = 3}, - [3277] = {.lex_state = 0, .external_lex_state = 3}, - [3278] = {.lex_state = 0, .external_lex_state = 3}, - [3279] = {.lex_state = 0, .external_lex_state = 3}, - [3280] = {.lex_state = 0, .external_lex_state = 3}, - [3281] = {.lex_state = 0, .external_lex_state = 3}, - [3282] = {.lex_state = 0, .external_lex_state = 3}, - [3283] = {.lex_state = 0, .external_lex_state = 3}, - [3284] = {.lex_state = 13, .external_lex_state = 3}, - [3285] = {.lex_state = 13, .external_lex_state = 3}, - [3286] = {.lex_state = 67, .external_lex_state = 3}, - [3287] = {.lex_state = 0, .external_lex_state = 3}, - [3288] = {.lex_state = 0, .external_lex_state = 3}, - [3289] = {.lex_state = 13, .external_lex_state = 3}, - [3290] = {.lex_state = 0, .external_lex_state = 3}, - [3291] = {.lex_state = 67, .external_lex_state = 3}, - [3292] = {.lex_state = 0, .external_lex_state = 3}, - [3293] = {.lex_state = 13, .external_lex_state = 3}, - [3294] = {.lex_state = 0, .external_lex_state = 3}, - [3295] = {.lex_state = 0, .external_lex_state = 3}, - [3296] = {.lex_state = 0, .external_lex_state = 3}, - [3297] = {.lex_state = 0, .external_lex_state = 3}, - [3298] = {.lex_state = 0, .external_lex_state = 3}, - [3299] = {.lex_state = 0, .external_lex_state = 3}, - [3300] = {.lex_state = 0, .external_lex_state = 3}, - [3301] = {.lex_state = 13, .external_lex_state = 3}, - [3302] = {.lex_state = 13, .external_lex_state = 3}, - [3303] = {.lex_state = 0, .external_lex_state = 3}, - [3304] = {.lex_state = 0, .external_lex_state = 3}, - [3305] = {.lex_state = 0, .external_lex_state = 3}, - [3306] = {.lex_state = 0, .external_lex_state = 3}, - [3307] = {.lex_state = 13, .external_lex_state = 3}, - [3308] = {.lex_state = 0, .external_lex_state = 3}, - [3309] = {.lex_state = 0, .external_lex_state = 3}, - [3310] = {.lex_state = 0, .external_lex_state = 3}, - [3311] = {.lex_state = 0, .external_lex_state = 3}, - [3312] = {.lex_state = 13, .external_lex_state = 3}, - [3313] = {.lex_state = 13, .external_lex_state = 3}, - [3314] = {.lex_state = 13, .external_lex_state = 3}, - [3315] = {.lex_state = 0, .external_lex_state = 3}, - [3316] = {.lex_state = 0, .external_lex_state = 3}, - [3317] = {.lex_state = 0, .external_lex_state = 3}, - [3318] = {.lex_state = 13, .external_lex_state = 3}, - [3319] = {.lex_state = 17, .external_lex_state = 3}, - [3320] = {.lex_state = 13, .external_lex_state = 3}, - [3321] = {.lex_state = 0, .external_lex_state = 3}, - [3322] = {.lex_state = 13, .external_lex_state = 3}, - [3323] = {.lex_state = 13, .external_lex_state = 3}, - [3324] = {.lex_state = 0, .external_lex_state = 3}, - [3325] = {.lex_state = 0, .external_lex_state = 3}, - [3326] = {.lex_state = 0, .external_lex_state = 3}, - [3327] = {.lex_state = 13, .external_lex_state = 3}, - [3328] = {.lex_state = 13, .external_lex_state = 3}, - [3329] = {.lex_state = 0, .external_lex_state = 3}, - [3330] = {.lex_state = 0, .external_lex_state = 3}, - [3331] = {.lex_state = 0, .external_lex_state = 3}, - [3332] = {.lex_state = 13, .external_lex_state = 3}, - [3333] = {.lex_state = 0, .external_lex_state = 3}, - [3334] = {.lex_state = 0, .external_lex_state = 3}, - [3335] = {.lex_state = 13, .external_lex_state = 3}, - [3336] = {.lex_state = 0, .external_lex_state = 3}, - [3337] = {.lex_state = 0, .external_lex_state = 3}, - [3338] = {.lex_state = 0, .external_lex_state = 3}, - [3339] = {.lex_state = 0, .external_lex_state = 3}, - [3340] = {.lex_state = 0, .external_lex_state = 3}, - [3341] = {.lex_state = 0, .external_lex_state = 3}, - [3342] = {.lex_state = 0, .external_lex_state = 3}, - [3343] = {.lex_state = 0, .external_lex_state = 3}, - [3344] = {.lex_state = 0, .external_lex_state = 3}, - [3345] = {.lex_state = 0, .external_lex_state = 3}, - [3346] = {.lex_state = 0, .external_lex_state = 3}, - [3347] = {.lex_state = 13, .external_lex_state = 3}, - [3348] = {.lex_state = 0, .external_lex_state = 3}, - [3349] = {.lex_state = 17, .external_lex_state = 3}, - [3350] = {.lex_state = 0, .external_lex_state = 3}, - [3351] = {.lex_state = 13, .external_lex_state = 3}, - [3352] = {.lex_state = 0, .external_lex_state = 3}, - [3353] = {.lex_state = 0, .external_lex_state = 3}, - [3354] = {.lex_state = 0, .external_lex_state = 3}, - [3355] = {.lex_state = 0, .external_lex_state = 3}, - [3356] = {.lex_state = 0, .external_lex_state = 3}, - [3357] = {.lex_state = 13, .external_lex_state = 3}, - [3358] = {.lex_state = 13, .external_lex_state = 3}, - [3359] = {.lex_state = 13, .external_lex_state = 3}, - [3360] = {.lex_state = 0, .external_lex_state = 3}, - [3361] = {.lex_state = 0, .external_lex_state = 3}, - [3362] = {.lex_state = 0, .external_lex_state = 3}, - [3363] = {.lex_state = 0, .external_lex_state = 3}, - [3364] = {.lex_state = 0, .external_lex_state = 3}, - [3365] = {.lex_state = 0, .external_lex_state = 3}, - [3366] = {.lex_state = 0, .external_lex_state = 3}, - [3367] = {.lex_state = 13, .external_lex_state = 3}, - [3368] = {.lex_state = 0, .external_lex_state = 3}, - [3369] = {.lex_state = 0, .external_lex_state = 3}, - [3370] = {.lex_state = 0, .external_lex_state = 3}, - [3371] = {.lex_state = 13, .external_lex_state = 3}, - [3372] = {.lex_state = 0, .external_lex_state = 3}, - [3373] = {.lex_state = 0, .external_lex_state = 3}, - [3374] = {.lex_state = 0, .external_lex_state = 3}, - [3375] = {.lex_state = 0, .external_lex_state = 3}, - [3376] = {.lex_state = 0, .external_lex_state = 3}, - [3377] = {.lex_state = 0, .external_lex_state = 3}, - [3378] = {.lex_state = 0, .external_lex_state = 3}, - [3379] = {.lex_state = 0, .external_lex_state = 3}, - [3380] = {.lex_state = 0, .external_lex_state = 3}, - [3381] = {.lex_state = 0, .external_lex_state = 3}, - [3382] = {.lex_state = 0, .external_lex_state = 3}, - [3383] = {.lex_state = 0, .external_lex_state = 3}, - [3384] = {.lex_state = 0, .external_lex_state = 3}, - [3385] = {.lex_state = 0, .external_lex_state = 3}, - [3386] = {.lex_state = 0, .external_lex_state = 3}, - [3387] = {.lex_state = 0, .external_lex_state = 3}, - [3388] = {.lex_state = 0, .external_lex_state = 3}, - [3389] = {.lex_state = 0, .external_lex_state = 3}, - [3390] = {.lex_state = 0, .external_lex_state = 3}, - [3391] = {.lex_state = 0, .external_lex_state = 3}, - [3392] = {.lex_state = 0, .external_lex_state = 3}, - [3393] = {.lex_state = 0, .external_lex_state = 3}, - [3394] = {.lex_state = 17, .external_lex_state = 3}, - [3395] = {.lex_state = 17, .external_lex_state = 3}, - [3396] = {.lex_state = 0, .external_lex_state = 3}, - [3397] = {.lex_state = 0, .external_lex_state = 3}, - [3398] = {.lex_state = 0, .external_lex_state = 3}, - [3399] = {.lex_state = 17, .external_lex_state = 3}, - [3400] = {.lex_state = 17, .external_lex_state = 3}, - [3401] = {.lex_state = 0, .external_lex_state = 3}, - [3402] = {.lex_state = 0, .external_lex_state = 3}, - [3403] = {.lex_state = 0, .external_lex_state = 3}, - [3404] = {.lex_state = 0, .external_lex_state = 3}, - [3405] = {.lex_state = 17, .external_lex_state = 3}, - [3406] = {.lex_state = 0, .external_lex_state = 3}, - [3407] = {.lex_state = 0, .external_lex_state = 3}, - [3408] = {.lex_state = 0, .external_lex_state = 3}, - [3409] = {.lex_state = 13, .external_lex_state = 3}, - [3410] = {.lex_state = 0, .external_lex_state = 3}, - [3411] = {.lex_state = 0, .external_lex_state = 3}, - [3412] = {.lex_state = 0, .external_lex_state = 3}, - [3413] = {.lex_state = 13, .external_lex_state = 3}, - [3414] = {.lex_state = 0, .external_lex_state = 3}, - [3415] = {.lex_state = 17, .external_lex_state = 3}, - [3416] = {.lex_state = 0, .external_lex_state = 3}, - [3417] = {.lex_state = 13, .external_lex_state = 3}, - [3418] = {.lex_state = 0, .external_lex_state = 3}, - [3419] = {.lex_state = 17, .external_lex_state = 3}, - [3420] = {.lex_state = 0, .external_lex_state = 3}, - [3421] = {.lex_state = 0, .external_lex_state = 3}, - [3422] = {.lex_state = 0, .external_lex_state = 3}, - [3423] = {.lex_state = 17, .external_lex_state = 3}, - [3424] = {.lex_state = 0, .external_lex_state = 3}, - [3425] = {.lex_state = 17, .external_lex_state = 3}, - [3426] = {.lex_state = 0, .external_lex_state = 3}, - [3427] = {.lex_state = 0, .external_lex_state = 3}, - [3428] = {.lex_state = 0, .external_lex_state = 3}, - [3429] = {.lex_state = 0, .external_lex_state = 3}, - [3430] = {.lex_state = 0, .external_lex_state = 3}, - [3431] = {.lex_state = 13, .external_lex_state = 3}, - [3432] = {.lex_state = 67, .external_lex_state = 3}, - [3433] = {.lex_state = 17, .external_lex_state = 3}, - [3434] = {.lex_state = 13, .external_lex_state = 3}, - [3435] = {.lex_state = 0, .external_lex_state = 3}, - [3436] = {.lex_state = 0, .external_lex_state = 3}, - [3437] = {.lex_state = 17, .external_lex_state = 3}, - [3438] = {.lex_state = 17, .external_lex_state = 3}, - [3439] = {.lex_state = 0, .external_lex_state = 3}, - [3440] = {.lex_state = 17, .external_lex_state = 3}, - [3441] = {.lex_state = 0, .external_lex_state = 3}, - [3442] = {.lex_state = 0, .external_lex_state = 3}, - [3443] = {.lex_state = 17, .external_lex_state = 3}, - [3444] = {.lex_state = 17, .external_lex_state = 3}, - [3445] = {.lex_state = 67, .external_lex_state = 3}, - [3446] = {.lex_state = 13, .external_lex_state = 3}, - [3447] = {.lex_state = 17, .external_lex_state = 3}, - [3448] = {.lex_state = 17, .external_lex_state = 3}, - [3449] = {.lex_state = 17, .external_lex_state = 3}, - [3450] = {.lex_state = 13, .external_lex_state = 3}, - [3451] = {.lex_state = 13, .external_lex_state = 3}, - [3452] = {.lex_state = 0, .external_lex_state = 3}, - [3453] = {.lex_state = 0, .external_lex_state = 3}, - [3454] = {.lex_state = 13, .external_lex_state = 3}, - [3455] = {.lex_state = 0, .external_lex_state = 3}, - [3456] = {.lex_state = 17, .external_lex_state = 3}, - [3457] = {.lex_state = 13, .external_lex_state = 3}, - [3458] = {.lex_state = 13, .external_lex_state = 3}, - [3459] = {.lex_state = 0, .external_lex_state = 3}, - [3460] = {.lex_state = 13, .external_lex_state = 3}, - [3461] = {.lex_state = 0, .external_lex_state = 3}, - [3462] = {.lex_state = 0, .external_lex_state = 3}, - [3463] = {.lex_state = 0, .external_lex_state = 3}, - [3464] = {.lex_state = 0, .external_lex_state = 3}, - [3465] = {.lex_state = 13, .external_lex_state = 3}, - [3466] = {.lex_state = 17, .external_lex_state = 3}, - [3467] = {.lex_state = 13, .external_lex_state = 3}, - [3468] = {.lex_state = 0, .external_lex_state = 3}, - [3469] = {.lex_state = 13, .external_lex_state = 3}, + [2545] = {.lex_state = 7}, + [2546] = {.lex_state = 7}, + [2547] = {.lex_state = 7}, + [2548] = {.lex_state = 7}, + [2549] = {.lex_state = 7}, + [2550] = {.lex_state = 7}, + [2551] = {.lex_state = 7}, + [2552] = {.lex_state = 7}, + [2553] = {.lex_state = 7}, + [2554] = {.lex_state = 3}, + [2555] = {.lex_state = 26}, + [2556] = {.lex_state = 7}, + [2557] = {.lex_state = 68}, + [2558] = {.lex_state = 7}, + [2559] = {.lex_state = 7}, + [2560] = {.lex_state = 68}, + [2561] = {.lex_state = 7}, + [2562] = {.lex_state = 13}, + [2563] = {.lex_state = 28}, + [2564] = {.lex_state = 7}, + [2565] = {.lex_state = 15}, + [2566] = {.lex_state = 13}, + [2567] = {.lex_state = 13}, + [2568] = {.lex_state = 13}, + [2569] = {.lex_state = 13}, + [2570] = {.lex_state = 0}, + [2571] = {.lex_state = 0}, + [2572] = {.lex_state = 7}, + [2573] = {.lex_state = 7}, + [2574] = {.lex_state = 0}, + [2575] = {.lex_state = 15}, + [2576] = {.lex_state = 7}, + [2577] = {.lex_state = 13}, + [2578] = {.lex_state = 7}, + [2579] = {.lex_state = 7, .external_lex_state = 4}, + [2580] = {.lex_state = 0}, + [2581] = {.lex_state = 68}, + [2582] = {.lex_state = 13}, + [2583] = {.lex_state = 3}, + [2584] = {.lex_state = 7}, + [2585] = {.lex_state = 3}, + [2586] = {.lex_state = 13}, + [2587] = {.lex_state = 13}, + [2588] = {.lex_state = 26}, + [2589] = {.lex_state = 7}, + [2590] = {.lex_state = 7}, + [2591] = {.lex_state = 7}, + [2592] = {.lex_state = 7}, + [2593] = {.lex_state = 7, .external_lex_state = 4}, + [2594] = {.lex_state = 13}, + [2595] = {.lex_state = 3}, + [2596] = {.lex_state = 0}, + [2597] = {.lex_state = 13}, + [2598] = {.lex_state = 26}, + [2599] = {.lex_state = 7}, + [2600] = {.lex_state = 3}, + [2601] = {.lex_state = 68}, + [2602] = {.lex_state = 7, .external_lex_state = 4}, + [2603] = {.lex_state = 7}, + [2604] = {.lex_state = 13}, + [2605] = {.lex_state = 3}, + [2606] = {.lex_state = 0}, + [2607] = {.lex_state = 7, .external_lex_state = 4}, + [2608] = {.lex_state = 0}, + [2609] = {.lex_state = 3}, + [2610] = {.lex_state = 3}, + [2611] = {.lex_state = 3}, + [2612] = {.lex_state = 13}, + [2613] = {.lex_state = 3}, + [2614] = {.lex_state = 68}, + [2615] = {.lex_state = 13}, + [2616] = {.lex_state = 68}, + [2617] = {.lex_state = 13}, + [2618] = {.lex_state = 68}, + [2619] = {.lex_state = 13}, + [2620] = {.lex_state = 16}, + [2621] = {.lex_state = 3}, + [2622] = {.lex_state = 7}, + [2623] = {.lex_state = 13}, + [2624] = {.lex_state = 68}, + [2625] = {.lex_state = 68}, + [2626] = {.lex_state = 0}, + [2627] = {.lex_state = 68}, + [2628] = {.lex_state = 3}, + [2629] = {.lex_state = 0}, + [2630] = {.lex_state = 7}, + [2631] = {.lex_state = 16}, + [2632] = {.lex_state = 7, .external_lex_state = 4}, + [2633] = {.lex_state = 0}, + [2634] = {.lex_state = 7}, + [2635] = {.lex_state = 3}, + [2636] = {.lex_state = 3}, + [2637] = {.lex_state = 3}, + [2638] = {.lex_state = 16}, + [2639] = {.lex_state = 68}, + [2640] = {.lex_state = 26}, + [2641] = {.lex_state = 68}, + [2642] = {.lex_state = 68}, + [2643] = {.lex_state = 7, .external_lex_state = 4}, + [2644] = {.lex_state = 16}, + [2645] = {.lex_state = 16}, + [2646] = {.lex_state = 7}, + [2647] = {.lex_state = 68}, + [2648] = {.lex_state = 0}, + [2649] = {.lex_state = 3}, + [2650] = {.lex_state = 13}, + [2651] = {.lex_state = 3}, + [2652] = {.lex_state = 3}, + [2653] = {.lex_state = 3}, + [2654] = {.lex_state = 68}, + [2655] = {.lex_state = 3}, + [2656] = {.lex_state = 16}, + [2657] = {.lex_state = 3}, + [2658] = {.lex_state = 3}, + [2659] = {.lex_state = 3}, + [2660] = {.lex_state = 68}, + [2661] = {.lex_state = 7}, + [2662] = {.lex_state = 3}, + [2663] = {.lex_state = 3}, + [2664] = {.lex_state = 16}, + [2665] = {.lex_state = 13}, + [2666] = {.lex_state = 13}, + [2667] = {.lex_state = 7}, + [2668] = {.lex_state = 26}, + [2669] = {.lex_state = 68}, + [2670] = {.lex_state = 13}, + [2671] = {.lex_state = 7}, + [2672] = {.lex_state = 3}, + [2673] = {.lex_state = 3}, + [2674] = {.lex_state = 13}, + [2675] = {.lex_state = 3}, + [2676] = {.lex_state = 0}, + [2677] = {.lex_state = 3}, + [2678] = {.lex_state = 0}, + [2679] = {.lex_state = 68}, + [2680] = {.lex_state = 0}, + [2681] = {.lex_state = 68}, + [2682] = {.lex_state = 68}, + [2683] = {.lex_state = 0}, + [2684] = {.lex_state = 0}, + [2685] = {.lex_state = 13}, + [2686] = {.lex_state = 0}, + [2687] = {.lex_state = 0}, + [2688] = {.lex_state = 0}, + [2689] = {.lex_state = 16}, + [2690] = {.lex_state = 16}, + [2691] = {.lex_state = 0}, + [2692] = {.lex_state = 13}, + [2693] = {.lex_state = 0}, + [2694] = {.lex_state = 13}, + [2695] = {.lex_state = 7}, + [2696] = {.lex_state = 7}, + [2697] = {.lex_state = 16}, + [2698] = {.lex_state = 16}, + [2699] = {.lex_state = 16}, + [2700] = {.lex_state = 16}, + [2701] = {.lex_state = 16}, + [2702] = {.lex_state = 3}, + [2703] = {.lex_state = 68}, + [2704] = {.lex_state = 0}, + [2705] = {.lex_state = 16}, + [2706] = {.lex_state = 0}, + [2707] = {.lex_state = 0}, + [2708] = {.lex_state = 13}, + [2709] = {.lex_state = 0}, + [2710] = {.lex_state = 0}, + [2711] = {.lex_state = 0}, + [2712] = {.lex_state = 68}, + [2713] = {.lex_state = 0}, + [2714] = {.lex_state = 68}, + [2715] = {.lex_state = 0}, + [2716] = {.lex_state = 0}, + [2717] = {.lex_state = 0}, + [2718] = {.lex_state = 0}, + [2719] = {.lex_state = 68}, + [2720] = {.lex_state = 16}, + [2721] = {.lex_state = 68}, + [2722] = {.lex_state = 16}, + [2723] = {.lex_state = 0}, + [2724] = {.lex_state = 0}, + [2725] = {.lex_state = 0}, + [2726] = {.lex_state = 16}, + [2727] = {.lex_state = 3}, + [2728] = {.lex_state = 0}, + [2729] = {.lex_state = 0}, + [2730] = {.lex_state = 0}, + [2731] = {.lex_state = 0}, + [2732] = {.lex_state = 68}, + [2733] = {.lex_state = 0}, + [2734] = {.lex_state = 0}, + [2735] = {.lex_state = 0}, + [2736] = {.lex_state = 68}, + [2737] = {.lex_state = 0}, + [2738] = {.lex_state = 68}, + [2739] = {.lex_state = 0}, + [2740] = {.lex_state = 68}, + [2741] = {.lex_state = 0}, + [2742] = {.lex_state = 0}, + [2743] = {.lex_state = 0}, + [2744] = {.lex_state = 0}, + [2745] = {.lex_state = 68}, + [2746] = {.lex_state = 68}, + [2747] = {.lex_state = 0}, + [2748] = {.lex_state = 68}, + [2749] = {.lex_state = 17}, + [2750] = {.lex_state = 0}, + [2751] = {.lex_state = 13}, + [2752] = {.lex_state = 68}, + [2753] = {.lex_state = 68}, + [2754] = {.lex_state = 13}, + [2755] = {.lex_state = 0}, + [2756] = {.lex_state = 0}, + [2757] = {.lex_state = 68}, + [2758] = {.lex_state = 68}, + [2759] = {.lex_state = 0}, + [2760] = {.lex_state = 68}, + [2761] = {.lex_state = 0}, + [2762] = {.lex_state = 0}, + [2763] = {.lex_state = 0}, + [2764] = {.lex_state = 68}, + [2765] = {.lex_state = 13}, + [2766] = {.lex_state = 0}, + [2767] = {.lex_state = 7}, + [2768] = {.lex_state = 0}, + [2769] = {.lex_state = 16}, + [2770] = {.lex_state = 0}, + [2771] = {.lex_state = 0}, + [2772] = {.lex_state = 16}, + [2773] = {.lex_state = 13}, + [2774] = {.lex_state = 0}, + [2775] = {.lex_state = 0}, + [2776] = {.lex_state = 0}, + [2777] = {.lex_state = 13}, + [2778] = {.lex_state = 0}, + [2779] = {.lex_state = 0}, + [2780] = {.lex_state = 0}, + [2781] = {.lex_state = 16}, + [2782] = {.lex_state = 0}, + [2783] = {.lex_state = 13}, + [2784] = {.lex_state = 16}, + [2785] = {.lex_state = 68}, + [2786] = {.lex_state = 16}, + [2787] = {.lex_state = 16}, + [2788] = {.lex_state = 68}, + [2789] = {.lex_state = 0}, + [2790] = {.lex_state = 68}, + [2791] = {.lex_state = 0}, + [2792] = {.lex_state = 0}, + [2793] = {.lex_state = 68}, + [2794] = {.lex_state = 0}, + [2795] = {.lex_state = 13}, + [2796] = {.lex_state = 0}, + [2797] = {.lex_state = 13}, + [2798] = {.lex_state = 68}, + [2799] = {.lex_state = 13}, + [2800] = {.lex_state = 68}, + [2801] = {.lex_state = 0}, + [2802] = {.lex_state = 68}, + [2803] = {.lex_state = 0}, + [2804] = {.lex_state = 7, .external_lex_state = 4}, + [2805] = {.lex_state = 0}, + [2806] = {.lex_state = 0}, + [2807] = {.lex_state = 0}, + [2808] = {.lex_state = 0}, + [2809] = {.lex_state = 0}, + [2810] = {.lex_state = 68}, + [2811] = {.lex_state = 68}, + [2812] = {.lex_state = 3}, + [2813] = {.lex_state = 0}, + [2814] = {.lex_state = 0}, + [2815] = {.lex_state = 0}, + [2816] = {.lex_state = 17}, + [2817] = {.lex_state = 0}, + [2818] = {.lex_state = 68}, + [2819] = {.lex_state = 0}, + [2820] = {.lex_state = 0}, + [2821] = {.lex_state = 16}, + [2822] = {.lex_state = 0}, + [2823] = {.lex_state = 0}, + [2824] = {.lex_state = 0}, + [2825] = {.lex_state = 16}, + [2826] = {.lex_state = 0}, + [2827] = {.lex_state = 16}, + [2828] = {.lex_state = 0}, + [2829] = {.lex_state = 0}, + [2830] = {.lex_state = 16}, + [2831] = {.lex_state = 68}, + [2832] = {.lex_state = 0}, + [2833] = {.lex_state = 0}, + [2834] = {.lex_state = 0}, + [2835] = {.lex_state = 68}, + [2836] = {.lex_state = 68}, + [2837] = {.lex_state = 0}, + [2838] = {.lex_state = 7}, + [2839] = {.lex_state = 68}, + [2840] = {.lex_state = 0}, + [2841] = {.lex_state = 0}, + [2842] = {.lex_state = 68}, + [2843] = {.lex_state = 0}, + [2844] = {.lex_state = 68}, + [2845] = {.lex_state = 68}, + [2846] = {.lex_state = 68}, + [2847] = {.lex_state = 0}, + [2848] = {.lex_state = 0}, + [2849] = {.lex_state = 0}, + [2850] = {.lex_state = 68}, + [2851] = {.lex_state = 13}, + [2852] = {.lex_state = 0}, + [2853] = {.lex_state = 0}, + [2854] = {.lex_state = 0}, + [2855] = {.lex_state = 0}, + [2856] = {.lex_state = 68}, + [2857] = {.lex_state = 0}, + [2858] = {.lex_state = 68}, + [2859] = {.lex_state = 68}, + [2860] = {.lex_state = 0}, + [2861] = {.lex_state = 16}, + [2862] = {.lex_state = 68}, + [2863] = {.lex_state = 13}, + [2864] = {.lex_state = 16}, + [2865] = {.lex_state = 13}, + [2866] = {.lex_state = 0}, + [2867] = {.lex_state = 68}, + [2868] = {.lex_state = 68}, + [2869] = {.lex_state = 0}, + [2870] = {.lex_state = 0}, + [2871] = {.lex_state = 13}, + [2872] = {.lex_state = 0}, + [2873] = {.lex_state = 13}, + [2874] = {.lex_state = 0}, + [2875] = {.lex_state = 17}, + [2876] = {.lex_state = 68}, + [2877] = {.lex_state = 0}, + [2878] = {.lex_state = 0}, + [2879] = {.lex_state = 0}, + [2880] = {.lex_state = 0}, + [2881] = {.lex_state = 0}, + [2882] = {.lex_state = 68}, + [2883] = {.lex_state = 0}, + [2884] = {.lex_state = 68}, + [2885] = {.lex_state = 0}, + [2886] = {.lex_state = 68}, + [2887] = {.lex_state = 0}, + [2888] = {.lex_state = 0}, + [2889] = {.lex_state = 26}, + [2890] = {.lex_state = 16}, + [2891] = {.lex_state = 16}, + [2892] = {.lex_state = 16}, + [2893] = {.lex_state = 0}, + [2894] = {.lex_state = 16}, + [2895] = {.lex_state = 16}, + [2896] = {.lex_state = 0}, + [2897] = {.lex_state = 0}, + [2898] = {.lex_state = 68}, + [2899] = {.lex_state = 0}, + [2900] = {.lex_state = 0}, + [2901] = {.lex_state = 0}, + [2902] = {.lex_state = 68}, + [2903] = {.lex_state = 68}, + [2904] = {.lex_state = 16}, + [2905] = {.lex_state = 68}, + [2906] = {.lex_state = 3}, + [2907] = {.lex_state = 68}, + [2908] = {.lex_state = 0}, + [2909] = {.lex_state = 0}, + [2910] = {.lex_state = 68}, + [2911] = {.lex_state = 0}, + [2912] = {.lex_state = 0}, + [2913] = {.lex_state = 0}, + [2914] = {.lex_state = 68}, + [2915] = {.lex_state = 0}, + [2916] = {.lex_state = 16}, + [2917] = {.lex_state = 16}, + [2918] = {.lex_state = 16}, + [2919] = {.lex_state = 0}, + [2920] = {.lex_state = 0}, + [2921] = {.lex_state = 68}, + [2922] = {.lex_state = 68}, + [2923] = {.lex_state = 16}, + [2924] = {.lex_state = 17}, + [2925] = {.lex_state = 0}, + [2926] = {.lex_state = 13}, + [2927] = {.lex_state = 13}, + [2928] = {.lex_state = 13}, + [2929] = {.lex_state = 0}, + [2930] = {.lex_state = 68}, + [2931] = {.lex_state = 3}, + [2932] = {.lex_state = 0}, + [2933] = {.lex_state = 0}, + [2934] = {.lex_state = 0}, + [2935] = {.lex_state = 0}, + [2936] = {.lex_state = 17}, + [2937] = {.lex_state = 3}, + [2938] = {.lex_state = 16}, + [2939] = {.lex_state = 0}, + [2940] = {.lex_state = 0}, + [2941] = {.lex_state = 0}, + [2942] = {.lex_state = 0}, + [2943] = {.lex_state = 13}, + [2944] = {.lex_state = 68}, + [2945] = {.lex_state = 0}, + [2946] = {.lex_state = 0}, + [2947] = {.lex_state = 68}, + [2948] = {.lex_state = 0}, + [2949] = {.lex_state = 3}, + [2950] = {.lex_state = 68}, + [2951] = {.lex_state = 68}, + [2952] = {.lex_state = 0}, + [2953] = {.lex_state = 3}, + [2954] = {.lex_state = 0}, + [2955] = {.lex_state = 68}, + [2956] = {.lex_state = 13}, + [2957] = {.lex_state = 0}, + [2958] = {.lex_state = 0}, + [2959] = {.lex_state = 13}, + [2960] = {.lex_state = 13}, + [2961] = {.lex_state = 0}, + [2962] = {.lex_state = 0}, + [2963] = {.lex_state = 0}, + [2964] = {.lex_state = 0}, + [2965] = {.lex_state = 13}, + [2966] = {.lex_state = 0}, + [2967] = {.lex_state = 0}, + [2968] = {.lex_state = 0}, + [2969] = {.lex_state = 0}, + [2970] = {.lex_state = 13}, + [2971] = {.lex_state = 13}, + [2972] = {.lex_state = 13}, + [2973] = {.lex_state = 68}, + [2974] = {.lex_state = 13}, + [2975] = {.lex_state = 0}, + [2976] = {.lex_state = 0}, + [2977] = {.lex_state = 0}, + [2978] = {.lex_state = 13}, + [2979] = {.lex_state = 0}, + [2980] = {.lex_state = 13}, + [2981] = {.lex_state = 13}, + [2982] = {.lex_state = 0}, + [2983] = {.lex_state = 13}, + [2984] = {.lex_state = 0}, + [2985] = {.lex_state = 68}, + [2986] = {.lex_state = 13}, + [2987] = {.lex_state = 0}, + [2988] = {.lex_state = 13}, + [2989] = {.lex_state = 13}, + [2990] = {.lex_state = 13}, + [2991] = {.lex_state = 0}, + [2992] = {.lex_state = 13}, + [2993] = {.lex_state = 0}, + [2994] = {.lex_state = 13}, + [2995] = {.lex_state = 13}, + [2996] = {.lex_state = 13}, + [2997] = {.lex_state = 13}, + [2998] = {.lex_state = 13}, + [2999] = {.lex_state = 13}, + [3000] = {.lex_state = 0}, + [3001] = {.lex_state = 68}, + [3002] = {.lex_state = 68}, + [3003] = {.lex_state = 13}, + [3004] = {.lex_state = 68}, + [3005] = {.lex_state = 13}, + [3006] = {.lex_state = 13}, + [3007] = {.lex_state = 13}, + [3008] = {.lex_state = 0}, + [3009] = {.lex_state = 0}, + [3010] = {.lex_state = 13}, + [3011] = {.lex_state = 68}, + [3012] = {.lex_state = 13}, + [3013] = {.lex_state = 13}, + [3014] = {.lex_state = 0}, + [3015] = {.lex_state = 0}, + [3016] = {.lex_state = 0}, + [3017] = {.lex_state = 0}, + [3018] = {.lex_state = 13}, + [3019] = {.lex_state = 13}, + [3020] = {.lex_state = 13}, + [3021] = {.lex_state = 13}, + [3022] = {.lex_state = 13}, + [3023] = {.lex_state = 13}, + [3024] = {.lex_state = 68}, + [3025] = {.lex_state = 0}, + [3026] = {.lex_state = 13}, + [3027] = {.lex_state = 13}, + [3028] = {.lex_state = 0}, + [3029] = {.lex_state = 13}, + [3030] = {.lex_state = 68}, + [3031] = {.lex_state = 26}, + [3032] = {.lex_state = 13}, + [3033] = {.lex_state = 0}, + [3034] = {.lex_state = 13}, + [3035] = {.lex_state = 0}, + [3036] = {.lex_state = 26}, + [3037] = {.lex_state = 13}, + [3038] = {.lex_state = 0}, + [3039] = {.lex_state = 13}, + [3040] = {.lex_state = 68}, + [3041] = {.lex_state = 0}, + [3042] = {.lex_state = 0}, + [3043] = {.lex_state = 13}, + [3044] = {.lex_state = 68}, + [3045] = {.lex_state = 0}, + [3046] = {.lex_state = 68}, + [3047] = {.lex_state = 0}, + [3048] = {.lex_state = 0}, + [3049] = {.lex_state = 0}, + [3050] = {.lex_state = 0}, + [3051] = {.lex_state = 26}, + [3052] = {.lex_state = 26}, + [3053] = {.lex_state = 68}, + [3054] = {.lex_state = 0}, + [3055] = {.lex_state = 0}, + [3056] = {.lex_state = 13}, + [3057] = {.lex_state = 0}, + [3058] = {.lex_state = 7}, + [3059] = {.lex_state = 13}, + [3060] = {.lex_state = 13}, + [3061] = {.lex_state = 68}, + [3062] = {.lex_state = 0}, + [3063] = {.lex_state = 68}, + [3064] = {.lex_state = 0}, + [3065] = {.lex_state = 68}, + [3066] = {.lex_state = 0}, + [3067] = {.lex_state = 13}, + [3068] = {.lex_state = 26}, + [3069] = {.lex_state = 13}, + [3070] = {.lex_state = 0}, + [3071] = {.lex_state = 0}, + [3072] = {.lex_state = 0}, + [3073] = {.lex_state = 0}, + [3074] = {.lex_state = 13}, + [3075] = {.lex_state = 7}, + [3076] = {.lex_state = 0}, + [3077] = {.lex_state = 0}, + [3078] = {.lex_state = 0}, + [3079] = {.lex_state = 0}, + [3080] = {.lex_state = 68}, + [3081] = {.lex_state = 0}, + [3082] = {.lex_state = 0}, + [3083] = {.lex_state = 0}, + [3084] = {.lex_state = 68}, + [3085] = {.lex_state = 13}, + [3086] = {.lex_state = 13}, + [3087] = {.lex_state = 13}, + [3088] = {.lex_state = 68}, + [3089] = {.lex_state = 0}, + [3090] = {.lex_state = 13}, + [3091] = {.lex_state = 0}, + [3092] = {.lex_state = 0}, + [3093] = {.lex_state = 0}, + [3094] = {.lex_state = 13}, + [3095] = {.lex_state = 13}, + [3096] = {.lex_state = 0}, + [3097] = {.lex_state = 13}, + [3098] = {.lex_state = 13}, + [3099] = {.lex_state = 0}, + [3100] = {.lex_state = 0}, + [3101] = {.lex_state = 68}, + [3102] = {.lex_state = 0}, + [3103] = {.lex_state = 0}, + [3104] = {.lex_state = 0}, + [3105] = {.lex_state = 13}, + [3106] = {.lex_state = 13}, + [3107] = {.lex_state = 0}, + [3108] = {.lex_state = 13}, + [3109] = {.lex_state = 0}, + [3110] = {.lex_state = 13}, + [3111] = {.lex_state = 13}, + [3112] = {.lex_state = 13}, + [3113] = {.lex_state = 0}, + [3114] = {.lex_state = 13}, + [3115] = {.lex_state = 0}, + [3116] = {.lex_state = 0}, + [3117] = {.lex_state = 68}, + [3118] = {.lex_state = 0}, + [3119] = {.lex_state = 0}, + [3120] = {.lex_state = 0}, + [3121] = {.lex_state = 0}, + [3122] = {.lex_state = 0}, + [3123] = {.lex_state = 0}, + [3124] = {.lex_state = 0, .external_lex_state = 5}, + [3125] = {.lex_state = 0}, + [3126] = {.lex_state = 0}, + [3127] = {.lex_state = 13}, + [3128] = {.lex_state = 0}, + [3129] = {.lex_state = 0}, + [3130] = {.lex_state = 0}, + [3131] = {.lex_state = 0}, + [3132] = {.lex_state = 68}, + [3133] = {.lex_state = 0}, + [3134] = {.lex_state = 0}, + [3135] = {.lex_state = 0}, + [3136] = {.lex_state = 0}, + [3137] = {.lex_state = 68}, + [3138] = {.lex_state = 13}, + [3139] = {.lex_state = 13}, + [3140] = {.lex_state = 68}, + [3141] = {.lex_state = 0}, + [3142] = {.lex_state = 0}, + [3143] = {.lex_state = 26}, + [3144] = {.lex_state = 68}, + [3145] = {.lex_state = 13}, + [3146] = {.lex_state = 17}, + [3147] = {.lex_state = 13}, + [3148] = {.lex_state = 13}, + [3149] = {.lex_state = 0}, + [3150] = {.lex_state = 13}, + [3151] = {.lex_state = 13}, + [3152] = {.lex_state = 0}, + [3153] = {.lex_state = 68}, + [3154] = {.lex_state = 0}, + [3155] = {.lex_state = 13}, + [3156] = {.lex_state = 13}, + [3157] = {.lex_state = 0}, + [3158] = {.lex_state = 0}, + [3159] = {.lex_state = 68}, + [3160] = {.lex_state = 68}, + [3161] = {.lex_state = 68}, + [3162] = {.lex_state = 0}, + [3163] = {.lex_state = 13}, + [3164] = {.lex_state = 0}, + [3165] = {.lex_state = 13}, + [3166] = {.lex_state = 13}, + [3167] = {.lex_state = 68}, + [3168] = {.lex_state = 0}, + [3169] = {.lex_state = 13}, + [3170] = {.lex_state = 13}, + [3171] = {.lex_state = 13}, + [3172] = {.lex_state = 13}, + [3173] = {.lex_state = 13}, + [3174] = {.lex_state = 0}, + [3175] = {.lex_state = 13}, + [3176] = {.lex_state = 0}, + [3177] = {.lex_state = 0}, + [3178] = {.lex_state = 13}, + [3179] = {.lex_state = 0, .external_lex_state = 5}, + [3180] = {.lex_state = 0}, + [3181] = {.lex_state = 0}, + [3182] = {.lex_state = 68}, + [3183] = {.lex_state = 13}, + [3184] = {.lex_state = 13}, + [3185] = {.lex_state = 0}, + [3186] = {.lex_state = 68}, + [3187] = {.lex_state = 0}, + [3188] = {.lex_state = 13}, + [3189] = {.lex_state = 13}, + [3190] = {.lex_state = 13}, + [3191] = {.lex_state = 68}, + [3192] = {.lex_state = 0}, + [3193] = {.lex_state = 13}, + [3194] = {.lex_state = 13}, + [3195] = {.lex_state = 13}, + [3196] = {.lex_state = 13}, + [3197] = {.lex_state = 13}, + [3198] = {.lex_state = 68}, + [3199] = {.lex_state = 0}, + [3200] = {.lex_state = 13}, + [3201] = {.lex_state = 0}, + [3202] = {.lex_state = 13}, + [3203] = {.lex_state = 13}, + [3204] = {.lex_state = 0}, + [3205] = {.lex_state = 13}, + [3206] = {.lex_state = 13}, + [3207] = {.lex_state = 6}, + [3208] = {.lex_state = 0}, + [3209] = {.lex_state = 13}, + [3210] = {.lex_state = 13}, + [3211] = {.lex_state = 0}, + [3212] = {.lex_state = 0}, + [3213] = {.lex_state = 13}, + [3214] = {.lex_state = 13}, + [3215] = {.lex_state = 13}, + [3216] = {.lex_state = 68}, + [3217] = {.lex_state = 13}, + [3218] = {.lex_state = 13}, + [3219] = {.lex_state = 0}, + [3220] = {.lex_state = 0}, + [3221] = {.lex_state = 0}, + [3222] = {.lex_state = 0}, + [3223] = {.lex_state = 0}, + [3224] = {.lex_state = 13}, + [3225] = {.lex_state = 0}, + [3226] = {.lex_state = 13}, + [3227] = {.lex_state = 13}, + [3228] = {.lex_state = 13}, + [3229] = {.lex_state = 13}, + [3230] = {.lex_state = 0}, + [3231] = {.lex_state = 13}, + [3232] = {.lex_state = 0}, + [3233] = {.lex_state = 0}, + [3234] = {.lex_state = 0}, + [3235] = {.lex_state = 17}, + [3236] = {.lex_state = 0}, + [3237] = {.lex_state = 13}, + [3238] = {.lex_state = 0}, + [3239] = {.lex_state = 0}, + [3240] = {.lex_state = 0}, + [3241] = {.lex_state = 0}, + [3242] = {.lex_state = 0}, + [3243] = {.lex_state = 17}, + [3244] = {.lex_state = 0}, + [3245] = {.lex_state = 0}, + [3246] = {.lex_state = 13}, + [3247] = {.lex_state = 0}, + [3248] = {.lex_state = 0}, + [3249] = {.lex_state = 13}, + [3250] = {.lex_state = 0}, + [3251] = {.lex_state = 0}, + [3252] = {.lex_state = 0}, + [3253] = {.lex_state = 0}, + [3254] = {.lex_state = 0}, + [3255] = {.lex_state = 0}, + [3256] = {.lex_state = 0}, + [3257] = {.lex_state = 0}, + [3258] = {.lex_state = 0}, + [3259] = {.lex_state = 0}, + [3260] = {.lex_state = 13}, + [3261] = {.lex_state = 0}, + [3262] = {.lex_state = 13}, + [3263] = {.lex_state = 13}, + [3264] = {.lex_state = 13}, + [3265] = {.lex_state = 13}, + [3266] = {.lex_state = 13}, + [3267] = {.lex_state = 0}, + [3268] = {.lex_state = 0}, + [3269] = {.lex_state = 0}, + [3270] = {.lex_state = 0}, + [3271] = {.lex_state = 0}, + [3272] = {.lex_state = 13}, + [3273] = {.lex_state = 0}, + [3274] = {.lex_state = 0}, + [3275] = {.lex_state = 0}, + [3276] = {.lex_state = 13}, + [3277] = {.lex_state = 17}, + [3278] = {.lex_state = 0}, + [3279] = {.lex_state = 0}, + [3280] = {.lex_state = 13}, + [3281] = {.lex_state = 0}, + [3282] = {.lex_state = 0}, + [3283] = {.lex_state = 0}, + [3284] = {.lex_state = 13}, + [3285] = {.lex_state = 0}, + [3286] = {.lex_state = 17}, + [3287] = {.lex_state = 0}, + [3288] = {.lex_state = 0}, + [3289] = {.lex_state = 68}, + [3290] = {.lex_state = 0}, + [3291] = {.lex_state = 0}, + [3292] = {.lex_state = 68}, + [3293] = {.lex_state = 0}, + [3294] = {.lex_state = 13}, + [3295] = {.lex_state = 0}, + [3296] = {.lex_state = 13}, + [3297] = {.lex_state = 13}, + [3298] = {.lex_state = 13}, + [3299] = {.lex_state = 0}, + [3300] = {.lex_state = 13}, + [3301] = {.lex_state = 0}, + [3302] = {.lex_state = 13}, + [3303] = {.lex_state = 0}, + [3304] = {.lex_state = 0}, + [3305] = {.lex_state = 13}, + [3306] = {.lex_state = 0}, + [3307] = {.lex_state = 0}, + [3308] = {.lex_state = 13}, + [3309] = {.lex_state = 0}, + [3310] = {.lex_state = 68}, + [3311] = {.lex_state = 0}, + [3312] = {.lex_state = 0}, + [3313] = {.lex_state = 0}, + [3314] = {.lex_state = 0}, + [3315] = {.lex_state = 13}, + [3316] = {.lex_state = 0}, + [3317] = {.lex_state = 0}, + [3318] = {.lex_state = 0}, + [3319] = {.lex_state = 68}, + [3320] = {.lex_state = 13}, + [3321] = {.lex_state = 0}, + [3322] = {.lex_state = 0}, + [3323] = {.lex_state = 0}, + [3324] = {.lex_state = 68}, + [3325] = {.lex_state = 13}, + [3326] = {.lex_state = 0}, + [3327] = {.lex_state = 0}, + [3328] = {.lex_state = 13}, + [3329] = {.lex_state = 13}, + [3330] = {.lex_state = 0}, + [3331] = {.lex_state = 0}, + [3332] = {.lex_state = 0}, + [3333] = {.lex_state = 0}, + [3334] = {.lex_state = 0}, + [3335] = {.lex_state = 13}, + [3336] = {.lex_state = 0}, + [3337] = {.lex_state = 13}, + [3338] = {.lex_state = 0}, + [3339] = {.lex_state = 0}, + [3340] = {.lex_state = 0}, + [3341] = {.lex_state = 0}, + [3342] = {.lex_state = 0}, + [3343] = {.lex_state = 7, .external_lex_state = 6}, + [3344] = {.lex_state = 0}, + [3345] = {.lex_state = 7, .external_lex_state = 6}, + [3346] = {.lex_state = 7, .external_lex_state = 6}, + [3347] = {.lex_state = 169}, + [3348] = {.lex_state = 13}, + [3349] = {.lex_state = 0}, + [3350] = {.lex_state = 169}, + [3351] = {.lex_state = 0}, + [3352] = {.lex_state = 169}, + [3353] = {.lex_state = 0}, + [3354] = {.lex_state = 0}, + [3355] = {.lex_state = 0}, + [3356] = {.lex_state = 169}, + [3357] = {.lex_state = 0}, + [3358] = {.lex_state = 17}, + [3359] = {.lex_state = 0}, + [3360] = {.lex_state = 0}, + [3361] = {.lex_state = 13}, + [3362] = {.lex_state = 13}, + [3363] = {.lex_state = 0}, + [3364] = {.lex_state = 13}, + [3365] = {.lex_state = 0}, + [3366] = {.lex_state = 0}, + [3367] = {.lex_state = 17}, + [3368] = {.lex_state = 0}, + [3369] = {.lex_state = 13}, + [3370] = {.lex_state = 13}, + [3371] = {.lex_state = 0}, + [3372] = {.lex_state = 0}, + [3373] = {.lex_state = 13}, + [3374] = {.lex_state = 0}, + [3375] = {.lex_state = 0}, + [3376] = {.lex_state = 13}, + [3377] = {.lex_state = 0}, + [3378] = {.lex_state = 0}, + [3379] = {.lex_state = 0}, + [3380] = {.lex_state = 0}, + [3381] = {.lex_state = 17}, + [3382] = {.lex_state = 13}, + [3383] = {.lex_state = 0}, + [3384] = {.lex_state = 0}, + [3385] = {.lex_state = 0}, + [3386] = {.lex_state = 0}, + [3387] = {.lex_state = 0}, + [3388] = {.lex_state = 13}, + [3389] = {.lex_state = 0}, + [3390] = {.lex_state = 0}, + [3391] = {.lex_state = 0}, + [3392] = {.lex_state = 0}, + [3393] = {.lex_state = 0}, + [3394] = {.lex_state = 0}, + [3395] = {.lex_state = 0}, + [3396] = {.lex_state = 13}, + [3397] = {.lex_state = 13}, + [3398] = {.lex_state = 13}, + [3399] = {.lex_state = 13}, + [3400] = {.lex_state = 17}, + [3401] = {.lex_state = 0}, + [3402] = {.lex_state = 13}, + [3403] = {.lex_state = 0}, + [3404] = {.lex_state = 0}, + [3405] = {.lex_state = 0}, + [3406] = {.lex_state = 13}, + [3407] = {.lex_state = 13}, + [3408] = {.lex_state = 0}, + [3409] = {.lex_state = 0}, + [3410] = {.lex_state = 13}, + [3411] = {.lex_state = 0}, + [3412] = {.lex_state = 0}, + [3413] = {.lex_state = 13}, + [3414] = {.lex_state = 0}, + [3415] = {.lex_state = 0}, + [3416] = {.lex_state = 0}, + [3417] = {.lex_state = 0}, + [3418] = {.lex_state = 0}, + [3419] = {.lex_state = 0}, + [3420] = {.lex_state = 0}, + [3421] = {.lex_state = 0}, + [3422] = {.lex_state = 0}, + [3423] = {.lex_state = 0}, + [3424] = {.lex_state = 0}, + [3425] = {.lex_state = 0}, + [3426] = {.lex_state = 0}, + [3427] = {.lex_state = 0}, + [3428] = {.lex_state = 0}, + [3429] = {.lex_state = 0}, + [3430] = {.lex_state = 0}, + [3431] = {.lex_state = 0}, + [3432] = {.lex_state = 0}, + [3433] = {.lex_state = 0}, + [3434] = {.lex_state = 0}, + [3435] = {.lex_state = 0}, + [3436] = {.lex_state = 17}, + [3437] = {.lex_state = 0}, + [3438] = {.lex_state = 0}, + [3439] = {.lex_state = 0}, + [3440] = {.lex_state = 17}, + [3441] = {.lex_state = 17}, + [3442] = {.lex_state = 0}, + [3443] = {.lex_state = 0}, + [3444] = {.lex_state = 0}, + [3445] = {.lex_state = 13}, + [3446] = {.lex_state = 17}, + [3447] = {.lex_state = 0}, + [3448] = {.lex_state = 0}, + [3449] = {.lex_state = 0}, + [3450] = {.lex_state = 0}, + [3451] = {.lex_state = 13}, + [3452] = {.lex_state = 0}, + [3453] = {.lex_state = 0}, + [3454] = {.lex_state = 0}, + [3455] = {.lex_state = 13}, + [3456] = {.lex_state = 17}, + [3457] = {.lex_state = 13}, + [3458] = {.lex_state = 0}, + [3459] = {.lex_state = 0}, + [3460] = {.lex_state = 17}, + [3461] = {.lex_state = 0}, + [3462] = {.lex_state = 0}, + [3463] = {.lex_state = 0}, + [3464] = {.lex_state = 0}, + [3465] = {.lex_state = 0}, + [3466] = {.lex_state = 17}, + [3467] = {.lex_state = 68}, + [3468] = {.lex_state = 13}, + [3469] = {.lex_state = 0}, + [3470] = {.lex_state = 17}, + [3471] = {.lex_state = 17}, + [3472] = {.lex_state = 13}, + [3473] = {.lex_state = 68}, + [3474] = {.lex_state = 13}, + [3475] = {.lex_state = 0}, + [3476] = {.lex_state = 0}, + [3477] = {.lex_state = 13}, + [3478] = {.lex_state = 17}, + [3479] = {.lex_state = 17}, + [3480] = {.lex_state = 0}, + [3481] = {.lex_state = 17}, + [3482] = {.lex_state = 0}, + [3483] = {.lex_state = 0}, + [3484] = {.lex_state = 17}, + [3485] = {.lex_state = 17}, + [3486] = {.lex_state = 0}, + [3487] = {.lex_state = 0}, + [3488] = {.lex_state = 17}, + [3489] = {.lex_state = 17}, + [3490] = {.lex_state = 17}, + [3491] = {.lex_state = 13}, + [3492] = {.lex_state = 13}, + [3493] = {.lex_state = 0}, + [3494] = {.lex_state = 17}, + [3495] = {.lex_state = 13}, + [3496] = {.lex_state = 0}, + [3497] = {.lex_state = 0}, + [3498] = {.lex_state = 13}, + [3499] = {.lex_state = 13}, + [3500] = {.lex_state = 0}, + [3501] = {.lex_state = 13}, + [3502] = {.lex_state = 13}, + [3503] = {.lex_state = 0}, + [3504] = {.lex_state = 13}, + [3505] = {.lex_state = 0}, + [3506] = {(TSStateId)(-1)}, + [3507] = {(TSStateId)(-1)}, + [3508] = {(TSStateId)(-1)}, + [3509] = {(TSStateId)(-1)}, + [3510] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { + [sym_line_comment] = STATE(0), + [sym_block_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -17662,7 +17943,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym__inner_line_doc_comment] = ACTIONS(1), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_shebang] = ACTIONS(1), [sym_self] = ACTIONS(1), [sym_super] = ACTIONS(1), @@ -17671,19503 +17954,19707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_content] = ACTIONS(1), [sym_raw_string_literal] = ACTIONS(1), [sym_float_literal] = ACTIONS(1), - [sym_block_comment] = ACTIONS(3), + [sym__outer_block_doc_comment] = ACTIONS(1), + [sym__inner_block_doc_comment] = ACTIONS(1), + [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3331), - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_source_file] = STATE(3447), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_shebang] = ACTIONS(99), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(1), + [sym_block_comment] = STATE(1), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_shebang] = ACTIONS(101), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [2] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(2), + [sym_block_comment] = STATE(2), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [3] = { - [sym__statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_macro_definition] = STATE(21), - [sym_attribute_item] = STATE(21), - [sym_inner_attribute_item] = STATE(21), - [sym_mod_item] = STATE(21), - [sym_foreign_mod_item] = STATE(21), - [sym_struct_item] = STATE(21), - [sym_union_item] = STATE(21), - [sym_enum_item] = STATE(21), - [sym_extern_crate_declaration] = STATE(21), - [sym_const_item] = STATE(21), - [sym_static_item] = STATE(21), - [sym_type_item] = STATE(21), - [sym_function_item] = STATE(21), - [sym_function_signature_item] = STATE(21), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(21), - [sym_trait_item] = STATE(21), - [sym_associated_type] = STATE(21), - [sym_let_declaration] = STATE(21), - [sym_use_declaration] = STATE(21), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(3), + [sym_block_comment] = STATE(3), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [4] = { - [sym__statement] = STATE(33), - [sym_empty_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_macro_definition] = STATE(33), - [sym_attribute_item] = STATE(33), - [sym_inner_attribute_item] = STATE(33), - [sym_mod_item] = STATE(33), - [sym_foreign_mod_item] = STATE(33), - [sym_struct_item] = STATE(33), - [sym_union_item] = STATE(33), - [sym_enum_item] = STATE(33), - [sym_extern_crate_declaration] = STATE(33), - [sym_const_item] = STATE(33), - [sym_static_item] = STATE(33), - [sym_type_item] = STATE(33), - [sym_function_item] = STATE(33), - [sym_function_signature_item] = STATE(33), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(33), - [sym_trait_item] = STATE(33), - [sym_associated_type] = STATE(33), - [sym_let_declaration] = STATE(33), - [sym_use_declaration] = STATE(33), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(4), + [sym_block_comment] = STATE(4), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [5] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(5), + [sym_block_comment] = STATE(5), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [6] = { - [sym__statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_macro_definition] = STATE(17), - [sym_attribute_item] = STATE(17), - [sym_inner_attribute_item] = STATE(17), - [sym_mod_item] = STATE(17), - [sym_foreign_mod_item] = STATE(17), - [sym_struct_item] = STATE(17), - [sym_union_item] = STATE(17), - [sym_enum_item] = STATE(17), - [sym_extern_crate_declaration] = STATE(17), - [sym_const_item] = STATE(17), - [sym_static_item] = STATE(17), - [sym_type_item] = STATE(17), - [sym_function_item] = STATE(17), - [sym_function_signature_item] = STATE(17), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(17), - [sym_trait_item] = STATE(17), - [sym_associated_type] = STATE(17), - [sym_let_declaration] = STATE(17), - [sym_use_declaration] = STATE(17), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(6), + [sym_block_comment] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [7] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(7), + [sym_block_comment] = STATE(7), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [8] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [9] = { - [sym__statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_macro_definition] = STATE(22), - [sym_attribute_item] = STATE(22), - [sym_inner_attribute_item] = STATE(22), - [sym_mod_item] = STATE(22), - [sym_foreign_mod_item] = STATE(22), - [sym_struct_item] = STATE(22), - [sym_union_item] = STATE(22), - [sym_enum_item] = STATE(22), - [sym_extern_crate_declaration] = STATE(22), - [sym_const_item] = STATE(22), - [sym_static_item] = STATE(22), - [sym_type_item] = STATE(22), - [sym_function_item] = STATE(22), - [sym_function_signature_item] = STATE(22), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(22), - [sym_trait_item] = STATE(22), - [sym_associated_type] = STATE(22), - [sym_let_declaration] = STATE(22), - [sym_use_declaration] = STATE(22), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(9), + [sym_block_comment] = STATE(9), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [10] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [11] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(11), + [sym_block_comment] = STATE(11), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [12] = { - [sym__statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_macro_definition] = STATE(22), - [sym_attribute_item] = STATE(22), - [sym_inner_attribute_item] = STATE(22), - [sym_mod_item] = STATE(22), - [sym_foreign_mod_item] = STATE(22), - [sym_struct_item] = STATE(22), - [sym_union_item] = STATE(22), - [sym_enum_item] = STATE(22), - [sym_extern_crate_declaration] = STATE(22), - [sym_const_item] = STATE(22), - [sym_static_item] = STATE(22), - [sym_type_item] = STATE(22), - [sym_function_item] = STATE(22), - [sym_function_signature_item] = STATE(22), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(22), - [sym_trait_item] = STATE(22), - [sym_associated_type] = STATE(22), - [sym_let_declaration] = STATE(22), - [sym_use_declaration] = STATE(22), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(12), + [sym_block_comment] = STATE(12), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(133), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [13] = { - [sym__statement] = STATE(28), - [sym_empty_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_macro_definition] = STATE(28), - [sym_attribute_item] = STATE(28), - [sym_inner_attribute_item] = STATE(28), - [sym_mod_item] = STATE(28), - [sym_foreign_mod_item] = STATE(28), - [sym_struct_item] = STATE(28), - [sym_union_item] = STATE(28), - [sym_enum_item] = STATE(28), - [sym_extern_crate_declaration] = STATE(28), - [sym_const_item] = STATE(28), - [sym_static_item] = STATE(28), - [sym_type_item] = STATE(28), - [sym_function_item] = STATE(28), - [sym_function_signature_item] = STATE(28), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(28), - [sym_trait_item] = STATE(28), - [sym_associated_type] = STATE(28), - [sym_let_declaration] = STATE(28), - [sym_use_declaration] = STATE(28), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(318), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_macro_rules_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(144), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(150), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_u8] = ACTIONS(158), + [anon_sym_i8] = ACTIONS(158), + [anon_sym_u16] = ACTIONS(158), + [anon_sym_i16] = ACTIONS(158), + [anon_sym_u32] = ACTIONS(158), + [anon_sym_i32] = ACTIONS(158), + [anon_sym_u64] = ACTIONS(158), + [anon_sym_i64] = ACTIONS(158), + [anon_sym_u128] = ACTIONS(158), + [anon_sym_i128] = ACTIONS(158), + [anon_sym_isize] = ACTIONS(158), + [anon_sym_usize] = ACTIONS(158), + [anon_sym_f32] = ACTIONS(158), + [anon_sym_f64] = ACTIONS(158), + [anon_sym_bool] = ACTIONS(158), + [anon_sym_str] = ACTIONS(158), + [anon_sym_char] = ACTIONS(158), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_COLON_COLON] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_POUND] = ACTIONS(167), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(173), + [anon_sym_SQUOTE] = ACTIONS(176), + [anon_sym_async] = ACTIONS(179), + [anon_sym_break] = ACTIONS(182), + [anon_sym_const] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(188), + [anon_sym_default] = ACTIONS(191), + [anon_sym_enum] = ACTIONS(194), + [anon_sym_fn] = ACTIONS(197), + [anon_sym_for] = 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_DOT_DOT] = ACTIONS(254), + [anon_sym_yield] = ACTIONS(257), + [anon_sym_move] = ACTIONS(260), + [anon_sym_try] = ACTIONS(263), + [sym_integer_literal] = ACTIONS(266), + [aux_sym_string_literal_token1] = ACTIONS(269), + [sym_char_literal] = ACTIONS(266), + [anon_sym_true] = ACTIONS(272), + [anon_sym_false] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(275), + [sym_super] = ACTIONS(278), + [sym_crate] = ACTIONS(281), + [sym_metavariable] = ACTIONS(284), + [sym_raw_string_literal] = ACTIONS(266), + [sym_float_literal] = ACTIONS(266), }, [14] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [15] = { - [sym__statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_macro_definition] = STATE(18), - [sym_attribute_item] = STATE(18), - [sym_inner_attribute_item] = STATE(18), - [sym_mod_item] = STATE(18), - [sym_foreign_mod_item] = STATE(18), - [sym_struct_item] = STATE(18), - [sym_union_item] = STATE(18), - [sym_enum_item] = STATE(18), - [sym_extern_crate_declaration] = STATE(18), - [sym_const_item] = STATE(18), - [sym_static_item] = STATE(18), - [sym_type_item] = STATE(18), - [sym_function_item] = STATE(18), - [sym_function_signature_item] = STATE(18), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(18), - [sym_trait_item] = STATE(18), - [sym_associated_type] = STATE(18), - [sym_let_declaration] = STATE(18), - [sym_use_declaration] = STATE(18), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(15), + [sym_block_comment] = STATE(15), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [16] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(318), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(142), - [anon_sym_macro_rules_BANG] = ACTIONS(145), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_RBRACE] = ACTIONS(154), - [anon_sym_LBRACK] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(159), - [anon_sym_u8] = ACTIONS(162), - [anon_sym_i8] = ACTIONS(162), - [anon_sym_u16] = ACTIONS(162), - [anon_sym_i16] = ACTIONS(162), - [anon_sym_u32] = ACTIONS(162), - [anon_sym_i32] = ACTIONS(162), - [anon_sym_u64] = ACTIONS(162), - [anon_sym_i64] = ACTIONS(162), - [anon_sym_u128] = ACTIONS(162), - [anon_sym_i128] = ACTIONS(162), - [anon_sym_isize] = ACTIONS(162), - [anon_sym_usize] = ACTIONS(162), - [anon_sym_f32] = ACTIONS(162), - [anon_sym_f64] = ACTIONS(162), - [anon_sym_bool] = ACTIONS(162), - [anon_sym_str] = ACTIONS(162), - [anon_sym_char] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(168), - [anon_sym_POUND] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(174), - [anon_sym_PIPE] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(180), - [anon_sym_async] = ACTIONS(183), - [anon_sym_break] = ACTIONS(186), - [anon_sym_const] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(192), - [anon_sym_default] = ACTIONS(195), - [anon_sym_enum] = ACTIONS(198), - [anon_sym_fn] = ACTIONS(201), - [anon_sym_for] = ACTIONS(204), - [anon_sym_if] = ACTIONS(207), - [anon_sym_impl] = ACTIONS(210), - [anon_sym_let] = ACTIONS(213), - [anon_sym_loop] = ACTIONS(216), - [anon_sym_match] = ACTIONS(219), - [anon_sym_mod] = ACTIONS(222), - [anon_sym_pub] = ACTIONS(225), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(231), - [anon_sym_struct] = ACTIONS(234), - [anon_sym_trait] = ACTIONS(237), - [anon_sym_type] = ACTIONS(240), - [anon_sym_union] = ACTIONS(243), - [anon_sym_unsafe] = ACTIONS(246), - [anon_sym_use] = ACTIONS(249), - [anon_sym_while] = ACTIONS(252), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_move] = ACTIONS(264), - [anon_sym_try] = ACTIONS(267), - [sym_integer_literal] = ACTIONS(270), - [aux_sym_string_literal_token1] = ACTIONS(273), - [sym_char_literal] = ACTIONS(270), - [anon_sym_true] = ACTIONS(276), - [anon_sym_false] = ACTIONS(276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(279), - [sym_super] = ACTIONS(282), - [sym_crate] = ACTIONS(285), - [sym_metavariable] = ACTIONS(288), - [sym_raw_string_literal] = ACTIONS(270), - [sym_float_literal] = ACTIONS(270), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(16), + [sym_block_comment] = STATE(16), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [17] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(291), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(17), + [sym_block_comment] = STATE(17), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [18] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(18), + [sym_block_comment] = STATE(18), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [19] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(295), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(19), + [sym_block_comment] = STATE(19), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [20] = { - [sym__statement] = STATE(27), - [sym_empty_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_macro_definition] = STATE(27), - [sym_attribute_item] = STATE(27), - [sym_inner_attribute_item] = STATE(27), - [sym_mod_item] = STATE(27), - [sym_foreign_mod_item] = STATE(27), - [sym_struct_item] = STATE(27), - [sym_union_item] = STATE(27), - [sym_enum_item] = STATE(27), - [sym_extern_crate_declaration] = STATE(27), - [sym_const_item] = STATE(27), - [sym_static_item] = STATE(27), - [sym_type_item] = STATE(27), - [sym_function_item] = STATE(27), - [sym_function_signature_item] = STATE(27), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(27), - [sym_trait_item] = STATE(27), - [sym_associated_type] = STATE(27), - [sym_let_declaration] = STATE(27), - [sym_use_declaration] = STATE(27), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(20), + [sym_block_comment] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [21] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1791), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(299), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(21), + [sym_block_comment] = STATE(21), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [22] = { - [sym__statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_macro_definition] = STATE(22), - [sym_attribute_item] = STATE(22), - [sym_inner_attribute_item] = STATE(22), - [sym_mod_item] = STATE(22), - [sym_foreign_mod_item] = STATE(22), - [sym_struct_item] = STATE(22), - [sym_union_item] = STATE(22), - [sym_enum_item] = STATE(22), - [sym_extern_crate_declaration] = STATE(22), - [sym_const_item] = STATE(22), - [sym_static_item] = STATE(22), - [sym_type_item] = STATE(22), - [sym_function_item] = STATE(22), - [sym_function_signature_item] = STATE(22), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(22), - [sym_trait_item] = STATE(22), - [sym_associated_type] = STATE(22), - [sym_let_declaration] = STATE(22), - [sym_use_declaration] = STATE(22), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [ts_builtin_sym_end] = ACTIONS(154), - [sym_identifier] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(142), - [anon_sym_macro_rules_BANG] = ACTIONS(145), - [anon_sym_LPAREN] = ACTIONS(148), - [anon_sym_LBRACE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(159), - [anon_sym_u8] = ACTIONS(162), - [anon_sym_i8] = ACTIONS(162), - [anon_sym_u16] = ACTIONS(162), - [anon_sym_i16] = ACTIONS(162), - [anon_sym_u32] = ACTIONS(162), - [anon_sym_i32] = ACTIONS(162), - [anon_sym_u64] = ACTIONS(162), - [anon_sym_i64] = ACTIONS(162), - [anon_sym_u128] = ACTIONS(162), - [anon_sym_i128] = ACTIONS(162), - [anon_sym_isize] = ACTIONS(162), - [anon_sym_usize] = ACTIONS(162), - [anon_sym_f32] = ACTIONS(162), - [anon_sym_f64] = ACTIONS(162), - [anon_sym_bool] = ACTIONS(162), - [anon_sym_str] = ACTIONS(162), - [anon_sym_char] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(168), - [anon_sym_POUND] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(174), - [anon_sym_PIPE] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(180), - [anon_sym_async] = ACTIONS(183), - [anon_sym_break] = ACTIONS(186), - [anon_sym_const] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(192), - [anon_sym_default] = ACTIONS(195), - [anon_sym_enum] = ACTIONS(198), - [anon_sym_fn] = ACTIONS(201), - [anon_sym_for] = ACTIONS(204), - [anon_sym_if] = ACTIONS(207), - [anon_sym_impl] = ACTIONS(210), - [anon_sym_let] = ACTIONS(213), - [anon_sym_loop] = ACTIONS(216), - [anon_sym_match] = ACTIONS(219), - [anon_sym_mod] = ACTIONS(222), - [anon_sym_pub] = ACTIONS(225), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(231), - [anon_sym_struct] = ACTIONS(234), - [anon_sym_trait] = ACTIONS(237), - [anon_sym_type] = ACTIONS(240), - [anon_sym_union] = ACTIONS(243), - [anon_sym_unsafe] = ACTIONS(246), - [anon_sym_use] = ACTIONS(249), - [anon_sym_while] = ACTIONS(252), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_move] = ACTIONS(264), - [anon_sym_try] = ACTIONS(267), - [sym_integer_literal] = ACTIONS(270), - [aux_sym_string_literal_token1] = ACTIONS(273), - [sym_char_literal] = ACTIONS(270), - [anon_sym_true] = ACTIONS(276), - [anon_sym_false] = ACTIONS(276), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(279), - [sym_super] = ACTIONS(282), - [sym_crate] = ACTIONS(285), - [sym_metavariable] = ACTIONS(288), - [sym_raw_string_literal] = ACTIONS(270), - [sym_float_literal] = ACTIONS(270), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(22), + [sym_block_comment] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [23] = { - [sym__statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_macro_definition] = STATE(24), - [sym_attribute_item] = STATE(24), - [sym_inner_attribute_item] = STATE(24), - [sym_mod_item] = STATE(24), - [sym_foreign_mod_item] = STATE(24), - [sym_struct_item] = STATE(24), - [sym_union_item] = STATE(24), - [sym_enum_item] = STATE(24), - [sym_extern_crate_declaration] = STATE(24), - [sym_const_item] = STATE(24), - [sym_static_item] = STATE(24), - [sym_type_item] = STATE(24), - [sym_function_item] = STATE(24), - [sym_function_signature_item] = STATE(24), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(24), - [sym_trait_item] = STATE(24), - [sym_associated_type] = STATE(24), - [sym_let_declaration] = STATE(24), - [sym_use_declaration] = STATE(24), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(23), + [sym_block_comment] = STATE(23), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [24] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(24), + [sym_block_comment] = STATE(24), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [ts_builtin_sym_end] = ACTIONS(307), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [25] = { - [sym__statement] = STATE(29), - [sym_empty_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_macro_definition] = STATE(29), - [sym_attribute_item] = STATE(29), - [sym_inner_attribute_item] = STATE(29), - [sym_mod_item] = STATE(29), - [sym_foreign_mod_item] = STATE(29), - [sym_struct_item] = STATE(29), - [sym_union_item] = STATE(29), - [sym_enum_item] = STATE(29), - [sym_extern_crate_declaration] = STATE(29), - [sym_const_item] = STATE(29), - [sym_static_item] = STATE(29), - [sym_type_item] = STATE(29), - [sym_function_item] = STATE(29), - [sym_function_signature_item] = STATE(29), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(29), - [sym_trait_item] = STATE(29), - [sym_associated_type] = STATE(29), - [sym_let_declaration] = STATE(29), - [sym_use_declaration] = STATE(29), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(25), + [sym_block_comment] = STATE(25), [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [26] = { - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(307), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [27] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [28] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(28), + [sym_block_comment] = STATE(28), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [29] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [ts_builtin_sym_end] = ACTIONS(150), + [sym_identifier] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_macro_rules_BANG] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(144), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_u8] = ACTIONS(158), + [anon_sym_i8] = ACTIONS(158), + [anon_sym_u16] = ACTIONS(158), + [anon_sym_i16] = ACTIONS(158), + [anon_sym_u32] = ACTIONS(158), + [anon_sym_i32] = ACTIONS(158), + [anon_sym_u64] = ACTIONS(158), + [anon_sym_i64] = ACTIONS(158), + [anon_sym_u128] = ACTIONS(158), + [anon_sym_i128] = ACTIONS(158), + [anon_sym_isize] = ACTIONS(158), + [anon_sym_usize] = ACTIONS(158), + [anon_sym_f32] = ACTIONS(158), + [anon_sym_f64] = ACTIONS(158), + [anon_sym_bool] = ACTIONS(158), + [anon_sym_str] = ACTIONS(158), + [anon_sym_char] = ACTIONS(158), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_COLON_COLON] = ACTIONS(161), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_POUND] = ACTIONS(167), + [anon_sym_LT] = ACTIONS(170), + [anon_sym_PIPE] = ACTIONS(173), + [anon_sym_SQUOTE] = ACTIONS(176), + [anon_sym_async] = ACTIONS(179), + [anon_sym_break] = ACTIONS(182), + [anon_sym_const] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(188), + [anon_sym_default] = ACTIONS(191), + [anon_sym_enum] = ACTIONS(194), + [anon_sym_fn] = ACTIONS(197), + [anon_sym_for] = 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_DOT_DOT] = ACTIONS(254), + [anon_sym_yield] = ACTIONS(257), + [anon_sym_move] = ACTIONS(260), + [anon_sym_try] = ACTIONS(263), + [sym_integer_literal] = ACTIONS(266), + [aux_sym_string_literal_token1] = ACTIONS(269), + [sym_char_literal] = ACTIONS(266), + [anon_sym_true] = ACTIONS(272), + [anon_sym_false] = ACTIONS(272), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(275), + [sym_super] = ACTIONS(278), + [sym_crate] = ACTIONS(281), + [sym_metavariable] = ACTIONS(284), + [sym_raw_string_literal] = ACTIONS(266), + [sym_float_literal] = ACTIONS(266), }, [30] = { - [sym__statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_macro_definition] = STATE(19), - [sym_attribute_item] = STATE(19), - [sym_inner_attribute_item] = STATE(19), - [sym_mod_item] = STATE(19), - [sym_foreign_mod_item] = STATE(19), - [sym_struct_item] = STATE(19), - [sym_union_item] = STATE(19), - [sym_enum_item] = STATE(19), - [sym_extern_crate_declaration] = STATE(19), - [sym_const_item] = STATE(19), - [sym_static_item] = STATE(19), - [sym_type_item] = STATE(19), - [sym_function_item] = STATE(19), - [sym_function_signature_item] = STATE(19), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(19), - [sym_trait_item] = STATE(19), - [sym_associated_type] = STATE(19), - [sym_let_declaration] = STATE(19), - [sym_use_declaration] = STATE(19), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [ts_builtin_sym_end] = ACTIONS(307), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [31] = { - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [32] = { - [sym__statement] = STATE(34), - [sym_empty_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_macro_definition] = STATE(34), - [sym_attribute_item] = STATE(34), - [sym_inner_attribute_item] = STATE(34), - [sym_mod_item] = STATE(34), - [sym_foreign_mod_item] = STATE(34), - [sym_struct_item] = STATE(34), - [sym_union_item] = STATE(34), - [sym_enum_item] = STATE(34), - [sym_extern_crate_declaration] = STATE(34), - [sym_const_item] = STATE(34), - [sym_static_item] = STATE(34), - [sym_type_item] = STATE(34), - [sym_function_item] = STATE(34), - [sym_function_signature_item] = STATE(34), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(34), - [sym_trait_item] = STATE(34), - [sym_associated_type] = STATE(34), - [sym_let_declaration] = STATE(34), - [sym_use_declaration] = STATE(34), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(32), + [sym_block_comment] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [33] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(33), + [sym_block_comment] = STATE(33), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [34] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(3328), - [sym_impl_item] = STATE(16), - [sym_trait_item] = STATE(16), - [sym_associated_type] = STATE(16), - [sym_let_declaration] = STATE(16), - [sym_use_declaration] = STATE(16), - [sym_extern_modifier] = STATE(2092), - [sym_visibility_modifier] = STATE(1905), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(165), - [sym_scoped_identifier] = STATE(1494), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(257), - [sym_match_expression] = STATE(257), - [sym_while_expression] = STATE(257), - [sym_loop_expression] = STATE(257), - [sym_for_expression] = STATE(257), - [sym_const_block] = STATE(257), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3319), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym__statement] = STATE(772), + [sym_empty_statement] = STATE(771), + [sym_expression_statement] = STATE(771), + [sym_macro_definition] = STATE(771), + [sym_attribute_item] = STATE(771), + [sym_inner_attribute_item] = STATE(771), + [sym_mod_item] = STATE(771), + [sym_foreign_mod_item] = STATE(771), + [sym_struct_item] = STATE(771), + [sym_union_item] = STATE(771), + [sym_enum_item] = STATE(771), + [sym_extern_crate_declaration] = STATE(771), + [sym_const_item] = STATE(771), + [sym_static_item] = STATE(771), + [sym_type_item] = STATE(771), + [sym_function_item] = STATE(771), + [sym_function_signature_item] = STATE(771), + [sym_function_modifiers] = STATE(3370), + [sym_impl_item] = STATE(771), + [sym_trait_item] = STATE(771), + [sym_associated_type] = STATE(771), + [sym_let_declaration] = STATE(771), + [sym_use_declaration] = STATE(771), + [sym_extern_modifier] = STATE(2114), + [sym_visibility_modifier] = STATE(1927), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(312), + [sym_scoped_identifier] = STATE(1509), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(299), + [sym_match_expression] = STATE(299), + [sym_while_expression] = STATE(299), + [sym_loop_expression] = STATE(299), + [sym_for_expression] = STATE(299), + [sym_const_block] = STATE(299), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3358), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(257), - [sym_async_block] = STATE(257), - [sym_try_block] = STATE(257), - [sym_block] = STATE(257), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(7), - [anon_sym_SEMI] = ACTIONS(9), - [anon_sym_macro_rules_BANG] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(35), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(43), - [anon_sym_enum] = ACTIONS(45), - [anon_sym_fn] = ACTIONS(47), - [anon_sym_for] = ACTIONS(49), - [anon_sym_if] = ACTIONS(51), - [anon_sym_impl] = ACTIONS(53), - [anon_sym_let] = ACTIONS(55), - [anon_sym_loop] = ACTIONS(57), - [anon_sym_match] = ACTIONS(59), - [anon_sym_mod] = ACTIONS(61), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_trait] = ACTIONS(71), - [anon_sym_type] = ACTIONS(73), - [anon_sym_union] = ACTIONS(75), - [anon_sym_unsafe] = ACTIONS(77), - [anon_sym_use] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_extern] = ACTIONS(83), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(91), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(105), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(299), + [sym_async_block] = STATE(299), + [sym_try_block] = STATE(299), + [sym_block] = STATE(299), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(34), + [sym_block_comment] = STATE(34), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(107), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [35] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1459), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1470), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_RBRACK] = ACTIONS(325), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(331), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_COMMA] = ACTIONS(325), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PERCENT] = ACTIONS(331), - [anon_sym_CARET] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(331), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(325), - [anon_sym_PIPE_PIPE] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(325), - [anon_sym_BANG_EQ] = ACTIONS(325), - [anon_sym_LT_EQ] = ACTIONS(325), - [anon_sym_GT_EQ] = ACTIONS(325), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(35), + [sym_block_comment] = STATE(35), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_RBRACK] = ACTIONS(327), + [anon_sym_COLON] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(327), + [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_SLASH] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(327), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_PERCENT] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(333), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [36] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1449), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(357), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_QMARK] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_COMMA] = ACTIONS(357), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(359), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(36), + [sym_block_comment] = STATE(36), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_RBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [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_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(361), [anon_sym_AMP] = ACTIONS(361), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(359), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(357), - [anon_sym_PIPE_PIPE] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(357), - [anon_sym_BANG_EQ] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_PLUS_EQ] = ACTIONS(357), - [anon_sym_DASH_EQ] = ACTIONS(357), - [anon_sym_STAR_EQ] = ACTIONS(357), - [anon_sym_SLASH_EQ] = ACTIONS(357), - [anon_sym_PERCENT_EQ] = ACTIONS(357), - [anon_sym_AMP_EQ] = ACTIONS(357), - [anon_sym_PIPE_EQ] = ACTIONS(357), - [anon_sym_CARET_EQ] = ACTIONS(357), - [anon_sym_LT_LT_EQ] = ACTIONS(357), - [anon_sym_GT_GT_EQ] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [37] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1454), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1476), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_RBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(37), + [sym_block_comment] = STATE(37), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(363), + [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_SLASH] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(365), [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(365), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [38] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1448), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_RBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(38), + [sym_block_comment] = STATE(38), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [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_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [39] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1454), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_RBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(39), + [sym_block_comment] = STATE(39), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_RBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [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_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COMMA] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [40] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1448), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1472), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_RBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(373), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(40), + [sym_block_comment] = STATE(40), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [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_SLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(383), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [41] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1442), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_RPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_RBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_COMMA] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(381), - [anon_sym_as] = ACTIONS(379), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(41), + [sym_block_comment] = STATE(41), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_RBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [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_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [42] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1441), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1480), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(333), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(333), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(361), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_else] = ACTIONS(385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(42), + [sym_block_comment] = STATE(42), + [sym_identifier] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(335), + [anon_sym_QMARK] = ACTIONS(385), + [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_SLASH] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_else] = ACTIONS(387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [43] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1709), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(325), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(331), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PERCENT] = ACTIONS(331), - [anon_sym_CARET] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(331), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(331), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(325), - [anon_sym_PIPE_PIPE] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(325), - [anon_sym_BANG_EQ] = ACTIONS(325), - [anon_sym_LT_EQ] = ACTIONS(325), - [anon_sym_GT_EQ] = ACTIONS(325), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1689), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(43), + [sym_block_comment] = STATE(43), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(333), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_PERCENT] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(333), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(333), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [44] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(325), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_COLON] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(331), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PERCENT] = ACTIONS(331), - [anon_sym_CARET] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(331), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(325), - [anon_sym_PIPE_PIPE] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(325), - [anon_sym_BANG_EQ] = ACTIONS(325), - [anon_sym_LT_EQ] = ACTIONS(325), - [anon_sym_GT_EQ] = ACTIONS(325), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(44), + [sym_block_comment] = STATE(44), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(333), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_PERCENT] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(333), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [45] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1791), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(325), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(331), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PERCENT] = ACTIONS(331), - [anon_sym_CARET] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(331), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(325), - [anon_sym_PIPE_PIPE] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(325), - [anon_sym_BANG_EQ] = ACTIONS(325), - [anon_sym_LT_EQ] = ACTIONS(325), - [anon_sym_GT_EQ] = ACTIONS(325), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(45), + [sym_block_comment] = STATE(45), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [46] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1771), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(357), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(485), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(359), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(357), - [anon_sym_PIPE_PIPE] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(357), - [anon_sym_BANG_EQ] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_PLUS_EQ] = ACTIONS(357), - [anon_sym_DASH_EQ] = ACTIONS(357), - [anon_sym_STAR_EQ] = ACTIONS(357), - [anon_sym_SLASH_EQ] = ACTIONS(357), - [anon_sym_PERCENT_EQ] = ACTIONS(357), - [anon_sym_AMP_EQ] = ACTIONS(357), - [anon_sym_PIPE_EQ] = ACTIONS(357), - [anon_sym_CARET_EQ] = ACTIONS(357), - [anon_sym_LT_LT_EQ] = ACTIONS(357), - [anon_sym_GT_GT_EQ] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(46), + [sym_block_comment] = STATE(46), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [47] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1633), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(357), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(359), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(357), - [anon_sym_PIPE_PIPE] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(357), - [anon_sym_BANG_EQ] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_PLUS_EQ] = ACTIONS(357), - [anon_sym_DASH_EQ] = ACTIONS(357), - [anon_sym_STAR_EQ] = ACTIONS(357), - [anon_sym_SLASH_EQ] = ACTIONS(357), - [anon_sym_PERCENT_EQ] = ACTIONS(357), - [anon_sym_AMP_EQ] = ACTIONS(357), - [anon_sym_PIPE_EQ] = ACTIONS(357), - [anon_sym_CARET_EQ] = ACTIONS(357), - [anon_sym_LT_LT_EQ] = ACTIONS(357), - [anon_sym_GT_GT_EQ] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_COLON] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(333), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_PERCENT] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(333), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [48] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(371), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [49] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [50] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_as] = ACTIONS(379), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(485), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(381), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [51] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(385), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(365), [anon_sym_AMP] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(365), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), [anon_sym_DOT_DOT] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [52] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1622), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(493), - [anon_sym_as] = ACTIONS(379), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(379), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(377), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [53] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(365), [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(371), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(365), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT] = ACTIONS(495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [54] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [55] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1721), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(485), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_COLON] = ACTIONS(331), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(327), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(333), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_PERCENT] = ACTIONS(333), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(333), + [anon_sym_as] = ACTIONS(333), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [56] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(325), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_PLUS] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(331), - [anon_sym_QMARK] = ACTIONS(325), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(331), - [anon_sym_DASH] = ACTIONS(331), - [anon_sym_EQ] = ACTIONS(331), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(331), - [anon_sym_AMP] = ACTIONS(331), - [anon_sym_PERCENT] = ACTIONS(331), - [anon_sym_CARET] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SQUOTE] = ACTIONS(331), - [anon_sym_as] = ACTIONS(331), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(331), - [anon_sym_DOT_DOT_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP] = ACTIONS(325), - [anon_sym_PIPE_PIPE] = ACTIONS(325), - [anon_sym_EQ_EQ] = ACTIONS(325), - [anon_sym_BANG_EQ] = ACTIONS(325), - [anon_sym_LT_EQ] = ACTIONS(325), - [anon_sym_GT_EQ] = ACTIONS(325), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(493), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [57] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(375), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(44), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(485), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [58] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(377), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [59] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [60] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_EQ_GT] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(375), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [61] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1611), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(361), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [62] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(375), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [63] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(45), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(381), - [anon_sym_as] = ACTIONS(379), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(365), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [64] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [65] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [66] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(47), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_QMARK] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(359), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(511), - [anon_sym_DOT_DOT_EQ] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(357), - [anon_sym_PIPE_PIPE] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(357), - [anon_sym_BANG_EQ] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_PLUS_EQ] = ACTIONS(357), - [anon_sym_DASH_EQ] = ACTIONS(357), - [anon_sym_STAR_EQ] = ACTIONS(357), - [anon_sym_SLASH_EQ] = ACTIONS(357), - [anon_sym_PERCENT_EQ] = ACTIONS(357), - [anon_sym_AMP_EQ] = ACTIONS(357), - [anon_sym_PIPE_EQ] = ACTIONS(357), - [anon_sym_CARET_EQ] = ACTIONS(357), - [anon_sym_LT_LT_EQ] = ACTIONS(357), - [anon_sym_GT_GT_EQ] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(383), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [67] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1608), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(67), + [sym_block_comment] = STATE(67), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(497), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(511), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(387), [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(513), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [68] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1622), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(55), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(68), + [sym_block_comment] = STATE(68), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_as] = ACTIONS(381), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_AMP_AMP] = ACTIONS(379), + [anon_sym_PIPE_PIPE] = ACTIONS(379), + [anon_sym_EQ_EQ] = ACTIONS(379), + [anon_sym_BANG_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_LT] = ACTIONS(381), + [anon_sym_GT_GT] = ACTIONS(381), + [anon_sym_PLUS_EQ] = ACTIONS(379), + [anon_sym_DASH_EQ] = ACTIONS(379), + [anon_sym_STAR_EQ] = ACTIONS(379), + [anon_sym_SLASH_EQ] = ACTIONS(379), + [anon_sym_PERCENT_EQ] = ACTIONS(379), + [anon_sym_AMP_EQ] = ACTIONS(379), + [anon_sym_PIPE_EQ] = ACTIONS(379), + [anon_sym_CARET_EQ] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(379), + [anon_sym_GT_GT_EQ] = ACTIONS(379), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [69] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1617), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(56), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(377), - [anon_sym_PLUS] = ACTIONS(379), - [anon_sym_STAR] = ACTIONS(379), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_DASH] = ACTIONS(379), - [anon_sym_EQ] = ACTIONS(379), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(379), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PERCENT] = ACTIONS(379), - [anon_sym_CARET] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(379), - [anon_sym_SQUOTE] = ACTIONS(379), - [anon_sym_as] = ACTIONS(379), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(379), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(377), - [anon_sym_BANG_EQ] = ACTIONS(377), - [anon_sym_LT_EQ] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(377), - [anon_sym_LT_LT] = ACTIONS(379), - [anon_sym_GT_GT] = ACTIONS(379), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(69), + [sym_block_comment] = STATE(69), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(385), + [anon_sym_PIPE_PIPE] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(385), + [anon_sym_BANG_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(385), + [anon_sym_DASH_EQ] = ACTIONS(385), + [anon_sym_STAR_EQ] = ACTIONS(385), + [anon_sym_SLASH_EQ] = ACTIONS(385), + [anon_sym_PERCENT_EQ] = ACTIONS(385), + [anon_sym_AMP_EQ] = ACTIONS(385), + [anon_sym_PIPE_EQ] = ACTIONS(385), + [anon_sym_CARET_EQ] = ACTIONS(385), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [70] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(70), + [sym_block_comment] = STATE(70), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [71] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1611), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(383), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(385), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(385), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(383), - [anon_sym_PIPE_PIPE] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(383), - [anon_sym_BANG_EQ] = ACTIONS(383), - [anon_sym_LT_EQ] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(383), - [anon_sym_LT_LT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(71), + [sym_block_comment] = STATE(71), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [72] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(72), + [sym_block_comment] = STATE(72), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(365), [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(365), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [73] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1599), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_QMARK] = ACTIONS(357), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(359), - [anon_sym_AMP] = ACTIONS(513), - [anon_sym_PERCENT] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_GT] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_as] = ACTIONS(359), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(357), - [anon_sym_DOT_DOT] = ACTIONS(515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(357), - [anon_sym_AMP_AMP] = ACTIONS(357), - [anon_sym_PIPE_PIPE] = ACTIONS(357), - [anon_sym_EQ_EQ] = ACTIONS(357), - [anon_sym_BANG_EQ] = ACTIONS(357), - [anon_sym_LT_EQ] = ACTIONS(357), - [anon_sym_GT_EQ] = ACTIONS(357), - [anon_sym_LT_LT] = ACTIONS(359), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_PLUS_EQ] = ACTIONS(357), - [anon_sym_DASH_EQ] = ACTIONS(357), - [anon_sym_STAR_EQ] = ACTIONS(357), - [anon_sym_SLASH_EQ] = ACTIONS(357), - [anon_sym_PERCENT_EQ] = ACTIONS(357), - [anon_sym_AMP_EQ] = ACTIONS(357), - [anon_sym_PIPE_EQ] = ACTIONS(357), - [anon_sym_CARET_EQ] = ACTIONS(357), - [anon_sym_LT_LT_EQ] = ACTIONS(357), - [anon_sym_GT_GT_EQ] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(73), + [sym_block_comment] = STATE(73), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(377), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(377), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_GT_EQ] = 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_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [74] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1611), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(375), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(375), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(375), - [anon_sym_SQUOTE] = ACTIONS(375), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(74), + [sym_block_comment] = STATE(74), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(497), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_PERCENT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_SQUOTE] = ACTIONS(361), + [anon_sym_as] = ACTIONS(361), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(359), + [anon_sym_PIPE_PIPE] = ACTIONS(359), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_PERCENT_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_CARET_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [75] = { - [sym_attribute_item] = STATE(81), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1542), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1535), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(517), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(519), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(75), + [sym_block_comment] = STATE(75), + [aux_sym_enum_variant_list_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(519), + [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_COMMA] = ACTIONS(521), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [76] = { - [sym_attribute_item] = STATE(117), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1606), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), [aux_sym_enum_variant_list_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(523), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(527), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [77] = { - [sym_attribute_item] = STATE(115), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1537), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(529), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [aux_sym_enum_variant_list_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(529), + [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_COMMA] = ACTIONS(531), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [78] = { - [sym_attribute_item] = STATE(80), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1525), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), [aux_sym_enum_variant_list_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(531), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(533), + [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_COMMA] = ACTIONS(535), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [79] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(558), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(573), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_default] = ACTIONS(585), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(591), - [anon_sym_loop] = ACTIONS(594), - [anon_sym_match] = ACTIONS(597), - [anon_sym_return] = ACTIONS(600), - [anon_sym_static] = ACTIONS(603), - [anon_sym_union] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(606), - [anon_sym_while] = ACTIONS(609), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_move] = ACTIONS(618), - [anon_sym_try] = ACTIONS(621), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(627), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(633), - [sym_super] = ACTIONS(636), - [sym_crate] = ACTIONS(636), - [sym_metavariable] = ACTIONS(639), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [aux_sym_enum_variant_list_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(539), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [80] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1543), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(549), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_AMP] = ACTIONS(558), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(573), - [anon_sym_break] = ACTIONS(576), - [anon_sym_const] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_default] = ACTIONS(585), - [anon_sym_for] = ACTIONS(588), - [anon_sym_if] = ACTIONS(591), - [anon_sym_loop] = ACTIONS(594), - [anon_sym_match] = ACTIONS(597), - [anon_sym_return] = ACTIONS(600), - [anon_sym_static] = ACTIONS(603), - [anon_sym_union] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(606), - [anon_sym_while] = ACTIONS(609), - [anon_sym_DOT_DOT] = ACTIONS(612), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_move] = ACTIONS(618), - [anon_sym_try] = ACTIONS(621), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(627), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(633), - [sym_super] = ACTIONS(636), - [sym_crate] = ACTIONS(636), - [sym_metavariable] = ACTIONS(639), - [sym_raw_string_literal] = ACTIONS(624), - [sym_float_literal] = ACTIONS(624), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [aux_sym_enum_variant_list_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(541), + [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_COMMA] = ACTIONS(543), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [81] = { - [sym_attribute_item] = STATE(79), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1516), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(562), + [anon_sym_i8] = ACTIONS(562), + [anon_sym_u16] = ACTIONS(562), + [anon_sym_i16] = ACTIONS(562), + [anon_sym_u32] = ACTIONS(562), + [anon_sym_i32] = ACTIONS(562), + [anon_sym_u64] = ACTIONS(562), + [anon_sym_i64] = ACTIONS(562), + [anon_sym_u128] = ACTIONS(562), + [anon_sym_i128] = ACTIONS(562), + [anon_sym_isize] = ACTIONS(562), + [anon_sym_usize] = ACTIONS(562), + [anon_sym_f32] = ACTIONS(562), + [anon_sym_f64] = ACTIONS(562), + [anon_sym_bool] = ACTIONS(562), + [anon_sym_str] = ACTIONS(562), + [anon_sym_char] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_COLON_COLON] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_async] = ACTIONS(583), + [anon_sym_break] = ACTIONS(586), + [anon_sym_const] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(595), + [anon_sym_for] = ACTIONS(598), + [anon_sym_if] = ACTIONS(601), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(607), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(613), + [anon_sym_union] = ACTIONS(595), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_while] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(625), + [anon_sym_move] = ACTIONS(628), + [anon_sym_try] = ACTIONS(631), + [sym_integer_literal] = ACTIONS(634), + [aux_sym_string_literal_token1] = ACTIONS(637), + [sym_char_literal] = ACTIONS(634), + [anon_sym_true] = ACTIONS(640), + [anon_sym_false] = ACTIONS(640), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(643), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(649), + [sym_raw_string_literal] = ACTIONS(634), + [sym_float_literal] = ACTIONS(634), }, [82] = { - [sym_attribute_item] = STATE(78), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1556), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(646), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(648), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(554), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_u8] = ACTIONS(562), + [anon_sym_i8] = ACTIONS(562), + [anon_sym_u16] = ACTIONS(562), + [anon_sym_i16] = ACTIONS(562), + [anon_sym_u32] = ACTIONS(562), + [anon_sym_i32] = ACTIONS(562), + [anon_sym_u64] = ACTIONS(562), + [anon_sym_i64] = ACTIONS(562), + [anon_sym_u128] = ACTIONS(562), + [anon_sym_i128] = ACTIONS(562), + [anon_sym_isize] = ACTIONS(562), + [anon_sym_usize] = ACTIONS(562), + [anon_sym_f32] = ACTIONS(562), + [anon_sym_f64] = ACTIONS(562), + [anon_sym_bool] = ACTIONS(562), + [anon_sym_str] = ACTIONS(562), + [anon_sym_char] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_COLON_COLON] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_async] = ACTIONS(583), + [anon_sym_break] = ACTIONS(586), + [anon_sym_const] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_default] = ACTIONS(595), + [anon_sym_for] = ACTIONS(598), + [anon_sym_if] = ACTIONS(601), + [anon_sym_loop] = ACTIONS(604), + [anon_sym_match] = ACTIONS(607), + [anon_sym_return] = ACTIONS(610), + [anon_sym_static] = ACTIONS(613), + [anon_sym_union] = ACTIONS(595), + [anon_sym_unsafe] = ACTIONS(616), + [anon_sym_while] = ACTIONS(619), + [anon_sym_DOT_DOT] = ACTIONS(622), + [anon_sym_yield] = ACTIONS(625), + [anon_sym_move] = ACTIONS(628), + [anon_sym_try] = ACTIONS(631), + [sym_integer_literal] = ACTIONS(634), + [aux_sym_string_literal_token1] = ACTIONS(637), + [sym_char_literal] = ACTIONS(634), + [anon_sym_true] = ACTIONS(640), + [anon_sym_false] = ACTIONS(640), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(643), + [sym_super] = ACTIONS(646), + [sym_crate] = ACTIONS(646), + [sym_metavariable] = ACTIONS(649), + [sym_raw_string_literal] = ACTIONS(634), + [sym_float_literal] = ACTIONS(634), }, [83] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(83), + [sym_block_comment] = STATE(83), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [84] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2537), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2521), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(84), + [sym_block_comment] = STATE(84), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [85] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2661), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(660), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(85), + [sym_block_comment] = STATE(85), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [86] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2548), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(662), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(86), + [sym_block_comment] = STATE(86), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [87] = { - [sym_attribute_item] = STATE(118), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2599), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [88] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2623), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(662), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [89] = { - [sym_attribute_item] = STATE(116), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_let_condition] = STATE(3128), + [sym__let_chain] = STATE(3187), + [sym__condition] = STATE(3257), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_let] = ACTIONS(668), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [90] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(672), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [91] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2482), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2550), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [92] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2576), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(670), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [93] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2573), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(672), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [94] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2525), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(674), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [95] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2539), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2481), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [96] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_let_condition] = STATE(3128), + [sym__let_chain] = STATE(3187), + [sym__condition] = STATE(3259), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_let] = ACTIONS(668), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [97] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [98] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [99] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2540), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(680), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [100] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2631), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2559), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [101] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2549), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym_enum_variant_list_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [102] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2521), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(684), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [103] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2550), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [104] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_let_condition] = STATE(3071), - [sym__let_chain] = STATE(3068), - [sym__condition] = STATE(3214), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_let] = ACTIONS(684), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(688), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [105] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2573), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym_enum_variant_list_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [106] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_let_condition] = STATE(3071), - [sym__let_chain] = STATE(3068), - [sym__condition] = STATE(3281), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_let] = ACTIONS(684), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [107] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(688), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(694), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [108] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(690), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_RBRACK] = ACTIONS(696), + [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_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [109] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2477), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [110] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2769), - [sym__let_chain] = STATE(2771), - [sym__condition] = STATE(2572), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2578), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [111] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2695), + [sym__let_chain] = STATE(2696), + [sym__condition] = STATE(2590), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [112] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [113] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [114] = { - [sym_attribute_item] = STATE(113), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [115] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym_enum_variant_list_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [116] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1597), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [117] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1598), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [118] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1596), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [119] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2568), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1422), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_GT] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [120] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym__] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym_tuple_expression_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [121] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym__] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym_tuple_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [122] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym_tuple_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [123] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1455), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym__] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym_tuple_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [124] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1694), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_DASH_GT] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [125] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym__] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1422), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [126] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_let_condition] = STATE(2592), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_let] = ACTIONS(668), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [127] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DASH_GT] = ACTIONS(722), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1398), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_GT] = ACTIONS(724), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [128] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_let_condition] = STATE(2568), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_let] = ACTIONS(684), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1392), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [129] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1773), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_let_condition] = STATE(2568), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_let] = ACTIONS(684), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [130] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1422), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym__] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(495), + [anon_sym_DASH] = ACTIONS(497), [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [130] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1694), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [131] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DASH_GT] = ACTIONS(734), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [aux_sym_tuple_expression_repeat1] = STATE(153), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [132] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1392), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [133] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2592), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(738), - [anon_sym_LPAREN] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(752), - [anon_sym_u8] = ACTIONS(755), - [anon_sym_i8] = ACTIONS(755), - [anon_sym_u16] = ACTIONS(755), - [anon_sym_i16] = ACTIONS(755), - [anon_sym_u32] = ACTIONS(755), - [anon_sym_i32] = ACTIONS(755), - [anon_sym_u64] = ACTIONS(755), - [anon_sym_i64] = ACTIONS(755), - [anon_sym_u128] = ACTIONS(755), - [anon_sym_i128] = ACTIONS(755), - [anon_sym_isize] = ACTIONS(755), - [anon_sym_usize] = ACTIONS(755), - [anon_sym_f32] = ACTIONS(755), - [anon_sym_f64] = ACTIONS(755), - [anon_sym_bool] = ACTIONS(755), - [anon_sym_str] = ACTIONS(755), - [anon_sym_char] = ACTIONS(755), - [anon_sym_DASH] = ACTIONS(752), - [anon_sym_COLON_COLON] = ACTIONS(758), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(770), - [anon_sym_async] = ACTIONS(773), - [anon_sym_break] = ACTIONS(776), - [anon_sym_const] = ACTIONS(779), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_default] = ACTIONS(785), - [anon_sym_for] = ACTIONS(788), - [anon_sym_if] = ACTIONS(791), - [anon_sym_loop] = ACTIONS(794), - [anon_sym_match] = ACTIONS(797), - [anon_sym_return] = ACTIONS(800), - [anon_sym_static] = ACTIONS(803), - [anon_sym_union] = ACTIONS(785), - [anon_sym_unsafe] = ACTIONS(806), - [anon_sym_while] = ACTIONS(809), - [anon_sym_DOT_DOT] = ACTIONS(812), - [anon_sym_yield] = ACTIONS(815), - [anon_sym_move] = ACTIONS(818), - [anon_sym_try] = ACTIONS(821), - [sym_integer_literal] = ACTIONS(824), - [aux_sym_string_literal_token1] = ACTIONS(827), - [sym_char_literal] = ACTIONS(824), - [anon_sym_true] = ACTIONS(830), - [anon_sym_false] = ACTIONS(830), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(833), - [sym_super] = ACTIONS(836), - [sym_crate] = ACTIONS(836), - [sym_metavariable] = ACTIONS(839), - [sym_raw_string_literal] = ACTIONS(824), - [sym_float_literal] = ACTIONS(824), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [134] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym__] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_DASH_GT] = ACTIONS(844), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_let_condition] = STATE(2592), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(134), + [sym_block_comment] = STATE(134), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_let] = ACTIONS(668), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [135] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1806), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_let_condition] = STATE(2592), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_let] = ACTIONS(658), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [136] = { - [sym_else_clause] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(848), - [sym_identifier] = ACTIONS(850), - [anon_sym_SEMI] = ACTIONS(848), - [anon_sym_macro_rules_BANG] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(848), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u128] = ACTIONS(850), - [anon_sym_i128] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_str] = ACTIONS(850), - [anon_sym_char] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_COLON_COLON] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(850), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(848), - [anon_sym_PERCENT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_SQUOTE] = ACTIONS(850), - [anon_sym_as] = ACTIONS(850), - [anon_sym_async] = ACTIONS(850), - [anon_sym_break] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_enum] = ACTIONS(850), - [anon_sym_fn] = ACTIONS(850), - [anon_sym_for] = ACTIONS(850), - [anon_sym_if] = ACTIONS(850), - [anon_sym_impl] = ACTIONS(850), - [anon_sym_let] = ACTIONS(850), - [anon_sym_loop] = ACTIONS(850), - [anon_sym_match] = ACTIONS(850), - [anon_sym_mod] = ACTIONS(850), - [anon_sym_pub] = ACTIONS(850), - [anon_sym_return] = ACTIONS(850), - [anon_sym_static] = ACTIONS(850), - [anon_sym_struct] = ACTIONS(850), - [anon_sym_trait] = ACTIONS(850), - [anon_sym_type] = ACTIONS(850), - [anon_sym_union] = ACTIONS(850), - [anon_sym_unsafe] = ACTIONS(850), - [anon_sym_use] = ACTIONS(850), - [anon_sym_while] = ACTIONS(850), - [anon_sym_extern] = ACTIONS(850), - [anon_sym_else] = ACTIONS(852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(848), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(848), - [anon_sym_AMP_AMP] = ACTIONS(848), - [anon_sym_PIPE_PIPE] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(848), - [anon_sym_BANG_EQ] = ACTIONS(848), - [anon_sym_LT_EQ] = ACTIONS(848), - [anon_sym_GT_EQ] = ACTIONS(848), - [anon_sym_LT_LT] = ACTIONS(850), - [anon_sym_GT_GT] = ACTIONS(850), - [anon_sym_PLUS_EQ] = ACTIONS(848), - [anon_sym_DASH_EQ] = ACTIONS(848), - [anon_sym_STAR_EQ] = ACTIONS(848), - [anon_sym_SLASH_EQ] = ACTIONS(848), - [anon_sym_PERCENT_EQ] = ACTIONS(848), - [anon_sym_AMP_EQ] = ACTIONS(848), - [anon_sym_PIPE_EQ] = ACTIONS(848), - [anon_sym_CARET_EQ] = ACTIONS(848), - [anon_sym_LT_LT_EQ] = ACTIONS(848), - [anon_sym_GT_GT_EQ] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_move] = ACTIONS(850), - [anon_sym_try] = ACTIONS(850), - [sym_integer_literal] = ACTIONS(848), - [aux_sym_string_literal_token1] = ACTIONS(848), - [sym_char_literal] = ACTIONS(848), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_crate] = ACTIONS(850), - [sym_metavariable] = ACTIONS(848), - [sym_raw_string_literal] = ACTIONS(848), - [sym_float_literal] = ACTIONS(848), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1398), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(724), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [137] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1752), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DASH_GT] = ACTIONS(856), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_else_clause] = STATE(189), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(742), + [sym_identifier] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_macro_rules_BANG] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(742), + [anon_sym_u8] = ACTIONS(744), + [anon_sym_i8] = ACTIONS(744), + [anon_sym_u16] = ACTIONS(744), + [anon_sym_i16] = ACTIONS(744), + [anon_sym_u32] = ACTIONS(744), + [anon_sym_i32] = ACTIONS(744), + [anon_sym_u64] = ACTIONS(744), + [anon_sym_i64] = ACTIONS(744), + [anon_sym_u128] = ACTIONS(744), + [anon_sym_i128] = ACTIONS(744), + [anon_sym_isize] = ACTIONS(744), + [anon_sym_usize] = ACTIONS(744), + [anon_sym_f32] = ACTIONS(744), + [anon_sym_f64] = ACTIONS(744), + [anon_sym_bool] = ACTIONS(744), + [anon_sym_str] = ACTIONS(744), + [anon_sym_char] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(744), + [anon_sym_as] = ACTIONS(744), + [anon_sym_async] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_enum] = ACTIONS(744), + [anon_sym_fn] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_impl] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(744), + [anon_sym_match] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_pub] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_static] = ACTIONS(744), + [anon_sym_struct] = ACTIONS(744), + [anon_sym_trait] = ACTIONS(744), + [anon_sym_type] = ACTIONS(744), + [anon_sym_union] = ACTIONS(744), + [anon_sym_unsafe] = ACTIONS(744), + [anon_sym_use] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(744), + [anon_sym_else] = ACTIONS(746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(742), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(742), + [anon_sym_AMP_AMP] = ACTIONS(742), + [anon_sym_PIPE_PIPE] = ACTIONS(742), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(742), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_PLUS_EQ] = ACTIONS(742), + [anon_sym_DASH_EQ] = ACTIONS(742), + [anon_sym_STAR_EQ] = ACTIONS(742), + [anon_sym_SLASH_EQ] = ACTIONS(742), + [anon_sym_PERCENT_EQ] = ACTIONS(742), + [anon_sym_AMP_EQ] = ACTIONS(742), + [anon_sym_PIPE_EQ] = ACTIONS(742), + [anon_sym_CARET_EQ] = ACTIONS(742), + [anon_sym_LT_LT_EQ] = ACTIONS(742), + [anon_sym_GT_GT_EQ] = ACTIONS(742), + [anon_sym_yield] = ACTIONS(744), + [anon_sym_move] = ACTIONS(744), + [anon_sym_try] = ACTIONS(744), + [sym_integer_literal] = ACTIONS(742), + [aux_sym_string_literal_token1] = ACTIONS(742), + [sym_char_literal] = ACTIONS(742), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(744), + [sym_crate] = ACTIONS(744), + [sym_metavariable] = ACTIONS(742), + [sym_raw_string_literal] = ACTIONS(742), + [sym_float_literal] = ACTIONS(742), }, [138] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1765), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_DASH_GT] = ACTIONS(856), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1392), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(497), + [anon_sym_DASH_GT] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [139] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_let_condition] = STATE(2568), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_let] = ACTIONS(656), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1694), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(718), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [140] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1604), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DASH_GT] = ACTIONS(734), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1730), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(752), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [141] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym__] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_DASH_GT] = ACTIONS(844), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1654), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(756), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [142] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1603), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DASH_GT] = ACTIONS(722), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1466), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1398), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(724), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [143] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1654), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(756), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [144] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_tuple_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [145] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym__] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DASH_GT] = ACTIONS(844), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [aux_sym_tuple_expression_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [146] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1602), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(854), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DASH_GT] = ACTIONS(856), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1392), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_GT] = ACTIONS(730), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [147] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_DASH_GT] = ACTIONS(722), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1730), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_DASH_GT] = ACTIONS(752), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [148] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1778), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym__] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(461), - [anon_sym_DASH_GT] = ACTIONS(704), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_tuple_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(763), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(774), + [anon_sym_u8] = ACTIONS(777), + [anon_sym_i8] = ACTIONS(777), + [anon_sym_u16] = ACTIONS(777), + [anon_sym_i16] = ACTIONS(777), + [anon_sym_u32] = ACTIONS(777), + [anon_sym_i32] = ACTIONS(777), + [anon_sym_u64] = ACTIONS(777), + [anon_sym_i64] = ACTIONS(777), + [anon_sym_u128] = ACTIONS(777), + [anon_sym_i128] = ACTIONS(777), + [anon_sym_isize] = ACTIONS(777), + [anon_sym_usize] = ACTIONS(777), + [anon_sym_f32] = ACTIONS(777), + [anon_sym_f64] = ACTIONS(777), + [anon_sym_bool] = ACTIONS(777), + [anon_sym_str] = ACTIONS(777), + [anon_sym_char] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_COLON_COLON] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(786), + [anon_sym_PIPE] = 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_if] = ACTIONS(813), + [anon_sym_loop] = ACTIONS(816), + [anon_sym_match] = ACTIONS(819), + [anon_sym_return] = ACTIONS(822), + [anon_sym_static] = ACTIONS(825), + [anon_sym_union] = ACTIONS(807), + [anon_sym_unsafe] = ACTIONS(828), + [anon_sym_while] = ACTIONS(831), + [anon_sym_DOT_DOT] = 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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(855), + [sym_super] = ACTIONS(858), + [sym_crate] = ACTIONS(858), + [sym_metavariable] = ACTIONS(861), + [sym_raw_string_literal] = ACTIONS(846), + [sym_float_literal] = ACTIONS(846), }, [149] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1461), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1459), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym__] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1422), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(335), + [anon_sym_DASH_GT] = ACTIONS(704), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [150] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym__] = ACTIONS(698), - [anon_sym_DASH] = ACTIONS(495), - [anon_sym_DASH_GT] = ACTIONS(700), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1730), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DASH_GT] = ACTIONS(752), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [151] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [aux_sym_tuple_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(862), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1398), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(722), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_GT] = ACTIONS(724), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [152] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym__] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(441), - [anon_sym_DASH_GT] = ACTIONS(734), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1654), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym__] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(443), + [anon_sym_DASH_GT] = ACTIONS(756), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [153] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1451), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym__] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_DASH_GT] = ACTIONS(844), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_tuple_expression_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [154] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1600), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [sym_mutable_specifier] = ACTIONS(864), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [155] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), [sym_mutable_specifier] = ACTIONS(866), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [156] = { + [155] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), [ts_builtin_sym_end] = ACTIONS(868), [sym_identifier] = ACTIONS(870), [anon_sym_SEMI] = ACTIONS(868), @@ -37266,556 +37753,678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(868), [anon_sym_true] = ACTIONS(870), [anon_sym_false] = ACTIONS(870), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(870), [sym_super] = ACTIONS(870), [sym_crate] = ACTIONS(870), [sym_metavariable] = ACTIONS(868), [sym_raw_string_literal] = ACTIONS(868), [sym_float_literal] = ACTIONS(868), - [sym_block_comment] = ACTIONS(3), + }, + [156] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(872), + [sym_identifier] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_macro_rules_BANG] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_COLON_COLON] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_as] = ACTIONS(874), + [anon_sym_async] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_const] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_default] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_fn] = ACTIONS(874), + [anon_sym_for] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_impl] = ACTIONS(874), + [anon_sym_let] = ACTIONS(874), + [anon_sym_loop] = ACTIONS(874), + [anon_sym_match] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(874), + [anon_sym_pub] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_struct] = ACTIONS(874), + [anon_sym_trait] = ACTIONS(874), + [anon_sym_type] = ACTIONS(874), + [anon_sym_union] = ACTIONS(874), + [anon_sym_unsafe] = ACTIONS(874), + [anon_sym_use] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(872), + [anon_sym_AMP_AMP] = ACTIONS(872), + [anon_sym_PIPE_PIPE] = ACTIONS(872), + [anon_sym_EQ_EQ] = ACTIONS(872), + [anon_sym_BANG_EQ] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(872), + [anon_sym_GT_EQ] = ACTIONS(872), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_PLUS_EQ] = ACTIONS(872), + [anon_sym_DASH_EQ] = ACTIONS(872), + [anon_sym_STAR_EQ] = ACTIONS(872), + [anon_sym_SLASH_EQ] = ACTIONS(872), + [anon_sym_PERCENT_EQ] = ACTIONS(872), + [anon_sym_AMP_EQ] = ACTIONS(872), + [anon_sym_PIPE_EQ] = ACTIONS(872), + [anon_sym_CARET_EQ] = ACTIONS(872), + [anon_sym_LT_LT_EQ] = ACTIONS(872), + [anon_sym_GT_GT_EQ] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(874), + [anon_sym_move] = ACTIONS(874), + [anon_sym_try] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(874), + [sym_super] = ACTIONS(874), + [sym_crate] = ACTIONS(874), + [sym_metavariable] = ACTIONS(872), + [sym_raw_string_literal] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), }, [157] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1600), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [sym_mutable_specifier] = ACTIONS(872), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [sym_mutable_specifier] = ACTIONS(876), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(874), - [sym_identifier] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_macro_rules_BANG] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_QMARK] = ACTIONS(874), - [anon_sym_u8] = ACTIONS(876), - [anon_sym_i8] = ACTIONS(876), - [anon_sym_u16] = ACTIONS(876), - [anon_sym_i16] = ACTIONS(876), - [anon_sym_u32] = ACTIONS(876), - [anon_sym_i32] = ACTIONS(876), - [anon_sym_u64] = ACTIONS(876), - [anon_sym_i64] = ACTIONS(876), - [anon_sym_u128] = ACTIONS(876), - [anon_sym_i128] = ACTIONS(876), - [anon_sym_isize] = ACTIONS(876), - [anon_sym_usize] = ACTIONS(876), - [anon_sym_f32] = ACTIONS(876), - [anon_sym_f64] = ACTIONS(876), - [anon_sym_bool] = ACTIONS(876), - [anon_sym_str] = ACTIONS(876), - [anon_sym_char] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [anon_sym_COLON_COLON] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_SQUOTE] = ACTIONS(876), - [anon_sym_as] = ACTIONS(876), - [anon_sym_async] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_impl] = ACTIONS(876), - [anon_sym_let] = ACTIONS(876), - [anon_sym_loop] = ACTIONS(876), - [anon_sym_match] = ACTIONS(876), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_pub] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_struct] = ACTIONS(876), - [anon_sym_trait] = ACTIONS(876), - [anon_sym_type] = ACTIONS(876), - [anon_sym_union] = ACTIONS(876), - [anon_sym_unsafe] = ACTIONS(876), - [anon_sym_use] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(874), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_PLUS_EQ] = ACTIONS(874), - [anon_sym_DASH_EQ] = ACTIONS(874), - [anon_sym_STAR_EQ] = ACTIONS(874), - [anon_sym_SLASH_EQ] = ACTIONS(874), - [anon_sym_PERCENT_EQ] = ACTIONS(874), - [anon_sym_AMP_EQ] = ACTIONS(874), - [anon_sym_PIPE_EQ] = ACTIONS(874), - [anon_sym_CARET_EQ] = ACTIONS(874), - [anon_sym_LT_LT_EQ] = ACTIONS(874), - [anon_sym_GT_GT_EQ] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_move] = ACTIONS(876), - [anon_sym_try] = ACTIONS(876), - [sym_integer_literal] = ACTIONS(874), - [aux_sym_string_literal_token1] = ACTIONS(874), - [sym_char_literal] = ACTIONS(874), - [anon_sym_true] = ACTIONS(876), - [anon_sym_false] = ACTIONS(876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_identifier] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_macro_rules_BANG] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u128] = ACTIONS(880), + [anon_sym_i128] = ACTIONS(880), + [anon_sym_isize] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_f32] = ACTIONS(880), + [anon_sym_f64] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_str] = ACTIONS(880), + [anon_sym_char] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_as] = ACTIONS(880), + [anon_sym_async] = ACTIONS(880), + [anon_sym_break] = ACTIONS(880), + [anon_sym_const] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_enum] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_impl] = ACTIONS(880), + [anon_sym_let] = ACTIONS(880), + [anon_sym_loop] = ACTIONS(880), + [anon_sym_match] = ACTIONS(880), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_pub] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_static] = ACTIONS(880), + [anon_sym_struct] = ACTIONS(880), + [anon_sym_trait] = ACTIONS(880), + [anon_sym_type] = ACTIONS(880), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(880), + [anon_sym_use] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_extern] = ACTIONS(880), + [anon_sym_else] = ACTIONS(880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(878), + [anon_sym_DOT_DOT] = ACTIONS(880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_STAR_EQ] = ACTIONS(878), + [anon_sym_SLASH_EQ] = ACTIONS(878), + [anon_sym_PERCENT_EQ] = ACTIONS(878), + [anon_sym_AMP_EQ] = ACTIONS(878), + [anon_sym_PIPE_EQ] = ACTIONS(878), + [anon_sym_CARET_EQ] = ACTIONS(878), + [anon_sym_LT_LT_EQ] = ACTIONS(878), + [anon_sym_GT_GT_EQ] = ACTIONS(878), + [anon_sym_yield] = ACTIONS(880), + [anon_sym_move] = ACTIONS(880), + [anon_sym_try] = ACTIONS(880), + [sym_integer_literal] = ACTIONS(878), + [aux_sym_string_literal_token1] = ACTIONS(878), + [sym_char_literal] = ACTIONS(878), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(880), + [sym_super] = ACTIONS(880), + [sym_crate] = ACTIONS(880), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(878), + [sym_float_literal] = ACTIONS(878), }, [159] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_mutable_specifier] = ACTIONS(878), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [sym_mutable_specifier] = ACTIONS(882), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_macro_rules_BANG] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_u8] = ACTIONS(882), - [anon_sym_i8] = ACTIONS(882), - [anon_sym_u16] = ACTIONS(882), - [anon_sym_i16] = ACTIONS(882), - [anon_sym_u32] = ACTIONS(882), - [anon_sym_i32] = ACTIONS(882), - [anon_sym_u64] = ACTIONS(882), - [anon_sym_i64] = ACTIONS(882), - [anon_sym_u128] = ACTIONS(882), - [anon_sym_i128] = ACTIONS(882), - [anon_sym_isize] = ACTIONS(882), - [anon_sym_usize] = ACTIONS(882), - [anon_sym_f32] = ACTIONS(882), - [anon_sym_f64] = ACTIONS(882), - [anon_sym_bool] = ACTIONS(882), - [anon_sym_str] = ACTIONS(882), - [anon_sym_char] = ACTIONS(882), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_POUND] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(882), - [anon_sym_CARET] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(882), - [anon_sym_as] = ACTIONS(882), - [anon_sym_async] = ACTIONS(882), - [anon_sym_break] = ACTIONS(882), - [anon_sym_const] = ACTIONS(882), - [anon_sym_continue] = ACTIONS(882), - [anon_sym_default] = ACTIONS(882), - [anon_sym_enum] = ACTIONS(882), - [anon_sym_fn] = ACTIONS(882), - [anon_sym_for] = ACTIONS(882), - [anon_sym_if] = ACTIONS(882), - [anon_sym_impl] = ACTIONS(882), - [anon_sym_let] = ACTIONS(882), - [anon_sym_loop] = ACTIONS(882), - [anon_sym_match] = ACTIONS(882), - [anon_sym_mod] = ACTIONS(882), - [anon_sym_pub] = ACTIONS(882), - [anon_sym_return] = ACTIONS(882), - [anon_sym_static] = ACTIONS(882), - [anon_sym_struct] = ACTIONS(882), - [anon_sym_trait] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(882), - [anon_sym_use] = ACTIONS(882), - [anon_sym_while] = ACTIONS(882), - [anon_sym_extern] = ACTIONS(882), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(882), - [anon_sym_DOT_DOT_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), - [anon_sym_STAR_EQ] = ACTIONS(880), - [anon_sym_SLASH_EQ] = ACTIONS(880), - [anon_sym_PERCENT_EQ] = ACTIONS(880), - [anon_sym_AMP_EQ] = ACTIONS(880), - [anon_sym_PIPE_EQ] = ACTIONS(880), - [anon_sym_CARET_EQ] = ACTIONS(880), - [anon_sym_LT_LT_EQ] = ACTIONS(880), - [anon_sym_GT_GT_EQ] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(882), - [anon_sym_move] = ACTIONS(882), - [anon_sym_try] = ACTIONS(882), - [sym_integer_literal] = ACTIONS(880), - [aux_sym_string_literal_token1] = ACTIONS(880), - [sym_char_literal] = ACTIONS(880), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(880), - [sym_raw_string_literal] = ACTIONS(880), - [sym_float_literal] = ACTIONS(880), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [sym_mutable_specifier] = ACTIONS(884), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [161] = { - [ts_builtin_sym_end] = ACTIONS(884), - [sym_identifier] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_macro_rules_BANG] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_QMARK] = ACTIONS(884), - [anon_sym_u8] = ACTIONS(886), - [anon_sym_i8] = ACTIONS(886), - [anon_sym_u16] = ACTIONS(886), - [anon_sym_i16] = ACTIONS(886), - [anon_sym_u32] = ACTIONS(886), - [anon_sym_i32] = ACTIONS(886), - [anon_sym_u64] = ACTIONS(886), - [anon_sym_i64] = ACTIONS(886), - [anon_sym_u128] = ACTIONS(886), - [anon_sym_i128] = ACTIONS(886), - [anon_sym_isize] = ACTIONS(886), - [anon_sym_usize] = ACTIONS(886), - [anon_sym_f32] = ACTIONS(886), - [anon_sym_f64] = ACTIONS(886), - [anon_sym_bool] = ACTIONS(886), - [anon_sym_str] = ACTIONS(886), - [anon_sym_char] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_EQ] = ACTIONS(886), - [anon_sym_COLON_COLON] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_POUND] = ACTIONS(884), - [anon_sym_PERCENT] = ACTIONS(886), - [anon_sym_CARET] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_as] = ACTIONS(886), - [anon_sym_async] = ACTIONS(886), - [anon_sym_break] = ACTIONS(886), - [anon_sym_const] = ACTIONS(886), - [anon_sym_continue] = ACTIONS(886), - [anon_sym_default] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(886), - [anon_sym_fn] = ACTIONS(886), - [anon_sym_for] = ACTIONS(886), - [anon_sym_if] = ACTIONS(886), - [anon_sym_impl] = ACTIONS(886), - [anon_sym_let] = ACTIONS(886), - [anon_sym_loop] = ACTIONS(886), - [anon_sym_match] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(886), - [anon_sym_pub] = ACTIONS(886), - [anon_sym_return] = ACTIONS(886), - [anon_sym_static] = ACTIONS(886), - [anon_sym_struct] = ACTIONS(886), - [anon_sym_trait] = ACTIONS(886), - [anon_sym_type] = ACTIONS(886), - [anon_sym_union] = ACTIONS(886), - [anon_sym_unsafe] = ACTIONS(886), - [anon_sym_use] = ACTIONS(886), - [anon_sym_while] = ACTIONS(886), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_else] = ACTIONS(886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [anon_sym_DOT_DOT] = ACTIONS(886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(886), - [anon_sym_GT_GT] = ACTIONS(886), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), - [anon_sym_STAR_EQ] = ACTIONS(884), - [anon_sym_SLASH_EQ] = ACTIONS(884), - [anon_sym_PERCENT_EQ] = ACTIONS(884), - [anon_sym_AMP_EQ] = ACTIONS(884), - [anon_sym_PIPE_EQ] = ACTIONS(884), - [anon_sym_CARET_EQ] = ACTIONS(884), - [anon_sym_LT_LT_EQ] = ACTIONS(884), - [anon_sym_GT_GT_EQ] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(886), - [anon_sym_move] = ACTIONS(886), - [anon_sym_try] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(884), - [aux_sym_string_literal_token1] = ACTIONS(884), - [sym_char_literal] = ACTIONS(884), - [anon_sym_true] = ACTIONS(886), - [anon_sym_false] = ACTIONS(886), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(886), - [sym_super] = ACTIONS(886), - [sym_crate] = ACTIONS(886), - [sym_metavariable] = ACTIONS(884), - [sym_raw_string_literal] = ACTIONS(884), - [sym_float_literal] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [sym_mutable_specifier] = ACTIONS(886), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [162] = { + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), [ts_builtin_sym_end] = ACTIONS(888), [sym_identifier] = ACTIONS(890), [anon_sym_SEMI] = ACTIONS(888), @@ -37914,299 +38523,1613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(888), [anon_sym_true] = ACTIONS(890), [anon_sym_false] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(890), [sym_super] = ACTIONS(890), [sym_crate] = ACTIONS(890), [sym_metavariable] = ACTIONS(888), [sym_raw_string_literal] = ACTIONS(888), [sym_float_literal] = ACTIONS(888), - [sym_block_comment] = ACTIONS(3), }, [163] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [sym_mutable_specifier] = ACTIONS(892), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_macro_rules_BANG] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(892), + [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_SLASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(892), + [anon_sym_PERCENT] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_async] = 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_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_while] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(892), + [anon_sym_AMP_AMP] = ACTIONS(892), + [anon_sym_PIPE_PIPE] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(892), + [anon_sym_BANG_EQ] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(892), + [anon_sym_DASH_EQ] = ACTIONS(892), + [anon_sym_STAR_EQ] = ACTIONS(892), + [anon_sym_SLASH_EQ] = ACTIONS(892), + [anon_sym_PERCENT_EQ] = ACTIONS(892), + [anon_sym_AMP_EQ] = ACTIONS(892), + [anon_sym_PIPE_EQ] = ACTIONS(892), + [anon_sym_CARET_EQ] = ACTIONS(892), + [anon_sym_LT_LT_EQ] = ACTIONS(892), + [anon_sym_GT_GT_EQ] = ACTIONS(892), + [anon_sym_yield] = ACTIONS(894), + [anon_sym_move] = ACTIONS(894), + [anon_sym_try] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), }, [164] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1779), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1401), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(894), - [sym_identifier] = ACTIONS(896), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1473), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [166] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [167] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [168] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [169] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [170] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [171] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [172] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [173] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [174] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1551), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [175] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [176] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_identifier] = ACTIONS(900), [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_macro_rules_BANG] = ACTIONS(894), + [anon_sym_macro_rules_BANG] = ACTIONS(898), [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_RBRACE] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(898), [anon_sym_PLUS] = ACTIONS(900), [anon_sym_STAR] = ACTIONS(900), [anon_sym_QMARK] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(900), + [anon_sym_i8] = ACTIONS(900), + [anon_sym_u16] = ACTIONS(900), + [anon_sym_i16] = ACTIONS(900), + [anon_sym_u32] = ACTIONS(900), + [anon_sym_i32] = ACTIONS(900), + [anon_sym_u64] = ACTIONS(900), + [anon_sym_i64] = ACTIONS(900), + [anon_sym_u128] = ACTIONS(900), + [anon_sym_i128] = ACTIONS(900), + [anon_sym_isize] = ACTIONS(900), + [anon_sym_usize] = ACTIONS(900), + [anon_sym_f32] = ACTIONS(900), + [anon_sym_f64] = ACTIONS(900), + [anon_sym_bool] = ACTIONS(900), + [anon_sym_str] = ACTIONS(900), + [anon_sym_char] = ACTIONS(900), [anon_sym_SLASH] = ACTIONS(900), [anon_sym_DASH] = ACTIONS(900), [anon_sym_EQ] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), + [anon_sym_COLON_COLON] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(900), [anon_sym_DOT] = ACTIONS(900), [anon_sym_AMP] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(898), [anon_sym_PERCENT] = ACTIONS(900), [anon_sym_CARET] = ACTIONS(900), [anon_sym_LT] = ACTIONS(900), [anon_sym_GT] = ACTIONS(900), [anon_sym_PIPE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(896), + [anon_sym_SQUOTE] = ACTIONS(900), [anon_sym_as] = ACTIONS(900), - [anon_sym_async] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_fn] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_impl] = ACTIONS(896), - [anon_sym_let] = ACTIONS(896), - [anon_sym_loop] = ACTIONS(896), - [anon_sym_match] = ACTIONS(896), - [anon_sym_mod] = ACTIONS(896), - [anon_sym_pub] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_static] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_trait] = ACTIONS(896), - [anon_sym_type] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(896), - [anon_sym_use] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), + [anon_sym_async] = ACTIONS(900), + [anon_sym_break] = ACTIONS(900), + [anon_sym_const] = ACTIONS(900), + [anon_sym_continue] = ACTIONS(900), + [anon_sym_default] = ACTIONS(900), + [anon_sym_enum] = ACTIONS(900), + [anon_sym_fn] = ACTIONS(900), + [anon_sym_for] = ACTIONS(900), + [anon_sym_if] = ACTIONS(900), + [anon_sym_impl] = ACTIONS(900), + [anon_sym_let] = ACTIONS(900), + [anon_sym_loop] = ACTIONS(900), + [anon_sym_match] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(900), + [anon_sym_pub] = ACTIONS(900), + [anon_sym_return] = ACTIONS(900), + [anon_sym_static] = ACTIONS(900), + [anon_sym_struct] = ACTIONS(900), + [anon_sym_trait] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_union] = ACTIONS(900), + [anon_sym_unsafe] = ACTIONS(900), + [anon_sym_use] = ACTIONS(900), + [anon_sym_while] = ACTIONS(900), + [anon_sym_extern] = ACTIONS(900), [anon_sym_DOT_DOT_DOT] = ACTIONS(898), [anon_sym_DOT_DOT] = ACTIONS(900), [anon_sym_DOT_DOT_EQ] = ACTIONS(898), @@ -38228,345 +40151,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(898), [anon_sym_LT_LT_EQ] = ACTIONS(898), [anon_sym_GT_GT_EQ] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_move] = ACTIONS(896), - [anon_sym_try] = ACTIONS(896), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(894), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(896), - [anon_sym_false] = ACTIONS(896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_crate] = ACTIONS(896), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1384), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_yield] = ACTIONS(900), + [anon_sym_move] = ACTIONS(900), + [anon_sym_try] = ACTIONS(900), + [sym_integer_literal] = ACTIONS(898), + [aux_sym_string_literal_token1] = ACTIONS(898), + [sym_char_literal] = ACTIONS(898), + [anon_sym_true] = ACTIONS(900), + [anon_sym_false] = ACTIONS(900), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(900), + [sym_super] = ACTIONS(900), + [sym_crate] = ACTIONS(900), + [sym_metavariable] = ACTIONS(898), + [sym_raw_string_literal] = ACTIONS(898), + [sym_float_literal] = ACTIONS(898), }, - [168] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [178] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, - [169] = { + [179] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), [ts_builtin_sym_end] = ACTIONS(902), [sym_identifier] = ACTIONS(904), [anon_sym_SEMI] = ACTIONS(902), @@ -38664,337 +40377,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(902), [anon_sym_true] = ACTIONS(904), [anon_sym_false] = ACTIONS(904), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(904), [sym_super] = ACTIONS(904), [sym_crate] = ACTIONS(904), [sym_metavariable] = ACTIONS(902), [sym_raw_string_literal] = ACTIONS(902), [sym_float_literal] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [180] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, - [173] = { + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), [ts_builtin_sym_end] = ACTIONS(906), [sym_identifier] = ACTIONS(908), [anon_sym_SEMI] = ACTIONS(906), @@ -39092,2370 +40595,2416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(906), [anon_sym_true] = ACTIONS(908), [anon_sym_false] = ACTIONS(908), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(908), [sym_super] = ACTIONS(908), [sym_crate] = ACTIONS(908), [sym_metavariable] = ACTIONS(906), [sym_raw_string_literal] = ACTIONS(906), [sym_float_literal] = ACTIONS(906), - [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3443), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(912), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(916), - [anon_sym_if] = ACTIONS(918), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_match] = ACTIONS(922), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_while] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(928), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_macro_rules_BANG] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_QMARK] = ACTIONS(930), - [anon_sym_u8] = ACTIONS(932), - [anon_sym_i8] = ACTIONS(932), - [anon_sym_u16] = ACTIONS(932), - [anon_sym_i16] = ACTIONS(932), - [anon_sym_u32] = ACTIONS(932), - [anon_sym_i32] = ACTIONS(932), - [anon_sym_u64] = ACTIONS(932), - [anon_sym_i64] = ACTIONS(932), - [anon_sym_u128] = ACTIONS(932), - [anon_sym_i128] = ACTIONS(932), - [anon_sym_isize] = ACTIONS(932), - [anon_sym_usize] = ACTIONS(932), - [anon_sym_f32] = ACTIONS(932), - [anon_sym_f64] = ACTIONS(932), - [anon_sym_bool] = ACTIONS(932), - [anon_sym_str] = ACTIONS(932), - [anon_sym_char] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_COLON_COLON] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(932), - [anon_sym_CARET] = ACTIONS(932), - [anon_sym_LT] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_SQUOTE] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_async] = ACTIONS(932), - [anon_sym_break] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_if] = ACTIONS(932), - [anon_sym_impl] = ACTIONS(932), - [anon_sym_let] = ACTIONS(932), - [anon_sym_loop] = ACTIONS(932), - [anon_sym_match] = ACTIONS(932), - [anon_sym_mod] = ACTIONS(932), - [anon_sym_pub] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_static] = ACTIONS(932), - [anon_sym_struct] = ACTIONS(932), - [anon_sym_trait] = ACTIONS(932), - [anon_sym_type] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_unsafe] = ACTIONS(932), - [anon_sym_use] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(930), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(930), - [anon_sym_AMP_AMP] = ACTIONS(930), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_GT_GT] = ACTIONS(932), - [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_AMP_EQ] = ACTIONS(930), - [anon_sym_PIPE_EQ] = ACTIONS(930), - [anon_sym_CARET_EQ] = ACTIONS(930), - [anon_sym_LT_LT_EQ] = ACTIONS(930), - [anon_sym_GT_GT_EQ] = ACTIONS(930), - [anon_sym_yield] = ACTIONS(932), - [anon_sym_move] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [sym_integer_literal] = ACTIONS(930), - [aux_sym_string_literal_token1] = ACTIONS(930), - [sym_char_literal] = ACTIONS(930), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(932), - [sym_super] = ACTIONS(932), - [sym_crate] = ACTIONS(932), - [sym_metavariable] = ACTIONS(930), - [sym_raw_string_literal] = ACTIONS(930), - [sym_float_literal] = ACTIONS(930), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [182] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(910), + [sym_identifier] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_macro_rules_BANG] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_QMARK] = ACTIONS(910), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u128] = ACTIONS(912), + [anon_sym_i128] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_str] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(912), + [anon_sym_COLON_COLON] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_DOT] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_POUND] = ACTIONS(910), + [anon_sym_PERCENT] = ACTIONS(912), + [anon_sym_CARET] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_as] = ACTIONS(912), + [anon_sym_async] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_const] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_fn] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_impl] = ACTIONS(912), + [anon_sym_let] = ACTIONS(912), + [anon_sym_loop] = ACTIONS(912), + [anon_sym_match] = ACTIONS(912), + [anon_sym_mod] = ACTIONS(912), + [anon_sym_pub] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_trait] = ACTIONS(912), + [anon_sym_type] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(912), + [anon_sym_use] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_extern] = ACTIONS(912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(910), + [anon_sym_DOT_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT_EQ] = ACTIONS(910), + [anon_sym_AMP_AMP] = ACTIONS(910), + [anon_sym_PIPE_PIPE] = ACTIONS(910), + [anon_sym_EQ_EQ] = ACTIONS(910), + [anon_sym_BANG_EQ] = ACTIONS(910), + [anon_sym_LT_EQ] = ACTIONS(910), + [anon_sym_GT_EQ] = ACTIONS(910), + [anon_sym_LT_LT] = ACTIONS(912), + [anon_sym_GT_GT] = ACTIONS(912), + [anon_sym_PLUS_EQ] = ACTIONS(910), + [anon_sym_DASH_EQ] = ACTIONS(910), + [anon_sym_STAR_EQ] = ACTIONS(910), + [anon_sym_SLASH_EQ] = ACTIONS(910), + [anon_sym_PERCENT_EQ] = ACTIONS(910), + [anon_sym_AMP_EQ] = ACTIONS(910), + [anon_sym_PIPE_EQ] = ACTIONS(910), + [anon_sym_CARET_EQ] = ACTIONS(910), + [anon_sym_LT_LT_EQ] = ACTIONS(910), + [anon_sym_GT_GT_EQ] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_move] = ACTIONS(912), + [anon_sym_try] = ACTIONS(912), + [sym_integer_literal] = ACTIONS(910), + [aux_sym_string_literal_token1] = ACTIONS(910), + [sym_char_literal] = ACTIONS(910), + [anon_sym_true] = ACTIONS(912), + [anon_sym_false] = ACTIONS(912), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(912), + [sym_super] = ACTIONS(912), + [sym_crate] = ACTIONS(912), + [sym_metavariable] = ACTIONS(910), + [sym_raw_string_literal] = ACTIONS(910), + [sym_float_literal] = ACTIONS(910), }, [183] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [184] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [185] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1773), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [ts_builtin_sym_end] = ACTIONS(914), + [sym_identifier] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_macro_rules_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_QMARK] = ACTIONS(914), + [anon_sym_u8] = ACTIONS(916), + [anon_sym_i8] = ACTIONS(916), + [anon_sym_u16] = ACTIONS(916), + [anon_sym_i16] = ACTIONS(916), + [anon_sym_u32] = ACTIONS(916), + [anon_sym_i32] = ACTIONS(916), + [anon_sym_u64] = ACTIONS(916), + [anon_sym_i64] = ACTIONS(916), + [anon_sym_u128] = ACTIONS(916), + [anon_sym_i128] = ACTIONS(916), + [anon_sym_isize] = ACTIONS(916), + [anon_sym_usize] = ACTIONS(916), + [anon_sym_f32] = ACTIONS(916), + [anon_sym_f64] = ACTIONS(916), + [anon_sym_bool] = ACTIONS(916), + [anon_sym_str] = ACTIONS(916), + [anon_sym_char] = ACTIONS(916), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(916), + [anon_sym_COLON_COLON] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(916), + [anon_sym_DOT] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_POUND] = ACTIONS(914), + [anon_sym_PERCENT] = ACTIONS(916), + [anon_sym_CARET] = ACTIONS(916), + [anon_sym_LT] = ACTIONS(916), + [anon_sym_GT] = ACTIONS(916), + [anon_sym_PIPE] = ACTIONS(916), + [anon_sym_SQUOTE] = ACTIONS(916), + [anon_sym_as] = ACTIONS(916), + [anon_sym_async] = ACTIONS(916), + [anon_sym_break] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_enum] = ACTIONS(916), + [anon_sym_fn] = ACTIONS(916), + [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(916), + [anon_sym_impl] = ACTIONS(916), + [anon_sym_let] = ACTIONS(916), + [anon_sym_loop] = ACTIONS(916), + [anon_sym_match] = ACTIONS(916), + [anon_sym_mod] = ACTIONS(916), + [anon_sym_pub] = ACTIONS(916), + [anon_sym_return] = ACTIONS(916), + [anon_sym_static] = ACTIONS(916), + [anon_sym_struct] = ACTIONS(916), + [anon_sym_trait] = ACTIONS(916), + [anon_sym_type] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_unsafe] = ACTIONS(916), + [anon_sym_use] = ACTIONS(916), + [anon_sym_while] = ACTIONS(916), + [anon_sym_extern] = ACTIONS(916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT] = ACTIONS(916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(914), + [anon_sym_AMP_AMP] = ACTIONS(914), + [anon_sym_PIPE_PIPE] = ACTIONS(914), + [anon_sym_EQ_EQ] = ACTIONS(914), + [anon_sym_BANG_EQ] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_GT_GT] = ACTIONS(916), + [anon_sym_PLUS_EQ] = ACTIONS(914), + [anon_sym_DASH_EQ] = ACTIONS(914), + [anon_sym_STAR_EQ] = ACTIONS(914), + [anon_sym_SLASH_EQ] = ACTIONS(914), + [anon_sym_PERCENT_EQ] = ACTIONS(914), + [anon_sym_AMP_EQ] = ACTIONS(914), + [anon_sym_PIPE_EQ] = ACTIONS(914), + [anon_sym_CARET_EQ] = ACTIONS(914), + [anon_sym_LT_LT_EQ] = ACTIONS(914), + [anon_sym_GT_GT_EQ] = ACTIONS(914), + [anon_sym_yield] = ACTIONS(916), + [anon_sym_move] = ACTIONS(916), + [anon_sym_try] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(914), + [aux_sym_string_literal_token1] = ACTIONS(914), + [sym_char_literal] = ACTIONS(914), + [anon_sym_true] = ACTIONS(916), + [anon_sym_false] = ACTIONS(916), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(916), + [sym_super] = ACTIONS(916), + [sym_crate] = ACTIONS(916), + [sym_metavariable] = ACTIONS(914), + [sym_raw_string_literal] = ACTIONS(914), + [sym_float_literal] = ACTIONS(914), }, [186] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [187] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1689), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [188] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1401), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [189] = { - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(936), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_macro_rules_BANG] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_QMARK] = ACTIONS(934), - [anon_sym_u8] = ACTIONS(936), - [anon_sym_i8] = ACTIONS(936), - [anon_sym_u16] = ACTIONS(936), - [anon_sym_i16] = ACTIONS(936), - [anon_sym_u32] = ACTIONS(936), - [anon_sym_i32] = ACTIONS(936), - [anon_sym_u64] = ACTIONS(936), - [anon_sym_i64] = ACTIONS(936), - [anon_sym_u128] = ACTIONS(936), - [anon_sym_i128] = ACTIONS(936), - [anon_sym_isize] = ACTIONS(936), - [anon_sym_usize] = ACTIONS(936), - [anon_sym_f32] = ACTIONS(936), - [anon_sym_f64] = ACTIONS(936), - [anon_sym_bool] = ACTIONS(936), - [anon_sym_str] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_PERCENT] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_LT] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_SQUOTE] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_async] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_enum] = ACTIONS(936), - [anon_sym_fn] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_impl] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_loop] = ACTIONS(936), - [anon_sym_match] = ACTIONS(936), - [anon_sym_mod] = ACTIONS(936), - [anon_sym_pub] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_static] = ACTIONS(936), - [anon_sym_struct] = ACTIONS(936), - [anon_sym_trait] = ACTIONS(936), - [anon_sym_type] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_unsafe] = ACTIONS(936), - [anon_sym_use] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_extern] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(934), - [anon_sym_AMP_AMP] = ACTIONS(934), - [anon_sym_PIPE_PIPE] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_LT_LT] = ACTIONS(936), - [anon_sym_GT_GT] = ACTIONS(936), - [anon_sym_PLUS_EQ] = ACTIONS(934), - [anon_sym_DASH_EQ] = ACTIONS(934), - [anon_sym_STAR_EQ] = ACTIONS(934), - [anon_sym_SLASH_EQ] = ACTIONS(934), - [anon_sym_PERCENT_EQ] = ACTIONS(934), - [anon_sym_AMP_EQ] = ACTIONS(934), - [anon_sym_PIPE_EQ] = ACTIONS(934), - [anon_sym_CARET_EQ] = ACTIONS(934), - [anon_sym_LT_LT_EQ] = ACTIONS(934), - [anon_sym_GT_GT_EQ] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(936), - [anon_sym_move] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [sym_integer_literal] = ACTIONS(934), - [aux_sym_string_literal_token1] = ACTIONS(934), - [sym_char_literal] = ACTIONS(934), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(936), - [sym_super] = ACTIONS(936), - [sym_crate] = ACTIONS(936), - [sym_metavariable] = ACTIONS(934), - [sym_raw_string_literal] = ACTIONS(934), - [sym_float_literal] = ACTIONS(934), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(918), + [sym_identifier] = ACTIONS(920), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_macro_rules_BANG] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_u8] = ACTIONS(920), + [anon_sym_i8] = ACTIONS(920), + [anon_sym_u16] = ACTIONS(920), + [anon_sym_i16] = ACTIONS(920), + [anon_sym_u32] = ACTIONS(920), + [anon_sym_i32] = ACTIONS(920), + [anon_sym_u64] = ACTIONS(920), + [anon_sym_i64] = ACTIONS(920), + [anon_sym_u128] = ACTIONS(920), + [anon_sym_i128] = ACTIONS(920), + [anon_sym_isize] = ACTIONS(920), + [anon_sym_usize] = ACTIONS(920), + [anon_sym_f32] = ACTIONS(920), + [anon_sym_f64] = ACTIONS(920), + [anon_sym_bool] = ACTIONS(920), + [anon_sym_str] = ACTIONS(920), + [anon_sym_char] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(920), + [anon_sym_COLON_COLON] = ACTIONS(918), + [anon_sym_BANG] = ACTIONS(920), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(918), + [anon_sym_PERCENT] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_SQUOTE] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_async] = ACTIONS(920), + [anon_sym_break] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_enum] = ACTIONS(920), + [anon_sym_fn] = ACTIONS(920), + [anon_sym_for] = ACTIONS(920), + [anon_sym_if] = ACTIONS(920), + [anon_sym_impl] = ACTIONS(920), + [anon_sym_let] = ACTIONS(920), + [anon_sym_loop] = ACTIONS(920), + [anon_sym_match] = ACTIONS(920), + [anon_sym_mod] = ACTIONS(920), + [anon_sym_pub] = ACTIONS(920), + [anon_sym_return] = ACTIONS(920), + [anon_sym_static] = ACTIONS(920), + [anon_sym_struct] = ACTIONS(920), + [anon_sym_trait] = ACTIONS(920), + [anon_sym_type] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_unsafe] = ACTIONS(920), + [anon_sym_use] = ACTIONS(920), + [anon_sym_while] = ACTIONS(920), + [anon_sym_extern] = ACTIONS(920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_LT_LT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(920), + [anon_sym_PLUS_EQ] = ACTIONS(918), + [anon_sym_DASH_EQ] = ACTIONS(918), + [anon_sym_STAR_EQ] = ACTIONS(918), + [anon_sym_SLASH_EQ] = ACTIONS(918), + [anon_sym_PERCENT_EQ] = ACTIONS(918), + [anon_sym_AMP_EQ] = ACTIONS(918), + [anon_sym_PIPE_EQ] = ACTIONS(918), + [anon_sym_CARET_EQ] = ACTIONS(918), + [anon_sym_LT_LT_EQ] = ACTIONS(918), + [anon_sym_GT_GT_EQ] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(920), + [anon_sym_move] = ACTIONS(920), + [anon_sym_try] = ACTIONS(920), + [sym_integer_literal] = ACTIONS(918), + [aux_sym_string_literal_token1] = ACTIONS(918), + [sym_char_literal] = ACTIONS(918), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(920), + [sym_super] = ACTIONS(920), + [sym_crate] = ACTIONS(920), + [sym_metavariable] = ACTIONS(918), + [sym_raw_string_literal] = ACTIONS(918), + [sym_float_literal] = ACTIONS(918), }, [190] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(940), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_macro_rules_BANG] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_QMARK] = ACTIONS(938), - [anon_sym_u8] = ACTIONS(940), - [anon_sym_i8] = ACTIONS(940), - [anon_sym_u16] = ACTIONS(940), - [anon_sym_i16] = ACTIONS(940), - [anon_sym_u32] = ACTIONS(940), - [anon_sym_i32] = ACTIONS(940), - [anon_sym_u64] = ACTIONS(940), - [anon_sym_i64] = ACTIONS(940), - [anon_sym_u128] = ACTIONS(940), - [anon_sym_i128] = ACTIONS(940), - [anon_sym_isize] = ACTIONS(940), - [anon_sym_usize] = ACTIONS(940), - [anon_sym_f32] = ACTIONS(940), - [anon_sym_f64] = ACTIONS(940), - [anon_sym_bool] = ACTIONS(940), - [anon_sym_str] = ACTIONS(940), - [anon_sym_char] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(940), - [anon_sym_COLON_COLON] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_DOT] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_SQUOTE] = ACTIONS(940), - [anon_sym_as] = ACTIONS(940), - [anon_sym_async] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_impl] = ACTIONS(940), - [anon_sym_let] = ACTIONS(940), - [anon_sym_loop] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_mod] = ACTIONS(940), - [anon_sym_pub] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_static] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_trait] = ACTIONS(940), - [anon_sym_type] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_unsafe] = ACTIONS(940), - [anon_sym_use] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(938), - [anon_sym_PIPE_PIPE] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_GT_GT] = ACTIONS(940), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PERCENT_EQ] = ACTIONS(938), - [anon_sym_AMP_EQ] = ACTIONS(938), - [anon_sym_PIPE_EQ] = ACTIONS(938), - [anon_sym_CARET_EQ] = ACTIONS(938), - [anon_sym_LT_LT_EQ] = ACTIONS(938), - [anon_sym_GT_GT_EQ] = ACTIONS(938), - [anon_sym_yield] = ACTIONS(940), - [anon_sym_move] = ACTIONS(940), - [anon_sym_try] = ACTIONS(940), - [sym_integer_literal] = ACTIONS(938), - [aux_sym_string_literal_token1] = ACTIONS(938), - [sym_char_literal] = ACTIONS(938), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = ACTIONS(940), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(940), - [sym_super] = ACTIONS(940), - [sym_crate] = ACTIONS(940), - [sym_metavariable] = ACTIONS(938), - [sym_raw_string_literal] = ACTIONS(938), - [sym_float_literal] = ACTIONS(938), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [191] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1401), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [192] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1534), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [ts_builtin_sym_end] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_macro_rules_BANG] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_QMARK] = ACTIONS(922), + [anon_sym_u8] = ACTIONS(924), + [anon_sym_i8] = ACTIONS(924), + [anon_sym_u16] = ACTIONS(924), + [anon_sym_i16] = ACTIONS(924), + [anon_sym_u32] = ACTIONS(924), + [anon_sym_i32] = ACTIONS(924), + [anon_sym_u64] = ACTIONS(924), + [anon_sym_i64] = ACTIONS(924), + [anon_sym_u128] = ACTIONS(924), + [anon_sym_i128] = ACTIONS(924), + [anon_sym_isize] = ACTIONS(924), + [anon_sym_usize] = ACTIONS(924), + [anon_sym_f32] = ACTIONS(924), + [anon_sym_f64] = ACTIONS(924), + [anon_sym_bool] = ACTIONS(924), + [anon_sym_str] = ACTIONS(924), + [anon_sym_char] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(924), + [anon_sym_COLON_COLON] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_DOT] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_POUND] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_PIPE] = ACTIONS(924), + [anon_sym_SQUOTE] = ACTIONS(924), + [anon_sym_as] = ACTIONS(924), + [anon_sym_async] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_fn] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_impl] = ACTIONS(924), + [anon_sym_let] = ACTIONS(924), + [anon_sym_loop] = ACTIONS(924), + [anon_sym_match] = ACTIONS(924), + [anon_sym_mod] = ACTIONS(924), + [anon_sym_pub] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_static] = ACTIONS(924), + [anon_sym_struct] = ACTIONS(924), + [anon_sym_trait] = ACTIONS(924), + [anon_sym_type] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_unsafe] = ACTIONS(924), + [anon_sym_use] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_extern] = ACTIONS(924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT] = ACTIONS(924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(922), + [anon_sym_PIPE_PIPE] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_LT_LT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(924), + [anon_sym_PLUS_EQ] = ACTIONS(922), + [anon_sym_DASH_EQ] = ACTIONS(922), + [anon_sym_STAR_EQ] = ACTIONS(922), + [anon_sym_SLASH_EQ] = ACTIONS(922), + [anon_sym_PERCENT_EQ] = ACTIONS(922), + [anon_sym_AMP_EQ] = ACTIONS(922), + [anon_sym_PIPE_EQ] = ACTIONS(922), + [anon_sym_CARET_EQ] = ACTIONS(922), + [anon_sym_LT_LT_EQ] = ACTIONS(922), + [anon_sym_GT_GT_EQ] = ACTIONS(922), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_move] = ACTIONS(924), + [anon_sym_try] = ACTIONS(924), + [sym_integer_literal] = ACTIONS(922), + [aux_sym_string_literal_token1] = ACTIONS(922), + [sym_char_literal] = ACTIONS(922), + [anon_sym_true] = ACTIONS(924), + [anon_sym_false] = ACTIONS(924), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(924), + [sym_super] = ACTIONS(924), + [sym_crate] = ACTIONS(924), + [sym_metavariable] = ACTIONS(922), + [sym_raw_string_literal] = ACTIONS(922), + [sym_float_literal] = ACTIONS(922), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_macro_rules_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_QMARK] = ACTIONS(942), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_COLON_COLON] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(944), - [anon_sym_CARET] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_as] = ACTIONS(944), - [anon_sym_async] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_fn] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_impl] = ACTIONS(944), - [anon_sym_let] = ACTIONS(944), - [anon_sym_loop] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_mod] = ACTIONS(944), - [anon_sym_pub] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_static] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_trait] = ACTIONS(944), - [anon_sym_type] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_unsafe] = ACTIONS(944), - [anon_sym_use] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(942), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_EQ_EQ] = ACTIONS(942), - [anon_sym_BANG_EQ] = ACTIONS(942), - [anon_sym_LT_EQ] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(942), - [anon_sym_LT_LT] = ACTIONS(944), - [anon_sym_GT_GT] = ACTIONS(944), - [anon_sym_PLUS_EQ] = ACTIONS(942), - [anon_sym_DASH_EQ] = ACTIONS(942), - [anon_sym_STAR_EQ] = ACTIONS(942), - [anon_sym_SLASH_EQ] = ACTIONS(942), - [anon_sym_PERCENT_EQ] = ACTIONS(942), - [anon_sym_AMP_EQ] = ACTIONS(942), - [anon_sym_PIPE_EQ] = ACTIONS(942), - [anon_sym_CARET_EQ] = ACTIONS(942), - [anon_sym_LT_LT_EQ] = ACTIONS(942), - [anon_sym_GT_GT_EQ] = ACTIONS(942), - [anon_sym_yield] = ACTIONS(944), - [anon_sym_move] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [sym_integer_literal] = ACTIONS(942), - [aux_sym_string_literal_token1] = ACTIONS(942), - [sym_char_literal] = ACTIONS(942), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(944), - [sym_super] = ACTIONS(944), - [sym_crate] = ACTIONS(944), - [sym_metavariable] = ACTIONS(942), - [sym_raw_string_literal] = ACTIONS(942), - [sym_float_literal] = ACTIONS(942), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [194] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(948), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_macro_rules_BANG] = ACTIONS(946), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_QMARK] = ACTIONS(946), - [anon_sym_u8] = ACTIONS(948), - [anon_sym_i8] = ACTIONS(948), - [anon_sym_u16] = ACTIONS(948), - [anon_sym_i16] = ACTIONS(948), - [anon_sym_u32] = ACTIONS(948), - [anon_sym_i32] = ACTIONS(948), - [anon_sym_u64] = ACTIONS(948), - [anon_sym_i64] = ACTIONS(948), - [anon_sym_u128] = ACTIONS(948), - [anon_sym_i128] = ACTIONS(948), - [anon_sym_isize] = ACTIONS(948), - [anon_sym_usize] = ACTIONS(948), - [anon_sym_f32] = ACTIONS(948), - [anon_sym_f64] = ACTIONS(948), - [anon_sym_bool] = ACTIONS(948), - [anon_sym_str] = ACTIONS(948), - [anon_sym_char] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_COLON_COLON] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(946), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_SQUOTE] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_async] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_fn] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_impl] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_mod] = ACTIONS(948), - [anon_sym_pub] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_static] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_trait] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_unsafe] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(946), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(946), - [anon_sym_EQ_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(946), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_LT_LT] = ACTIONS(948), - [anon_sym_GT_GT] = ACTIONS(948), - [anon_sym_PLUS_EQ] = ACTIONS(946), - [anon_sym_DASH_EQ] = ACTIONS(946), - [anon_sym_STAR_EQ] = ACTIONS(946), - [anon_sym_SLASH_EQ] = ACTIONS(946), - [anon_sym_PERCENT_EQ] = ACTIONS(946), - [anon_sym_AMP_EQ] = ACTIONS(946), - [anon_sym_PIPE_EQ] = ACTIONS(946), - [anon_sym_CARET_EQ] = ACTIONS(946), - [anon_sym_LT_LT_EQ] = ACTIONS(946), - [anon_sym_GT_GT_EQ] = ACTIONS(946), - [anon_sym_yield] = ACTIONS(948), - [anon_sym_move] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [sym_integer_literal] = ACTIONS(946), - [aux_sym_string_literal_token1] = ACTIONS(946), - [sym_char_literal] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(948), - [sym_super] = ACTIONS(948), - [sym_crate] = ACTIONS(948), - [sym_metavariable] = ACTIONS(946), - [sym_raw_string_literal] = ACTIONS(946), - [sym_float_literal] = ACTIONS(946), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [195] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [196] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [197] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [198] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_macro_rules_BANG] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_QMARK] = ACTIONS(926), + [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_SLASH] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_DOT] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(928), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_as] = ACTIONS(928), + [anon_sym_async] = 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_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_while] = ACTIONS(928), + [anon_sym_extern] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(926), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [anon_sym_AMP_AMP] = ACTIONS(926), + [anon_sym_PIPE_PIPE] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(928), + [anon_sym_GT_GT] = ACTIONS(928), + [anon_sym_PLUS_EQ] = ACTIONS(926), + [anon_sym_DASH_EQ] = ACTIONS(926), + [anon_sym_STAR_EQ] = ACTIONS(926), + [anon_sym_SLASH_EQ] = ACTIONS(926), + [anon_sym_PERCENT_EQ] = ACTIONS(926), + [anon_sym_AMP_EQ] = ACTIONS(926), + [anon_sym_PIPE_EQ] = ACTIONS(926), + [anon_sym_CARET_EQ] = ACTIONS(926), + [anon_sym_LT_LT_EQ] = ACTIONS(926), + [anon_sym_GT_GT_EQ] = ACTIONS(926), + [anon_sym_yield] = ACTIONS(928), + [anon_sym_move] = ACTIONS(928), + [anon_sym_try] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(926), + [aux_sym_string_literal_token1] = ACTIONS(926), + [sym_char_literal] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(928), + [sym_super] = ACTIONS(928), + [sym_crate] = ACTIONS(928), + [sym_metavariable] = ACTIONS(926), + [sym_raw_string_literal] = ACTIONS(926), + [sym_float_literal] = ACTIONS(926), + }, + [199] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [200] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [201] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [202] = { + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + }, + [203] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(475), + [sym_match_expression] = STATE(475), + [sym_while_expression] = STATE(475), + [sym_loop_expression] = STATE(475), + [sym_for_expression] = STATE(475), + [sym_const_block] = STATE(475), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3484), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(475), + [sym_async_block] = STATE(475), + [sym_try_block] = STATE(475), + [sym_block] = STATE(475), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(932), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(936), + [anon_sym_if] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(940), + [anon_sym_match] = ACTIONS(942), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(944), + [anon_sym_while] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(948), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [204] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), [ts_builtin_sym_end] = ACTIONS(950), [sym_identifier] = ACTIONS(952), [anon_sym_SEMI] = ACTIONS(950), @@ -41553,658 +43102,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(950), [anon_sym_true] = ACTIONS(952), [anon_sym_false] = ACTIONS(952), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(952), [sym_super] = ACTIONS(952), [sym_crate] = ACTIONS(952), [sym_metavariable] = ACTIONS(950), [sym_raw_string_literal] = ACTIONS(950), [sym_float_literal] = ACTIONS(950), - [sym_block_comment] = ACTIONS(3), - }, - [197] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [198] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [199] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [200] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), }, - [201] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1384), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [205] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [202] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [206] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [203] = { + [207] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), [ts_builtin_sym_end] = ACTIONS(954), [sym_identifier] = ACTIONS(956), [anon_sym_SEMI] = ACTIONS(954), @@ -42302,16 +43429,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(954), [anon_sym_true] = ACTIONS(956), [anon_sym_false] = ACTIONS(956), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(956), [sym_super] = ACTIONS(956), [sym_crate] = ACTIONS(956), [sym_metavariable] = ACTIONS(954), [sym_raw_string_literal] = ACTIONS(954), [sym_float_literal] = ACTIONS(954), - [sym_block_comment] = ACTIONS(3), }, - [204] = { + [208] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [209] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [210] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [211] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1428), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [212] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [213] = { + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), [ts_builtin_sym_end] = ACTIONS(958), [sym_identifier] = ACTIONS(960), [anon_sym_SEMI] = ACTIONS(958), @@ -42409,10251 +44083,9353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(958), [anon_sym_true] = ACTIONS(960), [anon_sym_false] = ACTIONS(960), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(960), [sym_super] = ACTIONS(960), [sym_crate] = ACTIONS(960), [sym_metavariable] = ACTIONS(958), [sym_raw_string_literal] = ACTIONS(958), [sym_float_literal] = ACTIONS(958), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [207] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [208] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(726), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1731), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1520), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1536), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(460), - [sym_match_expression] = STATE(460), - [sym_while_expression] = STATE(460), - [sym_loop_expression] = STATE(460), - [sym_for_expression] = STATE(460), - [sym_const_block] = STATE(460), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3443), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(460), - [sym_async_block] = STATE(460), - [sym_try_block] = STATE(460), - [sym_block] = STATE(460), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(912), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(916), - [anon_sym_if] = ACTIONS(918), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_match] = ACTIONS(922), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_while] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(928), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), - }, - [213] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), }, [214] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(483), + [sym_match_expression] = STATE(483), + [sym_while_expression] = STATE(483), + [sym_loop_expression] = STATE(483), + [sym_for_expression] = STATE(483), + [sym_const_block] = STATE(483), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3484), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(483), + [sym_async_block] = STATE(483), + [sym_try_block] = STATE(483), + [sym_block] = STATE(483), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(932), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(936), + [anon_sym_if] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(940), + [anon_sym_match] = ACTIONS(942), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(944), + [anon_sym_while] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(948), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [215] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [216] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1531), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [217] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [218] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(464), - [sym_match_expression] = STATE(464), - [sym_while_expression] = STATE(464), - [sym_loop_expression] = STATE(464), - [sym_for_expression] = STATE(464), - [sym_const_block] = STATE(464), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3443), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(464), - [sym_async_block] = STATE(464), - [sym_try_block] = STATE(464), - [sym_block] = STATE(464), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(912), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(916), - [anon_sym_if] = ACTIONS(918), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_match] = ACTIONS(922), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_while] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(928), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [219] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [220] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(962), + [sym_identifier] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(962), + [anon_sym_macro_rules_BANG] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(962), + [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_SLASH] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_PERCENT] = ACTIONS(964), + [anon_sym_CARET] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_async] = 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_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_while] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), + [anon_sym_STAR_EQ] = ACTIONS(962), + [anon_sym_SLASH_EQ] = ACTIONS(962), + [anon_sym_PERCENT_EQ] = ACTIONS(962), + [anon_sym_AMP_EQ] = ACTIONS(962), + [anon_sym_PIPE_EQ] = ACTIONS(962), + [anon_sym_CARET_EQ] = ACTIONS(962), + [anon_sym_LT_LT_EQ] = ACTIONS(962), + [anon_sym_GT_GT_EQ] = ACTIONS(962), + [anon_sym_yield] = ACTIONS(964), + [anon_sym_move] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [sym_integer_literal] = ACTIONS(962), + [aux_sym_string_literal_token1] = ACTIONS(962), + [sym_char_literal] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(964), + [sym_super] = ACTIONS(964), + [sym_crate] = ACTIONS(964), + [sym_metavariable] = ACTIONS(962), + [sym_raw_string_literal] = ACTIONS(962), + [sym_float_literal] = ACTIONS(962), }, [221] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1812), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [222] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [223] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(964), - [sym_identifier] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_macro_rules_BANG] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_u8] = ACTIONS(966), - [anon_sym_i8] = ACTIONS(966), - [anon_sym_u16] = ACTIONS(966), - [anon_sym_i16] = ACTIONS(966), - [anon_sym_u32] = ACTIONS(966), - [anon_sym_i32] = ACTIONS(966), - [anon_sym_u64] = ACTIONS(966), - [anon_sym_i64] = ACTIONS(966), - [anon_sym_u128] = ACTIONS(966), - [anon_sym_i128] = ACTIONS(966), - [anon_sym_isize] = ACTIONS(966), - [anon_sym_usize] = ACTIONS(966), - [anon_sym_f32] = ACTIONS(966), - [anon_sym_f64] = ACTIONS(966), - [anon_sym_bool] = ACTIONS(966), - [anon_sym_str] = ACTIONS(966), - [anon_sym_char] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(964), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(966), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_async] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_fn] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_impl] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_mod] = ACTIONS(966), - [anon_sym_pub] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_static] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_trait] = ACTIONS(966), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_unsafe] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_extern] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PERCENT_EQ] = ACTIONS(964), - [anon_sym_AMP_EQ] = ACTIONS(964), - [anon_sym_PIPE_EQ] = ACTIONS(964), - [anon_sym_CARET_EQ] = ACTIONS(964), - [anon_sym_LT_LT_EQ] = ACTIONS(964), - [anon_sym_GT_GT_EQ] = ACTIONS(964), - [anon_sym_yield] = ACTIONS(966), - [anon_sym_move] = ACTIONS(966), - [anon_sym_try] = ACTIONS(966), - [sym_integer_literal] = ACTIONS(964), - [aux_sym_string_literal_token1] = ACTIONS(964), - [sym_char_literal] = ACTIONS(964), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(966), - [sym_super] = ACTIONS(966), - [sym_crate] = ACTIONS(966), - [sym_metavariable] = ACTIONS(964), - [sym_raw_string_literal] = ACTIONS(964), - [sym_float_literal] = ACTIONS(964), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [225] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [ts_builtin_sym_end] = ACTIONS(966), + [sym_identifier] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_macro_rules_BANG] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(966), + [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_SLASH] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_async] = 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_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_while] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [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_AMP_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_yield] = ACTIONS(968), + [anon_sym_move] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(966), + [aux_sym_string_literal_token1] = ACTIONS(966), + [sym_char_literal] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(968), + [sym_metavariable] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(966), + [sym_float_literal] = ACTIONS(966), }, [226] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [227] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [228] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [229] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_identifier] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_macro_rules_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_u8] = ACTIONS(970), - [anon_sym_i8] = ACTIONS(970), - [anon_sym_u16] = ACTIONS(970), - [anon_sym_i16] = ACTIONS(970), - [anon_sym_u32] = ACTIONS(970), - [anon_sym_i32] = ACTIONS(970), - [anon_sym_u64] = ACTIONS(970), - [anon_sym_i64] = ACTIONS(970), - [anon_sym_u128] = ACTIONS(970), - [anon_sym_i128] = ACTIONS(970), - [anon_sym_isize] = ACTIONS(970), - [anon_sym_usize] = ACTIONS(970), - [anon_sym_f32] = ACTIONS(970), - [anon_sym_f64] = ACTIONS(970), - [anon_sym_bool] = ACTIONS(970), - [anon_sym_str] = ACTIONS(970), - [anon_sym_char] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_COLON_COLON] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(968), - [anon_sym_PERCENT] = ACTIONS(970), - [anon_sym_CARET] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_async] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_fn] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_impl] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_pub] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_static] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_trait] = ACTIONS(970), - [anon_sym_type] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_AMP_AMP] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PERCENT_EQ] = ACTIONS(968), - [anon_sym_AMP_EQ] = ACTIONS(968), - [anon_sym_PIPE_EQ] = ACTIONS(968), - [anon_sym_CARET_EQ] = ACTIONS(968), - [anon_sym_LT_LT_EQ] = ACTIONS(968), - [anon_sym_GT_GT_EQ] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_move] = ACTIONS(970), - [anon_sym_try] = ACTIONS(970), - [sym_integer_literal] = ACTIONS(968), - [aux_sym_string_literal_token1] = ACTIONS(968), - [sym_char_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(970), - [sym_super] = ACTIONS(970), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(968), - [sym_raw_string_literal] = ACTIONS(968), - [sym_float_literal] = ACTIONS(968), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [231] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [ts_builtin_sym_end] = ACTIONS(970), + [sym_identifier] = ACTIONS(972), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_macro_rules_BANG] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_u8] = ACTIONS(972), + [anon_sym_i8] = ACTIONS(972), + [anon_sym_u16] = ACTIONS(972), + [anon_sym_i16] = ACTIONS(972), + [anon_sym_u32] = ACTIONS(972), + [anon_sym_i32] = ACTIONS(972), + [anon_sym_u64] = ACTIONS(972), + [anon_sym_i64] = ACTIONS(972), + [anon_sym_u128] = ACTIONS(972), + [anon_sym_i128] = ACTIONS(972), + [anon_sym_isize] = ACTIONS(972), + [anon_sym_usize] = ACTIONS(972), + [anon_sym_f32] = ACTIONS(972), + [anon_sym_f64] = ACTIONS(972), + [anon_sym_bool] = ACTIONS(972), + [anon_sym_str] = ACTIONS(972), + [anon_sym_char] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_COLON_COLON] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_SQUOTE] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_async] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_enum] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_impl] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_mod] = ACTIONS(972), + [anon_sym_pub] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_static] = ACTIONS(972), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_trait] = ACTIONS(972), + [anon_sym_type] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_unsafe] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [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_AMP_EQ] = ACTIONS(970), + [anon_sym_PIPE_EQ] = ACTIONS(970), + [anon_sym_CARET_EQ] = ACTIONS(970), + [anon_sym_LT_LT_EQ] = ACTIONS(970), + [anon_sym_GT_GT_EQ] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(972), + [anon_sym_move] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [sym_integer_literal] = ACTIONS(970), + [aux_sym_string_literal_token1] = ACTIONS(970), + [sym_char_literal] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(972), + [sym_super] = ACTIONS(972), + [sym_crate] = ACTIONS(972), + [sym_metavariable] = ACTIONS(970), + [sym_raw_string_literal] = ACTIONS(970), + [sym_float_literal] = ACTIONS(970), }, [232] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_macro_rules_BANG] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(976), + [anon_sym_i8] = ACTIONS(976), + [anon_sym_u16] = ACTIONS(976), + [anon_sym_i16] = ACTIONS(976), + [anon_sym_u32] = ACTIONS(976), + [anon_sym_i32] = ACTIONS(976), + [anon_sym_u64] = ACTIONS(976), + [anon_sym_i64] = ACTIONS(976), + [anon_sym_u128] = ACTIONS(976), + [anon_sym_i128] = ACTIONS(976), + [anon_sym_isize] = ACTIONS(976), + [anon_sym_usize] = ACTIONS(976), + [anon_sym_f32] = ACTIONS(976), + [anon_sym_f64] = ACTIONS(976), + [anon_sym_bool] = ACTIONS(976), + [anon_sym_str] = ACTIONS(976), + [anon_sym_char] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_COLON_COLON] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_PERCENT] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(976), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_async] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_fn] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_impl] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_mod] = ACTIONS(976), + [anon_sym_pub] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_static] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_trait] = ACTIONS(976), + [anon_sym_type] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_unsafe] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_AMP_AMP] = ACTIONS(974), + [anon_sym_PIPE_PIPE] = ACTIONS(974), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(976), + [anon_sym_GT_GT] = ACTIONS(976), + [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_AMP_EQ] = ACTIONS(974), + [anon_sym_PIPE_EQ] = ACTIONS(974), + [anon_sym_CARET_EQ] = ACTIONS(974), + [anon_sym_LT_LT_EQ] = ACTIONS(974), + [anon_sym_GT_GT_EQ] = ACTIONS(974), + [anon_sym_yield] = ACTIONS(976), + [anon_sym_move] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [sym_integer_literal] = ACTIONS(974), + [aux_sym_string_literal_token1] = ACTIONS(974), + [sym_char_literal] = ACTIONS(974), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(976), + [sym_super] = ACTIONS(976), + [sym_crate] = ACTIONS(976), + [sym_metavariable] = ACTIONS(974), + [sym_raw_string_literal] = ACTIONS(974), + [sym_float_literal] = ACTIONS(974), }, [233] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1411), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [234] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [235] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [236] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1443), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [237] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1411), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [238] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [239] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1450), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(670), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [240] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [241] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1462), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [242] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1453), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [243] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1444), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [244] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1446), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1562), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [245] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [246] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1454), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [247] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [248] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1445), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [249] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1457), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [250] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1458), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [251] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1464), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1561), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_macro_rules_BANG] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(972), - [anon_sym_u8] = ACTIONS(974), - [anon_sym_i8] = ACTIONS(974), - [anon_sym_u16] = ACTIONS(974), - [anon_sym_i16] = ACTIONS(974), - [anon_sym_u32] = ACTIONS(974), - [anon_sym_i32] = ACTIONS(974), - [anon_sym_u64] = ACTIONS(974), - [anon_sym_i64] = ACTIONS(974), - [anon_sym_u128] = ACTIONS(974), - [anon_sym_i128] = ACTIONS(974), - [anon_sym_isize] = ACTIONS(974), - [anon_sym_usize] = ACTIONS(974), - [anon_sym_f32] = ACTIONS(974), - [anon_sym_f64] = ACTIONS(974), - [anon_sym_bool] = ACTIONS(974), - [anon_sym_str] = ACTIONS(974), - [anon_sym_char] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_COLON_COLON] = ACTIONS(972), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_async] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_fn] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_impl] = ACTIONS(974), - [anon_sym_let] = ACTIONS(974), - [anon_sym_loop] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_mod] = ACTIONS(974), - [anon_sym_pub] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_static] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_trait] = ACTIONS(974), - [anon_sym_type] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_unsafe] = ACTIONS(974), - [anon_sym_use] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PERCENT_EQ] = ACTIONS(972), - [anon_sym_AMP_EQ] = ACTIONS(972), - [anon_sym_PIPE_EQ] = ACTIONS(972), - [anon_sym_CARET_EQ] = ACTIONS(972), - [anon_sym_LT_LT_EQ] = ACTIONS(972), - [anon_sym_GT_GT_EQ] = ACTIONS(972), - [anon_sym_yield] = ACTIONS(974), - [anon_sym_move] = ACTIONS(974), - [anon_sym_try] = ACTIONS(974), - [sym_integer_literal] = ACTIONS(972), - [aux_sym_string_literal_token1] = ACTIONS(972), - [sym_char_literal] = ACTIONS(972), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(974), - [sym_super] = ACTIONS(974), - [sym_crate] = ACTIONS(974), - [sym_metavariable] = ACTIONS(972), - [sym_raw_string_literal] = ACTIONS(972), - [sym_float_literal] = ACTIONS(972), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [253] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [254] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [255] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1462), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [256] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1428), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_macro_rules_BANG] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_QMARK] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(978), - [anon_sym_i8] = ACTIONS(978), - [anon_sym_u16] = ACTIONS(978), - [anon_sym_i16] = ACTIONS(978), - [anon_sym_u32] = ACTIONS(978), - [anon_sym_i32] = ACTIONS(978), - [anon_sym_u64] = ACTIONS(978), - [anon_sym_i64] = ACTIONS(978), - [anon_sym_u128] = ACTIONS(978), - [anon_sym_i128] = ACTIONS(978), - [anon_sym_isize] = ACTIONS(978), - [anon_sym_usize] = ACTIONS(978), - [anon_sym_f32] = ACTIONS(978), - [anon_sym_f64] = ACTIONS(978), - [anon_sym_bool] = ACTIONS(978), - [anon_sym_str] = ACTIONS(978), - [anon_sym_char] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(976), - [anon_sym_PERCENT] = ACTIONS(900), - [anon_sym_CARET] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_as] = ACTIONS(900), - [anon_sym_async] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_impl] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_mod] = ACTIONS(978), - [anon_sym_pub] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_static] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_trait] = ACTIONS(978), - [anon_sym_type] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_unsafe] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(900), - [anon_sym_GT_GT] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(898), - [anon_sym_DASH_EQ] = ACTIONS(898), - [anon_sym_STAR_EQ] = ACTIONS(898), - [anon_sym_SLASH_EQ] = ACTIONS(898), - [anon_sym_PERCENT_EQ] = ACTIONS(898), - [anon_sym_AMP_EQ] = ACTIONS(898), - [anon_sym_PIPE_EQ] = ACTIONS(898), - [anon_sym_CARET_EQ] = ACTIONS(898), - [anon_sym_LT_LT_EQ] = ACTIONS(898), - [anon_sym_GT_GT_EQ] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_move] = ACTIONS(978), - [anon_sym_try] = ACTIONS(978), - [sym_integer_literal] = ACTIONS(976), - [aux_sym_string_literal_token1] = ACTIONS(976), - [sym_char_literal] = ACTIONS(976), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(978), - [sym_metavariable] = ACTIONS(976), - [sym_raw_string_literal] = ACTIONS(976), - [sym_float_literal] = ACTIONS(976), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [258] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1468), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(980), - [sym_identifier] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_macro_rules_BANG] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_QMARK] = ACTIONS(980), - [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_SLASH] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_COLON_COLON] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(980), - [anon_sym_PERCENT] = ACTIONS(982), - [anon_sym_CARET] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_async] = 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_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_while] = ACTIONS(982), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PERCENT_EQ] = ACTIONS(980), - [anon_sym_AMP_EQ] = ACTIONS(980), - [anon_sym_PIPE_EQ] = ACTIONS(980), - [anon_sym_CARET_EQ] = ACTIONS(980), - [anon_sym_LT_LT_EQ] = ACTIONS(980), - [anon_sym_GT_GT_EQ] = ACTIONS(980), - [anon_sym_yield] = ACTIONS(982), - [anon_sym_move] = ACTIONS(982), - [anon_sym_try] = ACTIONS(982), - [sym_integer_literal] = ACTIONS(980), - [aux_sym_string_literal_token1] = ACTIONS(980), - [sym_char_literal] = ACTIONS(980), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(982), - [sym_super] = ACTIONS(982), - [sym_crate] = ACTIONS(982), - [sym_metavariable] = ACTIONS(980), - [sym_raw_string_literal] = ACTIONS(980), - [sym_float_literal] = ACTIONS(980), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [260] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [261] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(483), + [sym_match_expression] = STATE(483), + [sym_while_expression] = STATE(483), + [sym_loop_expression] = STATE(483), + [sym_for_expression] = STATE(483), + [sym_const_block] = STATE(483), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3484), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(483), + [sym_async_block] = STATE(483), + [sym_try_block] = STATE(483), + [sym_block] = STATE(483), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(932), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(936), + [anon_sym_if] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(940), + [anon_sym_match] = ACTIONS(942), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(944), + [anon_sym_while] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(948), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [262] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1474), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [263] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1475), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [264] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_macro_rules_BANG] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_u8] = ACTIONS(980), + [anon_sym_i8] = ACTIONS(980), + [anon_sym_u16] = ACTIONS(980), + [anon_sym_i16] = ACTIONS(980), + [anon_sym_u32] = ACTIONS(980), + [anon_sym_i32] = ACTIONS(980), + [anon_sym_u64] = ACTIONS(980), + [anon_sym_i64] = ACTIONS(980), + [anon_sym_u128] = ACTIONS(980), + [anon_sym_i128] = ACTIONS(980), + [anon_sym_isize] = ACTIONS(980), + [anon_sym_usize] = ACTIONS(980), + [anon_sym_f32] = ACTIONS(980), + [anon_sym_f64] = ACTIONS(980), + [anon_sym_bool] = ACTIONS(980), + [anon_sym_str] = ACTIONS(980), + [anon_sym_char] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_COLON_COLON] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(978), + [anon_sym_PERCENT] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_SQUOTE] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_async] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_fn] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_impl] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_pub] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_trait] = ACTIONS(980), + [anon_sym_type] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_unsafe] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_EQ_EQ] = ACTIONS(978), + [anon_sym_BANG_EQ] = ACTIONS(978), + [anon_sym_LT_EQ] = ACTIONS(978), + [anon_sym_GT_EQ] = ACTIONS(978), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PERCENT_EQ] = ACTIONS(978), + [anon_sym_AMP_EQ] = ACTIONS(978), + [anon_sym_PIPE_EQ] = ACTIONS(978), + [anon_sym_CARET_EQ] = ACTIONS(978), + [anon_sym_LT_LT_EQ] = ACTIONS(978), + [anon_sym_GT_GT_EQ] = ACTIONS(978), + [anon_sym_yield] = ACTIONS(980), + [anon_sym_move] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [sym_integer_literal] = ACTIONS(978), + [aux_sym_string_literal_token1] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(980), + [sym_super] = ACTIONS(980), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(978), + [sym_raw_string_literal] = ACTIONS(978), + [sym_float_literal] = ACTIONS(978), }, [265] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [266] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [267] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1479), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [268] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1481), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [269] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1482), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [270] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1729), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1464), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [271] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [272] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [273] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1683), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [274] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_macro_rules_BANG] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(982), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u128] = ACTIONS(984), + [anon_sym_i128] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_str] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(982), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_async] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_fn] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_impl] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_pub] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_trait] = ACTIONS(984), + [anon_sym_type] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsafe] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE_PIPE] = ACTIONS(982), + [anon_sym_EQ_EQ] = ACTIONS(982), + [anon_sym_BANG_EQ] = ACTIONS(982), + [anon_sym_LT_EQ] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(982), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PERCENT_EQ] = ACTIONS(982), + [anon_sym_AMP_EQ] = ACTIONS(982), + [anon_sym_PIPE_EQ] = ACTIONS(982), + [anon_sym_CARET_EQ] = ACTIONS(982), + [anon_sym_LT_LT_EQ] = ACTIONS(982), + [anon_sym_GT_GT_EQ] = ACTIONS(982), + [anon_sym_yield] = ACTIONS(984), + [anon_sym_move] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [sym_integer_literal] = ACTIONS(982), + [aux_sym_string_literal_token1] = ACTIONS(982), + [sym_char_literal] = ACTIONS(982), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(984), + [sym_super] = ACTIONS(984), + [sym_crate] = ACTIONS(984), + [sym_metavariable] = ACTIONS(982), + [sym_raw_string_literal] = ACTIONS(982), + [sym_float_literal] = ACTIONS(982), }, [275] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [276] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [277] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [278] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [279] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [280] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [281] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1454), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [282] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [283] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [284] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_macro_rules_BANG] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_u8] = ACTIONS(988), + [anon_sym_i8] = ACTIONS(988), + [anon_sym_u16] = ACTIONS(988), + [anon_sym_i16] = ACTIONS(988), + [anon_sym_u32] = ACTIONS(988), + [anon_sym_i32] = ACTIONS(988), + [anon_sym_u64] = ACTIONS(988), + [anon_sym_i64] = ACTIONS(988), + [anon_sym_u128] = ACTIONS(988), + [anon_sym_i128] = ACTIONS(988), + [anon_sym_isize] = ACTIONS(988), + [anon_sym_usize] = ACTIONS(988), + [anon_sym_f32] = ACTIONS(988), + [anon_sym_f64] = ACTIONS(988), + [anon_sym_bool] = ACTIONS(988), + [anon_sym_str] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(986), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_async] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_fn] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_impl] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_pub] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_static] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_trait] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_unsafe] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_yield] = ACTIONS(988), + [anon_sym_move] = ACTIONS(988), + [anon_sym_try] = ACTIONS(988), + [sym_integer_literal] = ACTIONS(986), + [aux_sym_string_literal_token1] = ACTIONS(986), + [sym_char_literal] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(988), + [sym_super] = ACTIONS(988), + [sym_crate] = ACTIONS(988), + [sym_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), }, [285] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(141), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(463), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_move] = ACTIONS(473), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(124), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(664), + [anon_sym_AMP] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(445), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(453), + [anon_sym_move] = ACTIONS(455), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [286] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1539), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [287] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [288] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [289] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1754), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [290] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [291] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [292] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [293] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1696), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(726), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(984), - [sym_identifier] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_macro_rules_BANG] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_QMARK] = ACTIONS(984), - [anon_sym_u8] = ACTIONS(986), - [anon_sym_i8] = ACTIONS(986), - [anon_sym_u16] = ACTIONS(986), - [anon_sym_i16] = ACTIONS(986), - [anon_sym_u32] = ACTIONS(986), - [anon_sym_i32] = ACTIONS(986), - [anon_sym_u64] = ACTIONS(986), - [anon_sym_i64] = ACTIONS(986), - [anon_sym_u128] = ACTIONS(986), - [anon_sym_i128] = ACTIONS(986), - [anon_sym_isize] = ACTIONS(986), - [anon_sym_usize] = ACTIONS(986), - [anon_sym_f32] = ACTIONS(986), - [anon_sym_f64] = ACTIONS(986), - [anon_sym_bool] = ACTIONS(986), - [anon_sym_str] = ACTIONS(986), - [anon_sym_char] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(984), - [anon_sym_PERCENT] = ACTIONS(986), - [anon_sym_CARET] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_GT] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_async] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_fn] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_impl] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_mod] = ACTIONS(986), - [anon_sym_pub] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_static] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_trait] = ACTIONS(986), - [anon_sym_type] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_unsafe] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_PIPE_PIPE] = ACTIONS(984), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_LT_LT] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [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_AMP_EQ] = ACTIONS(984), - [anon_sym_PIPE_EQ] = ACTIONS(984), - [anon_sym_CARET_EQ] = ACTIONS(984), - [anon_sym_LT_LT_EQ] = ACTIONS(984), - [anon_sym_GT_GT_EQ] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_move] = ACTIONS(986), - [anon_sym_try] = ACTIONS(986), - [sym_integer_literal] = ACTIONS(984), - [aux_sym_string_literal_token1] = ACTIONS(984), - [sym_char_literal] = ACTIONS(984), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(986), - [sym_super] = ACTIONS(986), - [sym_crate] = ACTIONS(986), - [sym_metavariable] = ACTIONS(984), - [sym_raw_string_literal] = ACTIONS(984), - [sym_float_literal] = ACTIONS(984), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [295] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [296] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1428), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [297] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1521), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1553), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(138), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(658), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(656), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(499), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(501), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(503), + [anon_sym_static] = ACTIONS(505), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_move] = ACTIONS(509), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_macro_rules_BANG] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(988), - [anon_sym_u8] = ACTIONS(990), - [anon_sym_i8] = ACTIONS(990), - [anon_sym_u16] = ACTIONS(990), - [anon_sym_i16] = ACTIONS(990), - [anon_sym_u32] = ACTIONS(990), - [anon_sym_i32] = ACTIONS(990), - [anon_sym_u64] = ACTIONS(990), - [anon_sym_i64] = ACTIONS(990), - [anon_sym_u128] = ACTIONS(990), - [anon_sym_i128] = ACTIONS(990), - [anon_sym_isize] = ACTIONS(990), - [anon_sym_usize] = ACTIONS(990), - [anon_sym_f32] = ACTIONS(990), - [anon_sym_f64] = ACTIONS(990), - [anon_sym_bool] = ACTIONS(990), - [anon_sym_str] = ACTIONS(990), - [anon_sym_char] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_async] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_impl] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_pub] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_static] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_trait] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_unsafe] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_extern] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_PIPE_PIPE] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_LT_LT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PERCENT_EQ] = ACTIONS(988), - [anon_sym_AMP_EQ] = ACTIONS(988), - [anon_sym_PIPE_EQ] = ACTIONS(988), - [anon_sym_CARET_EQ] = ACTIONS(988), - [anon_sym_LT_LT_EQ] = ACTIONS(988), - [anon_sym_GT_GT_EQ] = ACTIONS(988), - [anon_sym_yield] = ACTIONS(990), - [anon_sym_move] = ACTIONS(990), - [anon_sym_try] = ACTIONS(990), - [sym_integer_literal] = ACTIONS(988), - [aux_sym_string_literal_token1] = ACTIONS(988), - [sym_char_literal] = ACTIONS(988), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(990), - [sym_super] = ACTIONS(990), - [sym_crate] = ACTIONS(990), - [sym_metavariable] = ACTIONS(988), - [sym_raw_string_literal] = ACTIONS(988), - [sym_float_literal] = ACTIONS(988), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(992), - [sym_identifier] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_macro_rules_BANG] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_macro_rules_BANG] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_QMARK] = ACTIONS(992), - [anon_sym_u8] = ACTIONS(994), - [anon_sym_i8] = ACTIONS(994), - [anon_sym_u16] = ACTIONS(994), - [anon_sym_i16] = ACTIONS(994), - [anon_sym_u32] = ACTIONS(994), - [anon_sym_i32] = ACTIONS(994), - [anon_sym_u64] = ACTIONS(994), - [anon_sym_i64] = ACTIONS(994), - [anon_sym_u128] = ACTIONS(994), - [anon_sym_i128] = ACTIONS(994), - [anon_sym_isize] = ACTIONS(994), - [anon_sym_usize] = ACTIONS(994), - [anon_sym_f32] = ACTIONS(994), - [anon_sym_f64] = ACTIONS(994), - [anon_sym_bool] = ACTIONS(994), - [anon_sym_str] = ACTIONS(994), - [anon_sym_char] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(992), + [anon_sym_i8] = ACTIONS(992), + [anon_sym_u16] = ACTIONS(992), + [anon_sym_i16] = ACTIONS(992), + [anon_sym_u32] = ACTIONS(992), + [anon_sym_i32] = ACTIONS(992), + [anon_sym_u64] = ACTIONS(992), + [anon_sym_i64] = ACTIONS(992), + [anon_sym_u128] = ACTIONS(992), + [anon_sym_i128] = ACTIONS(992), + [anon_sym_isize] = ACTIONS(992), + [anon_sym_usize] = ACTIONS(992), + [anon_sym_f32] = ACTIONS(992), + [anon_sym_f64] = ACTIONS(992), + [anon_sym_bool] = ACTIONS(992), + [anon_sym_str] = ACTIONS(992), + [anon_sym_char] = ACTIONS(992), [anon_sym_SLASH] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(992), [anon_sym_EQ] = ACTIONS(994), - [anon_sym_COLON_COLON] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(994), + [anon_sym_COLON_COLON] = ACTIONS(990), + [anon_sym_BANG] = ACTIONS(992), [anon_sym_DOT] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_POUND] = ACTIONS(990), [anon_sym_PERCENT] = ACTIONS(994), [anon_sym_CARET] = ACTIONS(994), - [anon_sym_LT] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(992), [anon_sym_GT] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_SQUOTE] = ACTIONS(992), [anon_sym_as] = ACTIONS(994), - [anon_sym_async] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_impl] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_mod] = ACTIONS(994), - [anon_sym_pub] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_static] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_trait] = ACTIONS(994), - [anon_sym_type] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_unsafe] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_extern] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_AMP_AMP] = ACTIONS(992), - [anon_sym_PIPE_PIPE] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_GT_GT] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PERCENT_EQ] = ACTIONS(992), - [anon_sym_AMP_EQ] = ACTIONS(992), - [anon_sym_PIPE_EQ] = ACTIONS(992), - [anon_sym_CARET_EQ] = ACTIONS(992), - [anon_sym_LT_LT_EQ] = ACTIONS(992), - [anon_sym_GT_GT_EQ] = ACTIONS(992), - [anon_sym_yield] = ACTIONS(994), - [anon_sym_move] = ACTIONS(994), - [anon_sym_try] = ACTIONS(994), - [sym_integer_literal] = ACTIONS(992), - [aux_sym_string_literal_token1] = ACTIONS(992), - [sym_char_literal] = ACTIONS(992), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(994), - [sym_super] = ACTIONS(994), - [sym_crate] = ACTIONS(994), - [sym_metavariable] = ACTIONS(992), - [sym_raw_string_literal] = ACTIONS(992), - [sym_float_literal] = ACTIONS(992), - [sym_block_comment] = ACTIONS(3), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(996), - [sym_identifier] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_macro_rules_BANG] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(996), - [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_SLASH] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_COLON_COLON] = ACTIONS(996), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(996), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_async] = 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_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_while] = ACTIONS(998), - [anon_sym_extern] = ACTIONS(998), + [anon_sym_async] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_impl] = ACTIONS(992), + [anon_sym_let] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_pub] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_static] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_trait] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_unsafe] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), [anon_sym_DOT_DOT_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(992), [anon_sym_DOT_DOT_EQ] = ACTIONS(996), [anon_sym_AMP_AMP] = ACTIONS(996), [anon_sym_PIPE_PIPE] = ACTIONS(996), @@ -52661,8 +53437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(996), [anon_sym_LT_EQ] = ACTIONS(996), [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_LT] = ACTIONS(998), - [anon_sym_GT_GT] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), [anon_sym_PLUS_EQ] = ACTIONS(996), [anon_sym_DASH_EQ] = ACTIONS(996), [anon_sym_STAR_EQ] = ACTIONS(996), @@ -52673,4401 +53449,4596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(996), [anon_sym_LT_LT_EQ] = ACTIONS(996), [anon_sym_GT_GT_EQ] = ACTIONS(996), - [anon_sym_yield] = ACTIONS(998), - [anon_sym_move] = ACTIONS(998), - [anon_sym_try] = ACTIONS(998), - [sym_integer_literal] = ACTIONS(996), - [aux_sym_string_literal_token1] = ACTIONS(996), - [sym_char_literal] = ACTIONS(996), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(998), - [sym_super] = ACTIONS(998), - [sym_crate] = ACTIONS(998), - [sym_metavariable] = ACTIONS(996), - [sym_raw_string_literal] = ACTIONS(996), - [sym_float_literal] = ACTIONS(996), - [sym_block_comment] = ACTIONS(3), + [anon_sym_yield] = ACTIONS(992), + [anon_sym_move] = ACTIONS(992), + [anon_sym_try] = ACTIONS(992), + [sym_integer_literal] = ACTIONS(990), + [aux_sym_string_literal_token1] = ACTIONS(990), + [sym_char_literal] = ACTIONS(990), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(992), + [sym_super] = ACTIONS(992), + [sym_crate] = ACTIONS(992), + [sym_metavariable] = ACTIONS(990), + [sym_raw_string_literal] = ACTIONS(990), + [sym_float_literal] = ACTIONS(990), + }, + [300] = { + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [301] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(146), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(718), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(718), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(724), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(401), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(417), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(858), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_move] = ACTIONS(425), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [302] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [303] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1770), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [304] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_identifier] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_macro_rules_BANG] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_QMARK] = ACTIONS(1000), - [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_SLASH] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_EQ] = ACTIONS(1002), - [anon_sym_COLON_COLON] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1002), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(1000), - [anon_sym_PERCENT] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_as] = ACTIONS(1002), - [anon_sym_async] = 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_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_while] = ACTIONS(1002), - [anon_sym_extern] = ACTIONS(1002), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1000), - [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_PIPE_PIPE] = ACTIONS(1000), - [anon_sym_EQ_EQ] = ACTIONS(1000), - [anon_sym_BANG_EQ] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(1000), - [anon_sym_LT_LT] = ACTIONS(1002), - [anon_sym_GT_GT] = ACTIONS(1002), - [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_AMP_EQ] = ACTIONS(1000), - [anon_sym_PIPE_EQ] = ACTIONS(1000), - [anon_sym_CARET_EQ] = ACTIONS(1000), - [anon_sym_LT_LT_EQ] = ACTIONS(1000), - [anon_sym_GT_GT_EQ] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), - [anon_sym_move] = ACTIONS(1002), - [anon_sym_try] = ACTIONS(1002), - [sym_integer_literal] = ACTIONS(1000), - [aux_sym_string_literal_token1] = ACTIONS(1000), - [sym_char_literal] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1002), - [sym_super] = ACTIONS(1002), - [sym_crate] = ACTIONS(1002), - [sym_metavariable] = ACTIONS(1000), - [sym_raw_string_literal] = ACTIONS(1000), - [sym_float_literal] = ACTIONS(1000), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [306] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [307] = { - [sym_bracketed_type] = STATE(3330), - [sym_generic_function] = STATE(1518), - [sym_generic_type_with_turbofish] = STATE(2786), - [sym__expression_except_range] = STATE(1518), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1518), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier_in_expression_position] = STATE(3153), - [sym_range_expression] = STATE(1589), - [sym_unary_expression] = STATE(1518), - [sym_try_expression] = STATE(1518), - [sym_reference_expression] = STATE(1518), - [sym_binary_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_compound_assignment_expr] = STATE(1518), - [sym_type_cast_expression] = STATE(1518), - [sym_return_expression] = STATE(1518), - [sym_yield_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_array_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_tuple_expression] = STATE(1518), - [sym_unit_expression] = STATE(1518), - [sym_struct_expression] = STATE(1518), - [sym_if_expression] = STATE(1518), - [sym_match_expression] = STATE(1518), - [sym_while_expression] = STATE(1518), - [sym_loop_expression] = STATE(1518), - [sym_for_expression] = STATE(1518), - [sym_const_block] = STATE(1518), - [sym_closure_expression] = STATE(1518), - [sym_closure_parameters] = STATE(138), - [sym_label] = STATE(3438), - [sym_break_expression] = STATE(1518), - [sym_continue_expression] = STATE(1518), - [sym_index_expression] = STATE(1518), - [sym_await_expression] = STATE(1518), - [sym_field_expression] = STATE(1553), - [sym_unsafe_block] = STATE(1518), - [sym_async_block] = STATE(1518), - [sym_try_block] = STATE(1518), - [sym_block] = STATE(1518), - [sym__literal] = STATE(1518), - [sym_string_literal] = STATE(1619), - [sym_boolean_literal] = STATE(1619), - [sym_identifier] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_STAR] = ACTIONS(680), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(680), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(399), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_default] = ACTIONS(407), - [anon_sym_for] = ACTIONS(409), - [anon_sym_if] = ACTIONS(445), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_return] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_union] = ACTIONS(407), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_while] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_move] = ACTIONS(453), - [anon_sym_try] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(431), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(433), - [anon_sym_false] = ACTIONS(433), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(437), - [sym_crate] = ACTIONS(437), - [sym_metavariable] = ACTIONS(439), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_macro_rules_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(1000), + [anon_sym_i8] = ACTIONS(1000), + [anon_sym_u16] = ACTIONS(1000), + [anon_sym_i16] = ACTIONS(1000), + [anon_sym_u32] = ACTIONS(1000), + [anon_sym_i32] = ACTIONS(1000), + [anon_sym_u64] = ACTIONS(1000), + [anon_sym_i64] = ACTIONS(1000), + [anon_sym_u128] = ACTIONS(1000), + [anon_sym_i128] = ACTIONS(1000), + [anon_sym_isize] = ACTIONS(1000), + [anon_sym_usize] = ACTIONS(1000), + [anon_sym_f32] = ACTIONS(1000), + [anon_sym_f64] = ACTIONS(1000), + [anon_sym_bool] = ACTIONS(1000), + [anon_sym_str] = ACTIONS(1000), + [anon_sym_char] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_COLON_COLON] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(998), + [anon_sym_PERCENT] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(1000), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_SQUOTE] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_async] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_fn] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_impl] = ACTIONS(1000), + [anon_sym_let] = ACTIONS(1000), + [anon_sym_loop] = ACTIONS(1000), + [anon_sym_match] = ACTIONS(1000), + [anon_sym_mod] = ACTIONS(1000), + [anon_sym_pub] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_struct] = ACTIONS(1000), + [anon_sym_trait] = ACTIONS(1000), + [anon_sym_type] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_unsafe] = ACTIONS(1000), + [anon_sym_use] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_extern] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_PERCENT_EQ] = ACTIONS(998), + [anon_sym_AMP_EQ] = ACTIONS(998), + [anon_sym_PIPE_EQ] = ACTIONS(998), + [anon_sym_CARET_EQ] = ACTIONS(998), + [anon_sym_LT_LT_EQ] = ACTIONS(998), + [anon_sym_GT_GT_EQ] = ACTIONS(998), + [anon_sym_yield] = ACTIONS(1000), + [anon_sym_move] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(998), + [aux_sym_string_literal_token1] = ACTIONS(998), + [sym_char_literal] = ACTIONS(998), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1000), + [sym_super] = ACTIONS(1000), + [sym_crate] = ACTIONS(1000), + [sym_metavariable] = ACTIONS(998), + [sym_raw_string_literal] = ACTIONS(998), + [sym_float_literal] = ACTIONS(998), }, [308] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [309] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [310] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1384), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(708), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3371), + [sym_generic_function] = STATE(1620), + [sym_generic_type_with_turbofish] = STATE(2801), + [sym__expression_except_range] = STATE(1550), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1630), + [sym_scoped_identifier] = STATE(1516), + [sym_scoped_type_identifier_in_expression_position] = STATE(3066), + [sym_range_expression] = STATE(1624), + [sym_unary_expression] = STATE(1620), + [sym_try_expression] = STATE(1620), + [sym_reference_expression] = STATE(1620), + [sym_binary_expression] = STATE(1620), + [sym_assignment_expression] = STATE(1620), + [sym_compound_assignment_expr] = STATE(1620), + [sym_type_cast_expression] = STATE(1620), + [sym_return_expression] = STATE(1620), + [sym_yield_expression] = STATE(1620), + [sym_call_expression] = STATE(1620), + [sym_array_expression] = STATE(1620), + [sym_parenthesized_expression] = STATE(1620), + [sym_tuple_expression] = STATE(1620), + [sym_unit_expression] = STATE(1620), + [sym_struct_expression] = STATE(1620), + [sym_if_expression] = STATE(1620), + [sym_match_expression] = STATE(1620), + [sym_while_expression] = STATE(1620), + [sym_loop_expression] = STATE(1620), + [sym_for_expression] = STATE(1620), + [sym_const_block] = STATE(1620), + [sym_closure_expression] = STATE(1620), + [sym_closure_parameters] = STATE(139), + [sym_label] = STATE(3479), + [sym_break_expression] = STATE(1620), + [sym_continue_expression] = STATE(1620), + [sym_index_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_field_expression] = STATE(1554), + [sym_unsafe_block] = STATE(1620), + [sym_async_block] = STATE(1620), + [sym_try_block] = STATE(1620), + [sym_block] = STATE(1620), + [sym__literal] = STATE(1620), + [sym_string_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_u8] = ACTIONS(395), + [anon_sym_i8] = ACTIONS(395), + [anon_sym_u16] = ACTIONS(395), + [anon_sym_i16] = ACTIONS(395), + [anon_sym_u32] = ACTIONS(395), + [anon_sym_i32] = ACTIONS(395), + [anon_sym_u64] = ACTIONS(395), + [anon_sym_i64] = ACTIONS(395), + [anon_sym_u128] = ACTIONS(395), + [anon_sym_i128] = ACTIONS(395), + [anon_sym_isize] = ACTIONS(395), + [anon_sym_usize] = ACTIONS(395), + [anon_sym_f32] = ACTIONS(395), + [anon_sym_f64] = ACTIONS(395), + [anon_sym_bool] = ACTIONS(395), + [anon_sym_str] = ACTIONS(395), + [anon_sym_char] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_COLON_COLON] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_const] = ACTIONS(405), + [anon_sym_continue] = ACTIONS(407), + [anon_sym_default] = ACTIONS(409), + [anon_sym_for] = ACTIONS(411), + [anon_sym_if] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(415), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(419), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_while] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(425), + [anon_sym_move] = ACTIONS(427), + [anon_sym_try] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(433), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(435), + [anon_sym_false] = ACTIONS(435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(439), + [sym_crate] = ACTIONS(439), + [sym_metavariable] = ACTIONS(441), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), }, [311] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_macro_rules_BANG] = ACTIONS(1002), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_COLON_COLON] = ACTIONS(1002), + [anon_sym_BANG] = ACTIONS(1004), + [anon_sym_DOT] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(1002), + [anon_sym_PERCENT] = ACTIONS(1004), + [anon_sym_CARET] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_SQUOTE] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_async] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_fn] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_impl] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_pub] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_struct] = ACTIONS(1004), + [anon_sym_trait] = ACTIONS(1004), + [anon_sym_type] = ACTIONS(1004), + [anon_sym_union] = ACTIONS(1004), + [anon_sym_unsafe] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1002), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(1002), + [anon_sym_BANG_EQ] = ACTIONS(1002), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1004), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1002), + [anon_sym_DASH_EQ] = ACTIONS(1002), + [anon_sym_STAR_EQ] = ACTIONS(1002), + [anon_sym_SLASH_EQ] = ACTIONS(1002), + [anon_sym_PERCENT_EQ] = ACTIONS(1002), + [anon_sym_AMP_EQ] = ACTIONS(1002), + [anon_sym_PIPE_EQ] = ACTIONS(1002), + [anon_sym_CARET_EQ] = ACTIONS(1002), + [anon_sym_LT_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_GT_EQ] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_move] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [sym_integer_literal] = ACTIONS(1002), + [aux_sym_string_literal_token1] = ACTIONS(1002), + [sym_char_literal] = ACTIONS(1002), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1004), + [sym_super] = ACTIONS(1004), + [sym_crate] = ACTIONS(1004), + [sym_metavariable] = ACTIONS(1002), + [sym_raw_string_literal] = ACTIONS(1002), + [sym_float_literal] = ACTIONS(1002), }, [312] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_macro_rules_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_COLON_COLON] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(1006), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(994), + [anon_sym_async] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_fn] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_impl] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_pub] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_trait] = ACTIONS(1008), + [anon_sym_type] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_unsafe] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_AMP_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(996), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(996), + [anon_sym_GT_GT_EQ] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_move] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [sym_integer_literal] = ACTIONS(1006), + [aux_sym_string_literal_token1] = ACTIONS(1006), + [sym_char_literal] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1008), + [sym_super] = ACTIONS(1008), + [sym_crate] = ACTIONS(1008), + [sym_metavariable] = ACTIONS(1006), + [sym_raw_string_literal] = ACTIONS(1006), + [sym_float_literal] = ACTIONS(1006), }, [313] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2715), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1277), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(460), - [sym_match_expression] = STATE(460), - [sym_while_expression] = STATE(460), - [sym_loop_expression] = STATE(460), - [sym_for_expression] = STATE(460), - [sym_const_block] = STATE(460), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(153), - [sym_label] = STATE(3443), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(475), + [sym_match_expression] = STATE(475), + [sym_while_expression] = STATE(475), + [sym_loop_expression] = STATE(475), + [sym_for_expression] = STATE(475), + [sym_const_block] = STATE(475), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3484), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(460), - [sym_async_block] = STATE(460), - [sym_try_block] = STATE(460), - [sym_block] = STATE(460), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_COLON_COLON] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(912), - [anon_sym_break] = ACTIONS(37), - [anon_sym_const] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_default] = ACTIONS(339), - [anon_sym_for] = ACTIONS(916), - [anon_sym_if] = ACTIONS(918), - [anon_sym_loop] = ACTIONS(920), - [anon_sym_match] = ACTIONS(922), - [anon_sym_return] = ACTIONS(65), - [anon_sym_static] = ACTIONS(349), - [anon_sym_union] = ACTIONS(339), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_while] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_try] = ACTIONS(928), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(101), - [sym_super] = ACTIONS(103), - [sym_crate] = ACTIONS(103), - [sym_metavariable] = ACTIONS(107), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(475), + [sym_async_block] = STATE(475), + [sym_try_block] = STATE(475), + [sym_block] = STATE(475), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(932), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(936), + [anon_sym_if] = ACTIONS(938), + [anon_sym_loop] = ACTIONS(940), + [anon_sym_match] = ACTIONS(942), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(944), + [anon_sym_while] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(948), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_identifier] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_macro_rules_BANG] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1004), - [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_SLASH] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_async] = 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_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_while] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1004), - [anon_sym_PIPE_PIPE] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT_EQ] = ACTIONS(1004), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [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_AMP_EQ] = ACTIONS(1004), - [anon_sym_PIPE_EQ] = ACTIONS(1004), - [anon_sym_CARET_EQ] = ACTIONS(1004), - [anon_sym_LT_LT_EQ] = ACTIONS(1004), - [anon_sym_GT_GT_EQ] = ACTIONS(1004), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_move] = ACTIONS(1006), - [anon_sym_try] = ACTIONS(1006), - [sym_integer_literal] = ACTIONS(1004), - [aux_sym_string_literal_token1] = ACTIONS(1004), - [sym_char_literal] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1006), - [sym_super] = ACTIONS(1006), - [sym_crate] = ACTIONS(1006), - [sym_metavariable] = ACTIONS(1004), - [sym_raw_string_literal] = ACTIONS(1004), - [sym_float_literal] = ACTIONS(1004), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_identifier] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_macro_rules_BANG] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1010), - [anon_sym_QMARK] = ACTIONS(1008), - [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_SLASH] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1010), - [anon_sym_COLON_COLON] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1010), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(1008), - [anon_sym_PERCENT] = ACTIONS(1010), - [anon_sym_CARET] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1010), - [anon_sym_as] = ACTIONS(1010), - [anon_sym_async] = 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_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_while] = ACTIONS(1010), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1008), - [anon_sym_AMP_AMP] = ACTIONS(1008), - [anon_sym_PIPE_PIPE] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_LT_LT] = ACTIONS(1010), - [anon_sym_GT_GT] = ACTIONS(1010), - [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_AMP_EQ] = ACTIONS(1008), - [anon_sym_PIPE_EQ] = ACTIONS(1008), - [anon_sym_CARET_EQ] = ACTIONS(1008), - [anon_sym_LT_LT_EQ] = ACTIONS(1008), - [anon_sym_GT_GT_EQ] = ACTIONS(1008), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_move] = ACTIONS(1010), - [anon_sym_try] = ACTIONS(1010), - [sym_integer_literal] = ACTIONS(1008), - [aux_sym_string_literal_token1] = ACTIONS(1008), - [sym_char_literal] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1010), - [sym_super] = ACTIONS(1010), - [sym_crate] = ACTIONS(1010), - [sym_metavariable] = ACTIONS(1008), - [sym_raw_string_literal] = ACTIONS(1008), - [sym_float_literal] = ACTIONS(1008), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2809), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1284), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(132), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_field_expression] = STATE(1072), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(341), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(351), + [anon_sym_union] = ACTIONS(341), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(103), + [sym_super] = ACTIONS(105), + [sym_crate] = ACTIONS(105), + [sym_metavariable] = ACTIONS(109), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [316] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1411), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), - [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_macro_rules_BANG] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1010), + [anon_sym_u8] = ACTIONS(1012), + [anon_sym_i8] = ACTIONS(1012), + [anon_sym_u16] = ACTIONS(1012), + [anon_sym_i16] = ACTIONS(1012), + [anon_sym_u32] = ACTIONS(1012), + [anon_sym_i32] = ACTIONS(1012), + [anon_sym_u64] = ACTIONS(1012), + [anon_sym_i64] = ACTIONS(1012), + [anon_sym_u128] = ACTIONS(1012), + [anon_sym_i128] = ACTIONS(1012), + [anon_sym_isize] = ACTIONS(1012), + [anon_sym_usize] = ACTIONS(1012), + [anon_sym_f32] = ACTIONS(1012), + [anon_sym_f64] = ACTIONS(1012), + [anon_sym_bool] = ACTIONS(1012), + [anon_sym_str] = ACTIONS(1012), + [anon_sym_char] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_COLON_COLON] = ACTIONS(1010), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(1010), + [anon_sym_PERCENT] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_as] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_fn] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_impl] = ACTIONS(1012), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_loop] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1012), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_pub] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_trait] = ACTIONS(1012), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_unsafe] = ACTIONS(1012), + [anon_sym_use] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_extern] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_AMP_AMP] = ACTIONS(1010), + [anon_sym_PIPE_PIPE] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1012), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), + [anon_sym_AMP_EQ] = ACTIONS(1010), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_CARET_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(1012), + [anon_sym_move] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1012), + [sym_integer_literal] = ACTIONS(1010), + [aux_sym_string_literal_token1] = ACTIONS(1010), + [sym_char_literal] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1012), + [sym_super] = ACTIONS(1012), + [sym_crate] = ACTIONS(1012), + [sym_metavariable] = ACTIONS(1010), + [sym_raw_string_literal] = ACTIONS(1010), + [sym_float_literal] = ACTIONS(1010), }, [317] = { - [sym_bracketed_type] = STATE(3325), - [sym_generic_function] = STATE(1064), - [sym_generic_type_with_turbofish] = STATE(2767), - [sym__expression_except_range] = STATE(1064), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1064), - [sym_scoped_identifier] = STATE(1492), - [sym_scoped_type_identifier_in_expression_position] = STATE(3048), - [sym_range_expression] = STATE(1155), - [sym_unary_expression] = STATE(1064), - [sym_try_expression] = STATE(1064), - [sym_reference_expression] = STATE(1064), - [sym_binary_expression] = STATE(1064), - [sym_assignment_expression] = STATE(1064), - [sym_compound_assignment_expr] = STATE(1064), - [sym_type_cast_expression] = STATE(1064), - [sym_return_expression] = STATE(1064), - [sym_yield_expression] = STATE(1064), - [sym_call_expression] = STATE(1064), - [sym_array_expression] = STATE(1064), - [sym_parenthesized_expression] = STATE(1064), - [sym_tuple_expression] = STATE(1064), - [sym_unit_expression] = STATE(1064), - [sym_struct_expression] = STATE(1064), - [sym_if_expression] = STATE(1064), - [sym_match_expression] = STATE(1064), - [sym_while_expression] = STATE(1064), - [sym_loop_expression] = STATE(1064), - [sym_for_expression] = STATE(1064), - [sym_const_block] = STATE(1064), - [sym_closure_expression] = STATE(1064), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3395), - [sym_break_expression] = STATE(1064), - [sym_continue_expression] = STATE(1064), - [sym_index_expression] = STATE(1064), - [sym_await_expression] = STATE(1064), + [sym_bracketed_type] = STATE(3363), + [sym_generic_function] = STATE(1107), + [sym_generic_type_with_turbofish] = STATE(2711), + [sym__expression_except_range] = STATE(1076), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1215), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3064), + [sym_range_expression] = STATE(1150), + [sym_unary_expression] = STATE(1107), + [sym_try_expression] = STATE(1107), + [sym_reference_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_assignment_expression] = STATE(1107), + [sym_compound_assignment_expr] = STATE(1107), + [sym_type_cast_expression] = STATE(1107), + [sym_return_expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_call_expression] = STATE(1107), + [sym_array_expression] = STATE(1107), + [sym_parenthesized_expression] = STATE(1107), + [sym_tuple_expression] = STATE(1107), + [sym_unit_expression] = STATE(1107), + [sym_struct_expression] = STATE(1107), + [sym_if_expression] = STATE(1107), + [sym_match_expression] = STATE(1107), + [sym_while_expression] = STATE(1107), + [sym_loop_expression] = STATE(1107), + [sym_for_expression] = STATE(1107), + [sym_const_block] = STATE(1107), + [sym_closure_expression] = STATE(1107), + [sym_closure_parameters] = STATE(146), + [sym_label] = STATE(3436), + [sym_break_expression] = STATE(1107), + [sym_continue_expression] = STATE(1107), + [sym_index_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), [sym_field_expression] = STATE(1072), - [sym_unsafe_block] = STATE(1064), - [sym_async_block] = STATE(1064), - [sym_try_block] = STATE(1064), - [sym_block] = STATE(1064), - [sym__literal] = STATE(1064), - [sym_string_literal] = STATE(1274), - [sym_boolean_literal] = STATE(1274), - [sym_identifier] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_u8] = ACTIONS(457), - [anon_sym_i8] = ACTIONS(457), - [anon_sym_u16] = ACTIONS(457), - [anon_sym_i16] = ACTIONS(457), - [anon_sym_u32] = ACTIONS(457), - [anon_sym_i32] = ACTIONS(457), - [anon_sym_u64] = ACTIONS(457), - [anon_sym_i64] = ACTIONS(457), - [anon_sym_u128] = ACTIONS(457), - [anon_sym_i128] = ACTIONS(457), - [anon_sym_isize] = ACTIONS(457), - [anon_sym_usize] = ACTIONS(457), - [anon_sym_f32] = ACTIONS(457), - [anon_sym_f64] = ACTIONS(457), - [anon_sym_bool] = ACTIONS(457), - [anon_sym_str] = ACTIONS(457), - [anon_sym_char] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_COLON_COLON] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(33), - [anon_sym_async] = ACTIONS(335), - [anon_sym_break] = ACTIONS(497), - [anon_sym_const] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(499), - [anon_sym_default] = ACTIONS(465), - [anon_sym_for] = ACTIONS(341), - [anon_sym_if] = ACTIONS(343), - [anon_sym_loop] = ACTIONS(345), - [anon_sym_match] = ACTIONS(347), - [anon_sym_return] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_union] = ACTIONS(465), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_while] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(730), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_move] = ACTIONS(507), - [anon_sym_try] = ACTIONS(355), - [sym_integer_literal] = ACTIONS(93), - [aux_sym_string_literal_token1] = ACTIONS(95), - [sym_char_literal] = ACTIONS(93), - [anon_sym_true] = ACTIONS(97), - [anon_sym_false] = ACTIONS(97), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(475), - [sym_super] = ACTIONS(477), - [sym_crate] = ACTIONS(477), - [sym_metavariable] = ACTIONS(479), - [sym_raw_string_literal] = ACTIONS(93), - [sym_float_literal] = ACTIONS(93), - [sym_block_comment] = ACTIONS(3), + [sym_unsafe_block] = STATE(1107), + [sym_async_block] = STATE(1107), + [sym_try_block] = STATE(1107), + [sym_block] = STATE(1107), + [sym__literal] = STATE(1107), + [sym_string_literal] = STATE(1282), + [sym_boolean_literal] = STATE(1282), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(337), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(343), + [anon_sym_if] = ACTIONS(345), + [anon_sym_loop] = ACTIONS(347), + [anon_sym_match] = ACTIONS(349), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_while] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(357), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, [318] = { - [sym_identifier] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(898), - [anon_sym_macro_rules_BANG] = ACTIONS(894), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u128] = ACTIONS(896), - [anon_sym_i128] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_str] = ACTIONS(896), - [anon_sym_char] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_POUND] = ACTIONS(894), - [anon_sym_PERCENT] = ACTIONS(900), - [anon_sym_CARET] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(900), - [anon_sym_SQUOTE] = ACTIONS(896), - [anon_sym_as] = ACTIONS(900), - [anon_sym_async] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_const] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_default] = ACTIONS(896), - [anon_sym_enum] = ACTIONS(896), - [anon_sym_fn] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_impl] = ACTIONS(896), - [anon_sym_let] = ACTIONS(896), - [anon_sym_loop] = ACTIONS(896), - [anon_sym_match] = ACTIONS(896), - [anon_sym_mod] = ACTIONS(896), - [anon_sym_pub] = ACTIONS(896), - [anon_sym_return] = ACTIONS(896), - [anon_sym_static] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_trait] = ACTIONS(896), - [anon_sym_type] = ACTIONS(896), - [anon_sym_union] = ACTIONS(896), - [anon_sym_unsafe] = ACTIONS(896), - [anon_sym_use] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_extern] = ACTIONS(896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT_EQ] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(900), - [anon_sym_GT_GT] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(898), - [anon_sym_DASH_EQ] = ACTIONS(898), - [anon_sym_STAR_EQ] = ACTIONS(898), - [anon_sym_SLASH_EQ] = ACTIONS(898), - [anon_sym_PERCENT_EQ] = ACTIONS(898), - [anon_sym_AMP_EQ] = ACTIONS(898), - [anon_sym_PIPE_EQ] = ACTIONS(898), - [anon_sym_CARET_EQ] = ACTIONS(898), - [anon_sym_LT_LT_EQ] = ACTIONS(898), - [anon_sym_GT_GT_EQ] = ACTIONS(898), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_move] = ACTIONS(896), - [anon_sym_try] = ACTIONS(896), - [sym_integer_literal] = ACTIONS(894), - [aux_sym_string_literal_token1] = ACTIONS(894), - [sym_char_literal] = ACTIONS(894), - [anon_sym_true] = ACTIONS(896), - [anon_sym_false] = ACTIONS(896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(896), - [sym_super] = ACTIONS(896), - [sym_crate] = ACTIONS(896), - [sym_metavariable] = ACTIONS(894), - [sym_raw_string_literal] = ACTIONS(894), - [sym_float_literal] = ACTIONS(894), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_macro_rules_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_COLON_COLON] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(1006), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(994), + [anon_sym_async] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_fn] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_impl] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_pub] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_trait] = ACTIONS(1008), + [anon_sym_type] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_unsafe] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_AMP_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(996), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(996), + [anon_sym_GT_GT_EQ] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_move] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [sym_integer_literal] = ACTIONS(1006), + [aux_sym_string_literal_token1] = ACTIONS(1006), + [sym_char_literal] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1008), + [sym_super] = ACTIONS(1008), + [sym_crate] = ACTIONS(1008), + [sym_metavariable] = ACTIONS(1006), + [sym_raw_string_literal] = ACTIONS(1006), + [sym_float_literal] = ACTIONS(1006), }, [319] = { - [sym_attribute_item] = STATE(356), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2677), - [sym_variadic_parameter] = STATE(2677), - [sym_parameter] = STATE(2677), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2642), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1028), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(355), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2872), + [sym_variadic_parameter] = STATE(2872), + [sym_parameter] = STATE(2872), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2430), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1074), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [320] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2761), - [sym_variadic_parameter] = STATE(2761), - [sym_parameter] = STATE(2761), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2475), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1082), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(355), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2872), + [sym_variadic_parameter] = STATE(2872), + [sym_parameter] = STATE(2872), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1090), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [321] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2761), - [sym_variadic_parameter] = STATE(2761), - [sym_parameter] = STATE(2761), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2475), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2394), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(355), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2872), + [sym_variadic_parameter] = STATE(2872), + [sym_parameter] = STATE(2872), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2430), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1108), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1074), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [322] = { [sym_attribute_item] = STATE(355), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2885), - [sym_variadic_parameter] = STATE(2885), - [sym_parameter] = STATE(2885), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2556), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2872), + [sym_variadic_parameter] = STATE(2872), + [sym_parameter] = STATE(2872), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2430), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), [anon_sym_RPAREN] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1112), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1026), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1112), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1074), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [323] = { [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2761), - [sym_variadic_parameter] = STATE(2761), - [sym_parameter] = STATE(2761), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2475), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2394), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1026), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2855), + [sym_variadic_parameter] = STATE(2855), + [sym_parameter] = STATE(2855), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2520), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1116), + [anon_sym_DASH] = ACTIONS(1028), [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [324] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2761), - [sym_variadic_parameter] = STATE(2761), - [sym_parameter] = STATE(2761), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2475), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2394), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), + [sym_attribute_item] = STATE(357), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2718), + [sym_variadic_parameter] = STATE(2718), + [sym_parameter] = STATE(2718), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2616), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), [anon_sym_RPAREN] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1122), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1122), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1124), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [325] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(2684), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2647), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [326] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [327] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [328] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2585), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(2694), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2639), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1132), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [329] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1150), + [anon_sym_SEMI] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_RBRACK] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_u8] = ACTIONS(1150), + [anon_sym_i8] = ACTIONS(1150), + [anon_sym_u16] = ACTIONS(1150), + [anon_sym_i16] = ACTIONS(1150), + [anon_sym_u32] = ACTIONS(1150), + [anon_sym_i32] = ACTIONS(1150), + [anon_sym_u64] = ACTIONS(1150), + [anon_sym_i64] = ACTIONS(1150), + [anon_sym_u128] = ACTIONS(1150), + [anon_sym_i128] = ACTIONS(1150), + [anon_sym_isize] = ACTIONS(1150), + [anon_sym_usize] = ACTIONS(1150), + [anon_sym_f32] = ACTIONS(1150), + [anon_sym_f64] = ACTIONS(1150), + [anon_sym_bool] = ACTIONS(1150), + [anon_sym_str] = ACTIONS(1150), + [anon_sym_char] = ACTIONS(1150), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym__] = ACTIONS(1167), + [anon_sym_BSLASH] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1153), + [anon_sym_DASH_GT] = ACTIONS(1153), + [anon_sym_COMMA] = ACTIONS(1153), + [anon_sym_COLON_COLON] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_POUND] = ACTIONS(1153), + [anon_sym_PERCENT] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_SQUOTE] = ACTIONS(1150), + [anon_sym_as] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_await] = ACTIONS(1150), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_const] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_fn] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_impl] = ACTIONS(1150), + [anon_sym_let] = ACTIONS(1150), + [anon_sym_loop] = ACTIONS(1150), + [anon_sym_match] = ACTIONS(1150), + [anon_sym_mod] = ACTIONS(1150), + [anon_sym_pub] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_struct] = ACTIONS(1150), + [anon_sym_trait] = ACTIONS(1150), + [anon_sym_type] = ACTIONS(1150), + [anon_sym_union] = ACTIONS(1150), + [anon_sym_unsafe] = ACTIONS(1150), + [anon_sym_use] = ACTIONS(1150), + [anon_sym_where] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym_mutable_specifier] = ACTIONS(1150), + [sym_integer_literal] = ACTIONS(1173), + [aux_sym_string_literal_token1] = ACTIONS(1176), + [sym_char_literal] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1150), + [sym_super] = ACTIONS(1150), + [sym_crate] = ACTIONS(1150), + [sym_metavariable] = ACTIONS(1182), + [sym_raw_string_literal] = ACTIONS(1173), + [sym_float_literal] = ACTIONS(1173), }, [330] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2585), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(2694), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2639), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [331] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [332] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [333] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1156), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_COLON] = ACTIONS(1173), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1159), - [anon_sym_STAR] = ACTIONS(1159), - [anon_sym_QMARK] = ACTIONS(1159), - [anon_sym_u8] = ACTIONS(1156), - [anon_sym_i8] = ACTIONS(1156), - [anon_sym_u16] = ACTIONS(1156), - [anon_sym_i16] = ACTIONS(1156), - [anon_sym_u32] = ACTIONS(1156), - [anon_sym_i32] = ACTIONS(1156), - [anon_sym_u64] = ACTIONS(1156), - [anon_sym_i64] = ACTIONS(1156), - [anon_sym_u128] = ACTIONS(1156), - [anon_sym_i128] = ACTIONS(1156), - [anon_sym_isize] = ACTIONS(1156), - [anon_sym_usize] = ACTIONS(1156), - [anon_sym_f32] = ACTIONS(1156), - [anon_sym_f64] = ACTIONS(1156), - [anon_sym_bool] = ACTIONS(1156), - [anon_sym_str] = ACTIONS(1156), - [anon_sym_char] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1173), - [anon_sym__] = ACTIONS(1173), - [anon_sym_BSLASH] = ACTIONS(1159), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1159), - [anon_sym_COLON_COLON] = ACTIONS(1159), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(1159), - [anon_sym_AT] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_POUND] = ACTIONS(1159), - [anon_sym_PERCENT] = ACTIONS(1159), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_LT] = ACTIONS(1159), - [anon_sym_GT] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_SQUOTE] = ACTIONS(1156), - [anon_sym_as] = ACTIONS(1156), - [anon_sym_async] = ACTIONS(1156), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_fn] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_impl] = ACTIONS(1156), - [anon_sym_let] = ACTIONS(1156), - [anon_sym_loop] = ACTIONS(1156), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_mod] = ACTIONS(1156), - [anon_sym_pub] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_trait] = ACTIONS(1156), - [anon_sym_type] = ACTIONS(1156), - [anon_sym_union] = ACTIONS(1156), - [anon_sym_unsafe] = ACTIONS(1156), - [anon_sym_use] = ACTIONS(1156), - [anon_sym_where] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [sym_mutable_specifier] = ACTIONS(1156), - [sym_integer_literal] = ACTIONS(1179), - [aux_sym_string_literal_token1] = ACTIONS(1182), - [sym_char_literal] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(1185), - [anon_sym_false] = ACTIONS(1185), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1156), - [sym_super] = ACTIONS(1156), - [sym_crate] = ACTIONS(1156), - [sym_metavariable] = ACTIONS(1188), - [sym_raw_string_literal] = ACTIONS(1179), - [sym_float_literal] = ACTIONS(1179), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [334] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1191), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(2684), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2647), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [335] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2585), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(2694), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2639), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(2684), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2647), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [336] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [337] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [338] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3037), - [sym_variadic_parameter] = STATE(3037), - [sym_parameter] = STATE(3037), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2868), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_attribute_item] = STATE(356), + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3078), + [sym_variadic_parameter] = STATE(3078), + [sym_parameter] = STATE(3078), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [339] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_await] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [sym_mutable_specifier] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [aux_sym_token_tree_pattern_repeat1] = STATE(340), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [340] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1223), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_await] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [sym_mutable_specifier] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [341] = { - [sym__token_pattern] = STATE(344), - [sym_token_tree_pattern] = STATE(344), - [sym_token_binding_pattern] = STATE(344), - [sym_token_repetition_pattern] = STATE(344), - [sym__literal] = STATE(344), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(344), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1225), - [anon_sym_i8] = ACTIONS(1225), - [anon_sym_u16] = ACTIONS(1225), - [anon_sym_i16] = ACTIONS(1225), - [anon_sym_u32] = ACTIONS(1225), - [anon_sym_i32] = ACTIONS(1225), - [anon_sym_u64] = ACTIONS(1225), - [anon_sym_i64] = ACTIONS(1225), - [anon_sym_u128] = ACTIONS(1225), - [anon_sym_i128] = ACTIONS(1225), - [anon_sym_isize] = ACTIONS(1225), - [anon_sym_usize] = ACTIONS(1225), - [anon_sym_f32] = ACTIONS(1225), - [anon_sym_f64] = ACTIONS(1225), - [anon_sym_bool] = ACTIONS(1225), - [anon_sym_str] = ACTIONS(1225), - [anon_sym_char] = ACTIONS(1225), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_as] = ACTIONS(1225), - [anon_sym_async] = ACTIONS(1225), - [anon_sym_await] = ACTIONS(1225), - [anon_sym_break] = ACTIONS(1225), - [anon_sym_const] = ACTIONS(1225), - [anon_sym_continue] = ACTIONS(1225), - [anon_sym_default] = ACTIONS(1225), - [anon_sym_enum] = ACTIONS(1225), - [anon_sym_fn] = ACTIONS(1225), - [anon_sym_for] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1225), - [anon_sym_impl] = ACTIONS(1225), - [anon_sym_let] = ACTIONS(1225), - [anon_sym_loop] = ACTIONS(1225), - [anon_sym_match] = ACTIONS(1225), - [anon_sym_mod] = ACTIONS(1225), - [anon_sym_pub] = ACTIONS(1225), - [anon_sym_return] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1225), - [anon_sym_struct] = ACTIONS(1225), - [anon_sym_trait] = ACTIONS(1225), - [anon_sym_type] = ACTIONS(1225), - [anon_sym_union] = ACTIONS(1225), - [anon_sym_unsafe] = ACTIONS(1225), - [anon_sym_use] = ACTIONS(1225), - [anon_sym_where] = ACTIONS(1225), - [anon_sym_while] = ACTIONS(1225), - [sym_mutable_specifier] = ACTIONS(1225), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1225), - [sym_super] = ACTIONS(1225), - [sym_crate] = ACTIONS(1225), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [aux_sym_token_tree_pattern_repeat1] = STATE(354), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [342] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1223), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_await] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [sym_mutable_specifier] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [343] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), [sym_identifier] = ACTIONS(1229), [anon_sym_SEMI] = ACTIONS(1232), @@ -57152,935 +58123,1562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1252), [anon_sym_true] = ACTIONS(1258), [anon_sym_false] = ACTIONS(1258), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(1229), [sym_super] = ACTIONS(1229), [sym_crate] = ACTIONS(1229), [sym_raw_string_literal] = ACTIONS(1252), [sym_float_literal] = ACTIONS(1252), - [sym_block_comment] = ACTIONS(3), }, [344] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_await] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [sym_mutable_specifier] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [345] = { - [sym__token_pattern] = STATE(342), - [sym_token_tree_pattern] = STATE(342), - [sym_token_binding_pattern] = STATE(342), - [sym_token_repetition_pattern] = STATE(342), - [sym__literal] = STATE(342), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(342), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1261), - [anon_sym_i8] = ACTIONS(1261), - [anon_sym_u16] = ACTIONS(1261), - [anon_sym_i16] = ACTIONS(1261), - [anon_sym_u32] = ACTIONS(1261), - [anon_sym_i32] = ACTIONS(1261), - [anon_sym_u64] = ACTIONS(1261), - [anon_sym_i64] = ACTIONS(1261), - [anon_sym_u128] = ACTIONS(1261), - [anon_sym_i128] = ACTIONS(1261), - [anon_sym_isize] = ACTIONS(1261), - [anon_sym_usize] = ACTIONS(1261), - [anon_sym_f32] = ACTIONS(1261), - [anon_sym_f64] = ACTIONS(1261), - [anon_sym_bool] = ACTIONS(1261), - [anon_sym_str] = ACTIONS(1261), - [anon_sym_char] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_as] = ACTIONS(1261), - [anon_sym_async] = ACTIONS(1261), - [anon_sym_await] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1261), - [anon_sym_const] = ACTIONS(1261), - [anon_sym_continue] = ACTIONS(1261), - [anon_sym_default] = ACTIONS(1261), - [anon_sym_enum] = ACTIONS(1261), - [anon_sym_fn] = ACTIONS(1261), - [anon_sym_for] = ACTIONS(1261), - [anon_sym_if] = ACTIONS(1261), - [anon_sym_impl] = ACTIONS(1261), - [anon_sym_let] = ACTIONS(1261), - [anon_sym_loop] = ACTIONS(1261), - [anon_sym_match] = ACTIONS(1261), - [anon_sym_mod] = ACTIONS(1261), - [anon_sym_pub] = ACTIONS(1261), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1261), - [anon_sym_struct] = ACTIONS(1261), - [anon_sym_trait] = ACTIONS(1261), - [anon_sym_type] = ACTIONS(1261), - [anon_sym_union] = ACTIONS(1261), - [anon_sym_unsafe] = ACTIONS(1261), - [anon_sym_use] = ACTIONS(1261), - [anon_sym_where] = ACTIONS(1261), - [anon_sym_while] = ACTIONS(1261), - [sym_mutable_specifier] = ACTIONS(1261), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1261), - [sym_super] = ACTIONS(1261), - [sym_crate] = ACTIONS(1261), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [aux_sym_token_tree_pattern_repeat1] = STATE(350), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [346] = { - [sym__token_pattern] = STATE(354), - [sym_token_tree_pattern] = STATE(354), - [sym_token_binding_pattern] = STATE(354), - [sym_token_repetition_pattern] = STATE(354), - [sym__literal] = STATE(354), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(354), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_as] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_await] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_fn] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_impl] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_pub] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_trait] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_unsafe] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_where] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [sym_mutable_specifier] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [347] = { - [sym__token_pattern] = STATE(351), - [sym_token_tree_pattern] = STATE(351), - [sym_token_binding_pattern] = STATE(351), - [sym_token_repetition_pattern] = STATE(351), - [sym__literal] = STATE(351), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(351), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1269), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_as] = ACTIONS(1267), - [anon_sym_async] = ACTIONS(1267), - [anon_sym_await] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_impl] = ACTIONS(1267), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_loop] = ACTIONS(1267), - [anon_sym_match] = ACTIONS(1267), - [anon_sym_mod] = ACTIONS(1267), - [anon_sym_pub] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_trait] = ACTIONS(1267), - [anon_sym_type] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_unsafe] = ACTIONS(1267), - [anon_sym_use] = ACTIONS(1267), - [anon_sym_where] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [aux_sym_token_tree_pattern_repeat1] = STATE(346), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [348] = { - [sym__token_pattern] = STATE(340), - [sym_token_tree_pattern] = STATE(340), - [sym_token_binding_pattern] = STATE(340), - [sym_token_repetition_pattern] = STATE(340), - [sym__literal] = STATE(340), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(340), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1227), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_as] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1271), - [anon_sym_await] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_impl] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1271), - [anon_sym_loop] = ACTIONS(1271), - [anon_sym_match] = ACTIONS(1271), - [anon_sym_mod] = ACTIONS(1271), - [anon_sym_pub] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_trait] = ACTIONS(1271), - [anon_sym_type] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_unsafe] = ACTIONS(1271), - [anon_sym_use] = ACTIONS(1271), - [anon_sym_where] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_crate] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [aux_sym_token_tree_pattern_repeat1] = STATE(344), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [349] = { - [sym__token_pattern] = STATE(339), - [sym_token_tree_pattern] = STATE(339), - [sym_token_binding_pattern] = STATE(339), - [sym_token_repetition_pattern] = STATE(339), - [sym__literal] = STATE(339), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1273), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1273), - [anon_sym_i8] = ACTIONS(1273), - [anon_sym_u16] = ACTIONS(1273), - [anon_sym_i16] = ACTIONS(1273), - [anon_sym_u32] = ACTIONS(1273), - [anon_sym_i32] = ACTIONS(1273), - [anon_sym_u64] = ACTIONS(1273), - [anon_sym_i64] = ACTIONS(1273), - [anon_sym_u128] = ACTIONS(1273), - [anon_sym_i128] = ACTIONS(1273), - [anon_sym_isize] = ACTIONS(1273), - [anon_sym_usize] = ACTIONS(1273), - [anon_sym_f32] = ACTIONS(1273), - [anon_sym_f64] = ACTIONS(1273), - [anon_sym_bool] = ACTIONS(1273), - [anon_sym_str] = ACTIONS(1273), - [anon_sym_char] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1273), - [anon_sym_as] = ACTIONS(1273), - [anon_sym_async] = ACTIONS(1273), - [anon_sym_await] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_fn] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_impl] = ACTIONS(1273), - [anon_sym_let] = ACTIONS(1273), - [anon_sym_loop] = ACTIONS(1273), - [anon_sym_match] = ACTIONS(1273), - [anon_sym_mod] = ACTIONS(1273), - [anon_sym_pub] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_trait] = ACTIONS(1273), - [anon_sym_type] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_unsafe] = ACTIONS(1273), - [anon_sym_use] = ACTIONS(1273), - [anon_sym_where] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [sym_mutable_specifier] = ACTIONS(1273), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1273), - [sym_super] = ACTIONS(1273), - [sym_crate] = ACTIONS(1273), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [aux_sym_token_tree_pattern_repeat1] = STATE(342), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [350] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_await] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [sym_mutable_specifier] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [351] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1207), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_await] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [sym_mutable_specifier] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [aux_sym_token_tree_pattern_repeat1] = STATE(353), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [352] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_RBRACK] = ACTIONS(1284), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1275), - [anon_sym_i8] = ACTIONS(1275), - [anon_sym_u16] = ACTIONS(1275), - [anon_sym_i16] = ACTIONS(1275), - [anon_sym_u32] = ACTIONS(1275), - [anon_sym_i32] = ACTIONS(1275), - [anon_sym_u64] = ACTIONS(1275), - [anon_sym_i64] = ACTIONS(1275), - [anon_sym_u128] = ACTIONS(1275), - [anon_sym_i128] = ACTIONS(1275), - [anon_sym_isize] = ACTIONS(1275), - [anon_sym_usize] = ACTIONS(1275), - [anon_sym_f32] = ACTIONS(1275), - [anon_sym_f64] = ACTIONS(1275), - [anon_sym_bool] = ACTIONS(1275), - [anon_sym_str] = ACTIONS(1275), - [anon_sym_char] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym__] = ACTIONS(1292), - [anon_sym_BSLASH] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1278), - [anon_sym_DASH_GT] = ACTIONS(1278), - [anon_sym_COMMA] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_AT] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_PERCENT] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_as] = ACTIONS(1275), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_await] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_fn] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [anon_sym_mod] = ACTIONS(1275), - [anon_sym_pub] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_trait] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_where] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [sym_mutable_specifier] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1298), - [aux_sym_string_literal_token1] = ACTIONS(1301), - [sym_char_literal] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1275), - [sym_super] = ACTIONS(1275), - [sym_crate] = ACTIONS(1275), - [sym_metavariable] = ACTIONS(1307), - [sym_raw_string_literal] = ACTIONS(1298), - [sym_float_literal] = ACTIONS(1298), - [sym_block_comment] = ACTIONS(3), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_RBRACK] = ACTIONS(1274), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1268), + [anon_sym_u8] = ACTIONS(1265), + [anon_sym_i8] = ACTIONS(1265), + [anon_sym_u16] = ACTIONS(1265), + [anon_sym_i16] = ACTIONS(1265), + [anon_sym_u32] = ACTIONS(1265), + [anon_sym_i32] = ACTIONS(1265), + [anon_sym_u64] = ACTIONS(1265), + [anon_sym_i64] = ACTIONS(1265), + [anon_sym_u128] = ACTIONS(1265), + [anon_sym_i128] = ACTIONS(1265), + [anon_sym_isize] = ACTIONS(1265), + [anon_sym_usize] = ACTIONS(1265), + [anon_sym_f32] = ACTIONS(1265), + [anon_sym_f64] = ACTIONS(1265), + [anon_sym_bool] = ACTIONS(1265), + [anon_sym_str] = ACTIONS(1265), + [anon_sym_char] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1282), + [anon_sym__] = ACTIONS(1282), + [anon_sym_BSLASH] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1268), + [anon_sym_DASH_GT] = ACTIONS(1268), + [anon_sym_COMMA] = ACTIONS(1268), + [anon_sym_COLON_COLON] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(1268), + [anon_sym_AT] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1268), + [anon_sym_PERCENT] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1268), + [anon_sym_GT] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1265), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_await] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1265), + [anon_sym_const] = ACTIONS(1265), + [anon_sym_continue] = ACTIONS(1265), + [anon_sym_default] = ACTIONS(1265), + [anon_sym_enum] = ACTIONS(1265), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_for] = ACTIONS(1265), + [anon_sym_if] = ACTIONS(1265), + [anon_sym_impl] = ACTIONS(1265), + [anon_sym_let] = ACTIONS(1265), + [anon_sym_loop] = ACTIONS(1265), + [anon_sym_match] = ACTIONS(1265), + [anon_sym_mod] = ACTIONS(1265), + [anon_sym_pub] = ACTIONS(1265), + [anon_sym_return] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1265), + [anon_sym_struct] = ACTIONS(1265), + [anon_sym_trait] = ACTIONS(1265), + [anon_sym_type] = ACTIONS(1265), + [anon_sym_union] = ACTIONS(1265), + [anon_sym_unsafe] = ACTIONS(1265), + [anon_sym_use] = ACTIONS(1265), + [anon_sym_where] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1265), + [sym_mutable_specifier] = ACTIONS(1265), + [sym_integer_literal] = ACTIONS(1288), + [aux_sym_string_literal_token1] = ACTIONS(1291), + [sym_char_literal] = ACTIONS(1288), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1265), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1297), + [sym_raw_string_literal] = ACTIONS(1288), + [sym_float_literal] = ACTIONS(1288), }, [353] = { - [sym__token_pattern] = STATE(350), - [sym_token_tree_pattern] = STATE(350), - [sym_token_binding_pattern] = STATE(350), - [sym_token_repetition_pattern] = STATE(350), - [sym__literal] = STATE(350), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(350), - [aux_sym__non_special_token_repeat1] = STATE(421), + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), + }, + [354] = { + [sym__token_pattern] = STATE(439), + [sym_token_tree_pattern] = STATE(445), + [sym_token_binding_pattern] = STATE(445), + [sym_token_repetition_pattern] = STATE(445), + [sym__literal] = STATE(445), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [aux_sym_token_tree_pattern_repeat1] = STATE(329), + [aux_sym__non_special_token_repeat1] = STATE(422), + [sym_identifier] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1201), + [anon_sym_i8] = ACTIONS(1201), + [anon_sym_u16] = ACTIONS(1201), + [anon_sym_i16] = ACTIONS(1201), + [anon_sym_u32] = ACTIONS(1201), + [anon_sym_i32] = ACTIONS(1201), + [anon_sym_u64] = ACTIONS(1201), + [anon_sym_i64] = ACTIONS(1201), + [anon_sym_u128] = ACTIONS(1201), + [anon_sym_i128] = ACTIONS(1201), + [anon_sym_isize] = ACTIONS(1201), + [anon_sym_usize] = ACTIONS(1201), + [anon_sym_f32] = ACTIONS(1201), + [anon_sym_f64] = ACTIONS(1201), + [anon_sym_bool] = ACTIONS(1201), + [anon_sym_str] = ACTIONS(1201), + [anon_sym_char] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1201), + [anon_sym_as] = ACTIONS(1201), + [anon_sym_async] = ACTIONS(1201), + [anon_sym_await] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_impl] = ACTIONS(1201), + [anon_sym_let] = ACTIONS(1201), + [anon_sym_loop] = ACTIONS(1201), + [anon_sym_match] = ACTIONS(1201), + [anon_sym_mod] = ACTIONS(1201), + [anon_sym_pub] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_trait] = ACTIONS(1201), + [anon_sym_type] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_unsafe] = ACTIONS(1201), + [anon_sym_use] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [sym_mutable_specifier] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_crate] = ACTIONS(1201), + [sym_metavariable] = ACTIONS(1223), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), + }, + [355] = { + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2833), + [sym_variadic_parameter] = STATE(2833), + [sym_parameter] = STATE(2833), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2525), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [356] = { + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(3076), + [sym_variadic_parameter] = STATE(3076), + [sym_parameter] = STATE(3076), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2802), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [357] = { + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2817), + [sym_variadic_parameter] = STATE(2817), + [sym_parameter] = STATE(2817), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2526), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [358] = { + [sym_function_modifiers] = STATE(3294), + [sym_self_parameter] = STATE(2813), + [sym_variadic_parameter] = STATE(2813), + [sym_parameter] = STATE(2813), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2534), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(2871), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3031), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1100), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [359] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(394), [sym_identifier] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), [anon_sym_u8] = ACTIONS(1310), [anon_sym_i8] = ACTIONS(1310), [anon_sym_u16] = ACTIONS(1310), @@ -58098,25 +59696,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1310), [anon_sym_str] = ACTIONS(1310), [anon_sym_char] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), [anon_sym_SQUOTE] = ACTIONS(1310), [anon_sym_as] = ACTIONS(1310), [anon_sym_async] = ACTIONS(1310), @@ -58146,10261 +59744,8766 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1310), [anon_sym_while] = ACTIONS(1310), [sym_mutable_specifier] = ACTIONS(1310), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(1310), [sym_super] = ACTIONS(1310), [sym_crate] = ACTIONS(1310), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [354] = { - [sym__token_pattern] = STATE(333), - [sym_token_tree_pattern] = STATE(333), - [sym_token_binding_pattern] = STATE(333), - [sym_token_repetition_pattern] = STATE(333), - [sym__literal] = STATE(333), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_pattern_repeat1] = STATE(333), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1203), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1209), - [anon_sym_COLON] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_QMARK] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym__] = ACTIONS(1211), - [anon_sym_BSLASH] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_EQ] = ACTIONS(1201), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_PERCENT] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_as] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_await] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_where] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [sym_mutable_specifier] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [355] = { - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2869), - [sym_variadic_parameter] = STATE(2869), - [sym_parameter] = STATE(2869), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2547), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [356] = { - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2776), - [sym_variadic_parameter] = STATE(2776), - [sym_parameter] = STATE(2776), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [357] = { - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(3083), - [sym_variadic_parameter] = STATE(3083), - [sym_parameter] = STATE(3083), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2729), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [358] = { - [sym_function_modifiers] = STATE(3276), - [sym_self_parameter] = STATE(2806), - [sym_variadic_parameter] = STATE(2806), - [sym_parameter] = STATE(2806), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2614), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(2826), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3180), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1058), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1064), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1072), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [359] = { - [sym_delim_token_tree] = STATE(399), - [sym__delim_tokens] = STATE(399), - [sym__non_delim_token] = STATE(399), - [sym__literal] = STATE(399), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_as] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_await] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_where] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [sym_mutable_specifier] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [360] = { - [sym_delim_token_tree] = STATE(406), - [sym__delim_tokens] = STATE(406), - [sym__non_delim_token] = STATE(406), - [sym__literal] = STATE(406), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1346), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1344), - [anon_sym_i8] = ACTIONS(1344), - [anon_sym_u16] = ACTIONS(1344), - [anon_sym_i16] = ACTIONS(1344), - [anon_sym_u32] = ACTIONS(1344), - [anon_sym_i32] = ACTIONS(1344), - [anon_sym_u64] = ACTIONS(1344), - [anon_sym_i64] = ACTIONS(1344), - [anon_sym_u128] = ACTIONS(1344), - [anon_sym_i128] = ACTIONS(1344), - [anon_sym_isize] = ACTIONS(1344), - [anon_sym_usize] = ACTIONS(1344), - [anon_sym_f32] = ACTIONS(1344), - [anon_sym_f64] = ACTIONS(1344), - [anon_sym_bool] = ACTIONS(1344), - [anon_sym_str] = ACTIONS(1344), - [anon_sym_char] = ACTIONS(1344), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_as] = ACTIONS(1344), - [anon_sym_async] = ACTIONS(1344), - [anon_sym_await] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_impl] = ACTIONS(1344), - [anon_sym_let] = ACTIONS(1344), - [anon_sym_loop] = ACTIONS(1344), - [anon_sym_match] = ACTIONS(1344), - [anon_sym_mod] = ACTIONS(1344), - [anon_sym_pub] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_trait] = ACTIONS(1344), - [anon_sym_type] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_unsafe] = ACTIONS(1344), - [anon_sym_use] = ACTIONS(1344), - [anon_sym_where] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [sym_mutable_specifier] = ACTIONS(1344), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1344), - [sym_super] = ACTIONS(1344), - [sym_crate] = ACTIONS(1344), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [361] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [362] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_RBRACK] = ACTIONS(1366), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [363] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [364] = { - [sym_delim_token_tree] = STATE(393), - [sym__delim_tokens] = STATE(393), - [sym__non_delim_token] = STATE(393), - [sym__literal] = STATE(393), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(393), - [sym_identifier] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1374), - [anon_sym_i8] = ACTIONS(1374), - [anon_sym_u16] = ACTIONS(1374), - [anon_sym_i16] = ACTIONS(1374), - [anon_sym_u32] = ACTIONS(1374), - [anon_sym_i32] = ACTIONS(1374), - [anon_sym_u64] = ACTIONS(1374), - [anon_sym_i64] = ACTIONS(1374), - [anon_sym_u128] = ACTIONS(1374), - [anon_sym_i128] = ACTIONS(1374), - [anon_sym_isize] = ACTIONS(1374), - [anon_sym_usize] = ACTIONS(1374), - [anon_sym_f32] = ACTIONS(1374), - [anon_sym_f64] = ACTIONS(1374), - [anon_sym_bool] = ACTIONS(1374), - [anon_sym_str] = ACTIONS(1374), - [anon_sym_char] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1374), - [anon_sym_async] = ACTIONS(1374), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_impl] = ACTIONS(1374), - [anon_sym_let] = ACTIONS(1374), - [anon_sym_loop] = ACTIONS(1374), - [anon_sym_match] = ACTIONS(1374), - [anon_sym_mod] = ACTIONS(1374), - [anon_sym_pub] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_trait] = ACTIONS(1374), - [anon_sym_type] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_unsafe] = ACTIONS(1374), - [anon_sym_use] = ACTIONS(1374), - [anon_sym_where] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [sym_mutable_specifier] = ACTIONS(1374), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1374), - [sym_super] = ACTIONS(1374), - [sym_crate] = ACTIONS(1374), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1336), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [365] = { - [sym_delim_token_tree] = STATE(379), - [sym__delim_tokens] = STATE(379), - [sym__non_delim_token] = STATE(379), - [sym__literal] = STATE(379), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1380), - [anon_sym_i8] = ACTIONS(1380), - [anon_sym_u16] = ACTIONS(1380), - [anon_sym_i16] = ACTIONS(1380), - [anon_sym_u32] = ACTIONS(1380), - [anon_sym_i32] = ACTIONS(1380), - [anon_sym_u64] = ACTIONS(1380), - [anon_sym_i64] = ACTIONS(1380), - [anon_sym_u128] = ACTIONS(1380), - [anon_sym_i128] = ACTIONS(1380), - [anon_sym_isize] = ACTIONS(1380), - [anon_sym_usize] = ACTIONS(1380), - [anon_sym_f32] = ACTIONS(1380), - [anon_sym_f64] = ACTIONS(1380), - [anon_sym_bool] = ACTIONS(1380), - [anon_sym_str] = ACTIONS(1380), - [anon_sym_char] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_as] = ACTIONS(1380), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_await] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_const] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_fn] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_impl] = ACTIONS(1380), - [anon_sym_let] = ACTIONS(1380), - [anon_sym_loop] = ACTIONS(1380), - [anon_sym_match] = ACTIONS(1380), - [anon_sym_mod] = ACTIONS(1380), - [anon_sym_pub] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_struct] = ACTIONS(1380), - [anon_sym_trait] = ACTIONS(1380), - [anon_sym_type] = ACTIONS(1380), - [anon_sym_union] = ACTIONS(1380), - [anon_sym_unsafe] = ACTIONS(1380), - [anon_sym_use] = ACTIONS(1380), - [anon_sym_where] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [sym_mutable_specifier] = ACTIONS(1380), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1380), - [sym_super] = ACTIONS(1380), - [sym_crate] = ACTIONS(1380), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [366] = { - [sym_delim_token_tree] = STATE(378), - [sym__delim_tokens] = STATE(378), - [sym__non_delim_token] = STATE(378), - [sym__literal] = STATE(378), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1384), - [anon_sym_i8] = ACTIONS(1384), - [anon_sym_u16] = ACTIONS(1384), - [anon_sym_i16] = ACTIONS(1384), - [anon_sym_u32] = ACTIONS(1384), - [anon_sym_i32] = ACTIONS(1384), - [anon_sym_u64] = ACTIONS(1384), - [anon_sym_i64] = ACTIONS(1384), - [anon_sym_u128] = ACTIONS(1384), - [anon_sym_i128] = ACTIONS(1384), - [anon_sym_isize] = ACTIONS(1384), - [anon_sym_usize] = ACTIONS(1384), - [anon_sym_f32] = ACTIONS(1384), - [anon_sym_f64] = ACTIONS(1384), - [anon_sym_bool] = ACTIONS(1384), - [anon_sym_str] = ACTIONS(1384), - [anon_sym_char] = ACTIONS(1384), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_as] = ACTIONS(1384), - [anon_sym_async] = ACTIONS(1384), - [anon_sym_await] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_const] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_fn] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_impl] = ACTIONS(1384), - [anon_sym_let] = ACTIONS(1384), - [anon_sym_loop] = ACTIONS(1384), - [anon_sym_match] = ACTIONS(1384), - [anon_sym_mod] = ACTIONS(1384), - [anon_sym_pub] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_struct] = ACTIONS(1384), - [anon_sym_trait] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_union] = ACTIONS(1384), - [anon_sym_unsafe] = ACTIONS(1384), - [anon_sym_use] = ACTIONS(1384), - [anon_sym_where] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [sym_mutable_specifier] = ACTIONS(1384), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1384), - [sym_super] = ACTIONS(1384), - [sym_crate] = ACTIONS(1384), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [367] = { - [sym_token_tree] = STATE(405), - [sym_token_repetition] = STATE(405), - [sym__literal] = STATE(405), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(405), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1388), - [anon_sym_i8] = ACTIONS(1388), - [anon_sym_u16] = ACTIONS(1388), - [anon_sym_i16] = ACTIONS(1388), - [anon_sym_u32] = ACTIONS(1388), - [anon_sym_i32] = ACTIONS(1388), - [anon_sym_u64] = ACTIONS(1388), - [anon_sym_i64] = ACTIONS(1388), - [anon_sym_u128] = ACTIONS(1388), - [anon_sym_i128] = ACTIONS(1388), - [anon_sym_isize] = ACTIONS(1388), - [anon_sym_usize] = ACTIONS(1388), - [anon_sym_f32] = ACTIONS(1388), - [anon_sym_f64] = ACTIONS(1388), - [anon_sym_bool] = ACTIONS(1388), - [anon_sym_str] = ACTIONS(1388), - [anon_sym_char] = ACTIONS(1388), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_as] = ACTIONS(1388), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_await] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_const] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_fn] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_impl] = ACTIONS(1388), - [anon_sym_let] = ACTIONS(1388), - [anon_sym_loop] = ACTIONS(1388), - [anon_sym_match] = ACTIONS(1388), - [anon_sym_mod] = ACTIONS(1388), - [anon_sym_pub] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_struct] = ACTIONS(1388), - [anon_sym_trait] = ACTIONS(1388), - [anon_sym_type] = ACTIONS(1388), - [anon_sym_union] = ACTIONS(1388), - [anon_sym_unsafe] = ACTIONS(1388), - [anon_sym_use] = ACTIONS(1388), - [anon_sym_where] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [sym_mutable_specifier] = ACTIONS(1388), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1388), - [sym_super] = ACTIONS(1388), - [sym_crate] = ACTIONS(1388), - [sym_metavariable] = ACTIONS(1392), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1338), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [368] = { - [sym_delim_token_tree] = STATE(396), - [sym__delim_tokens] = STATE(396), - [sym__non_delim_token] = STATE(396), - [sym__literal] = STATE(396), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1396), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1394), - [anon_sym_i8] = ACTIONS(1394), - [anon_sym_u16] = ACTIONS(1394), - [anon_sym_i16] = ACTIONS(1394), - [anon_sym_u32] = ACTIONS(1394), - [anon_sym_i32] = ACTIONS(1394), - [anon_sym_u64] = ACTIONS(1394), - [anon_sym_i64] = ACTIONS(1394), - [anon_sym_u128] = ACTIONS(1394), - [anon_sym_i128] = ACTIONS(1394), - [anon_sym_isize] = ACTIONS(1394), - [anon_sym_usize] = ACTIONS(1394), - [anon_sym_f32] = ACTIONS(1394), - [anon_sym_f64] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_str] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_async] = ACTIONS(1394), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_impl] = ACTIONS(1394), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_loop] = ACTIONS(1394), - [anon_sym_match] = ACTIONS(1394), - [anon_sym_mod] = ACTIONS(1394), - [anon_sym_pub] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_trait] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_unsafe] = ACTIONS(1394), - [anon_sym_use] = ACTIONS(1394), - [anon_sym_where] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [sym_mutable_specifier] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1394), - [sym_super] = ACTIONS(1394), - [sym_crate] = ACTIONS(1394), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [aux_sym_token_tree_repeat1] = STATE(378), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, [369] = { - [sym_delim_token_tree] = STATE(392), - [sym__delim_tokens] = STATE(392), - [sym__non_delim_token] = STATE(392), - [sym__literal] = STATE(392), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(392), - [sym_identifier] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1402), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1400), - [anon_sym_i8] = ACTIONS(1400), - [anon_sym_u16] = ACTIONS(1400), - [anon_sym_i16] = ACTIONS(1400), - [anon_sym_u32] = ACTIONS(1400), - [anon_sym_i32] = ACTIONS(1400), - [anon_sym_u64] = ACTIONS(1400), - [anon_sym_i64] = ACTIONS(1400), - [anon_sym_u128] = ACTIONS(1400), - [anon_sym_i128] = ACTIONS(1400), - [anon_sym_isize] = ACTIONS(1400), - [anon_sym_usize] = ACTIONS(1400), - [anon_sym_f32] = ACTIONS(1400), - [anon_sym_f64] = ACTIONS(1400), - [anon_sym_bool] = ACTIONS(1400), - [anon_sym_str] = ACTIONS(1400), - [anon_sym_char] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_as] = ACTIONS(1400), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_await] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_const] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_impl] = ACTIONS(1400), - [anon_sym_let] = ACTIONS(1400), - [anon_sym_loop] = ACTIONS(1400), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_mod] = ACTIONS(1400), - [anon_sym_pub] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_struct] = ACTIONS(1400), - [anon_sym_trait] = ACTIONS(1400), - [anon_sym_type] = ACTIONS(1400), - [anon_sym_union] = ACTIONS(1400), - [anon_sym_unsafe] = ACTIONS(1400), - [anon_sym_use] = ACTIONS(1400), - [anon_sym_where] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [sym_mutable_specifier] = ACTIONS(1400), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1400), - [sym_super] = ACTIONS(1400), - [sym_crate] = ACTIONS(1400), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(361), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [370] = { - [sym_delim_token_tree] = STATE(395), - [sym__delim_tokens] = STATE(395), - [sym__non_delim_token] = STATE(395), - [sym__literal] = STATE(395), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(395), - [sym_identifier] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1406), - [anon_sym_i8] = ACTIONS(1406), - [anon_sym_u16] = ACTIONS(1406), - [anon_sym_i16] = ACTIONS(1406), - [anon_sym_u32] = ACTIONS(1406), - [anon_sym_i32] = ACTIONS(1406), - [anon_sym_u64] = ACTIONS(1406), - [anon_sym_i64] = ACTIONS(1406), - [anon_sym_u128] = ACTIONS(1406), - [anon_sym_i128] = ACTIONS(1406), - [anon_sym_isize] = ACTIONS(1406), - [anon_sym_usize] = ACTIONS(1406), - [anon_sym_f32] = ACTIONS(1406), - [anon_sym_f64] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_str] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_as] = ACTIONS(1406), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_await] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_impl] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_pub] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_trait] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_where] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [sym_mutable_specifier] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1406), - [sym_super] = ACTIONS(1406), - [sym_crate] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [371] = { - [sym_delim_token_tree] = STATE(394), - [sym__delim_tokens] = STATE(394), - [sym__non_delim_token] = STATE(394), - [sym__literal] = STATE(394), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [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_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_await] = 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_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_where] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [sym_mutable_specifier] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_crate] = ACTIONS(1410), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, [372] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [373] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [374] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [375] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [376] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [377] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [378] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1418), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [379] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [380] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [381] = { - [sym_delim_token_tree] = STATE(372), - [sym__delim_tokens] = STATE(372), - [sym__non_delim_token] = STATE(372), - [sym__literal] = STATE(372), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1422), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1420), - [anon_sym_async] = ACTIONS(1420), - [anon_sym_await] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_impl] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_loop] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_pub] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_trait] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_unsafe] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_where] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [sym_mutable_specifier] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [382] = { - [sym_delim_token_tree] = STATE(400), - [sym__delim_tokens] = STATE(400), - [sym__non_delim_token] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_await] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_where] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [sym_mutable_specifier] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [373] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [aux_sym_token_tree_repeat1] = STATE(405), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [383] = { - [sym_delim_token_tree] = STATE(408), - [sym__delim_tokens] = STATE(408), - [sym__non_delim_token] = STATE(408), - [sym__literal] = STATE(408), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_await] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_where] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [sym_mutable_specifier] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [374] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [384] = { - [sym_delim_token_tree] = STATE(361), - [sym__delim_tokens] = STATE(361), - [sym__non_delim_token] = STATE(361), - [sym__literal] = STATE(361), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_where] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [sym_mutable_specifier] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [375] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [385] = { - [sym_delim_token_tree] = STATE(373), - [sym__delim_tokens] = STATE(373), - [sym__non_delim_token] = STATE(373), - [sym__literal] = STATE(373), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1438), - [anon_sym_i8] = ACTIONS(1438), - [anon_sym_u16] = ACTIONS(1438), - [anon_sym_i16] = ACTIONS(1438), - [anon_sym_u32] = ACTIONS(1438), - [anon_sym_i32] = ACTIONS(1438), - [anon_sym_u64] = ACTIONS(1438), - [anon_sym_i64] = ACTIONS(1438), - [anon_sym_u128] = ACTIONS(1438), - [anon_sym_i128] = ACTIONS(1438), - [anon_sym_isize] = ACTIONS(1438), - [anon_sym_usize] = ACTIONS(1438), - [anon_sym_f32] = ACTIONS(1438), - [anon_sym_f64] = ACTIONS(1438), - [anon_sym_bool] = ACTIONS(1438), - [anon_sym_str] = ACTIONS(1438), - [anon_sym_char] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_as] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_await] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_impl] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_loop] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1438), - [anon_sym_mod] = ACTIONS(1438), - [anon_sym_pub] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_trait] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_unsafe] = ACTIONS(1438), - [anon_sym_use] = ACTIONS(1438), - [anon_sym_where] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [sym_mutable_specifier] = ACTIONS(1438), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_crate] = ACTIONS(1438), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [376] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [386] = { - [sym_delim_token_tree] = STATE(374), - [sym__delim_tokens] = STATE(374), - [sym__non_delim_token] = STATE(374), - [sym__literal] = STATE(374), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [377] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u128] = ACTIONS(1442), - [anon_sym_i128] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_str] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_as] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_await] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_impl] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1442), - [anon_sym_loop] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_mod] = ACTIONS(1442), - [anon_sym_pub] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_trait] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsafe] = ACTIONS(1442), - [anon_sym_use] = ACTIONS(1442), - [anon_sym_where] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [sym_mutable_specifier] = ACTIONS(1442), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1442), - [sym_super] = ACTIONS(1442), - [sym_crate] = ACTIONS(1442), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [387] = { - [sym_delim_token_tree] = STATE(403), - [sym__delim_tokens] = STATE(403), - [sym__non_delim_token] = STATE(403), - [sym__literal] = STATE(403), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_as] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_await] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_where] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [sym_mutable_specifier] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [388] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), + [378] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_RBRACK] = ACTIONS(1416), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [389] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [390] = { - [sym_delim_token_tree] = STATE(389), - [sym__delim_tokens] = STATE(389), - [sym__non_delim_token] = STATE(389), - [sym__literal] = STATE(389), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(389), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1328), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [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_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_await] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_where] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [sym_mutable_specifier] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [391] = { - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_RBRACK] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1458), - [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_SLASH] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [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_for] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_else] = ACTIONS(1456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1456), - [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_AMP_EQ] = ACTIONS(1458), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), - [sym_block_comment] = ACTIONS(3), - }, - [392] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [393] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [394] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [395] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [379] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [396] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [380] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [397] = { - [sym_token_tree] = STATE(362), - [sym_token_repetition] = STATE(362), - [sym__literal] = STATE(362), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(362), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_RBRACK] = ACTIONS(1464), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_as] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_await] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_where] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [sym_mutable_specifier] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1466), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [398] = { - [sym_token_tree] = STATE(380), - [sym_token_repetition] = STATE(380), - [sym__literal] = STATE(380), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(380), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_as] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_await] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_loop] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_mod] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_where] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [sym_mutable_specifier] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [399] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [400] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [381] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [401] = { - [sym_token_tree] = STATE(376), - [sym_token_repetition] = STATE(376), - [sym__literal] = STATE(376), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(376), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [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_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_as] = ACTIONS(1476), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_await] = 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_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_where] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [sym_mutable_specifier] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1476), - [sym_super] = ACTIONS(1476), - [sym_crate] = ACTIONS(1476), - [sym_metavariable] = ACTIONS(1478), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [382] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(379), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1332), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [402] = { - [sym_delim_token_tree] = STATE(363), - [sym__delim_tokens] = STATE(363), - [sym__non_delim_token] = STATE(363), - [sym__literal] = STATE(363), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(363), - [sym_identifier] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1480), - [anon_sym_i8] = ACTIONS(1480), - [anon_sym_u16] = ACTIONS(1480), - [anon_sym_i16] = ACTIONS(1480), - [anon_sym_u32] = ACTIONS(1480), - [anon_sym_i32] = ACTIONS(1480), - [anon_sym_u64] = ACTIONS(1480), - [anon_sym_i64] = ACTIONS(1480), - [anon_sym_u128] = ACTIONS(1480), - [anon_sym_i128] = ACTIONS(1480), - [anon_sym_isize] = ACTIONS(1480), - [anon_sym_usize] = ACTIONS(1480), - [anon_sym_f32] = ACTIONS(1480), - [anon_sym_f64] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_str] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_as] = ACTIONS(1480), - [anon_sym_async] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_impl] = ACTIONS(1480), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_loop] = ACTIONS(1480), - [anon_sym_match] = ACTIONS(1480), - [anon_sym_mod] = ACTIONS(1480), - [anon_sym_pub] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_trait] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_unsafe] = ACTIONS(1480), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_where] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [sym_mutable_specifier] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1480), - [sym_super] = ACTIONS(1480), - [sym_crate] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [383] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [aux_sym_token_tree_repeat1] = STATE(397), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [403] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), + [384] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [aux_sym__non_special_token_repeat1] = STATE(429), [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [404] = { - [sym_token_tree] = STATE(388), - [sym_token_repetition] = STATE(388), - [sym__literal] = STATE(388), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(388), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [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_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_as] = ACTIONS(1484), - [anon_sym_async] = ACTIONS(1484), - [anon_sym_await] = 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_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_where] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [sym_mutable_specifier] = ACTIONS(1484), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1484), - [sym_super] = ACTIONS(1484), - [sym_crate] = ACTIONS(1484), - [sym_metavariable] = ACTIONS(1486), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [385] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [405] = { - [sym_token_tree] = STATE(352), - [sym_token_repetition] = STATE(352), - [sym__literal] = STATE(352), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_await] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_fn] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_impl] = ACTIONS(1356), - [anon_sym_let] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_mod] = ACTIONS(1356), - [anon_sym_pub] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_trait] = ACTIONS(1356), - [anon_sym_type] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_use] = ACTIONS(1356), - [anon_sym_where] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym_mutable_specifier] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), + [386] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [406] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), + [387] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [407] = { - [sym_token_tree] = STATE(375), - [sym_token_repetition] = STATE(375), - [sym__literal] = STATE(375), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(375), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_await] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_where] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [sym_mutable_specifier] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [408] = { - [sym_delim_token_tree] = STATE(343), - [sym__delim_tokens] = STATE(343), - [sym__non_delim_token] = STATE(343), - [sym__literal] = STATE(343), - [sym_string_literal] = STATE(449), - [sym_boolean_literal] = STATE(449), - [aux_sym__non_special_token_repeat1] = STATE(427), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_COLON] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym__] = ACTIONS(1334), - [anon_sym_BSLASH] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_DASH_GT] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_await] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_where] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [sym_mutable_specifier] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1338), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_raw_string_literal] = ACTIONS(1338), - [sym_float_literal] = ACTIONS(1338), - [sym_block_comment] = ACTIONS(3), - }, - [409] = { - [sym_token_tree] = STATE(377), - [sym_token_repetition] = STATE(377), - [sym__literal] = STATE(377), - [sym_string_literal] = STATE(430), - [sym_boolean_literal] = STATE(430), - [aux_sym_token_tree_repeat1] = STATE(377), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym__] = ACTIONS(1368), - [anon_sym_BSLASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_DASH_GT] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_AT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_as] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_await] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_where] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [sym_mutable_specifier] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1215), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1215), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1215), - [sym_float_literal] = ACTIONS(1215), - [sym_block_comment] = ACTIONS(3), - }, - [410] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2933), - [sym_bracketed_type] = STATE(3385), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3386), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2391), - [sym_scoped_identifier] = STATE(2082), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2641), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_RBRACK] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1020), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [411] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2039), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [412] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3385), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3386), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2391), - [sym_scoped_identifier] = STATE(2082), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2039), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [413] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2039), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1520), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [388] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [414] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1948), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1524), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1074), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [389] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [aux_sym_token_tree_repeat1] = STATE(400), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [415] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1948), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(835), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1528), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [390] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [aux_sym_token_tree_repeat1] = STATE(401), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [416] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1948), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [391] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [aux_sym_token_tree_repeat1] = STATE(402), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1368), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [417] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1948), - [sym_bracketed_type] = STATE(3385), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3386), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2391), - [sym_scoped_identifier] = STATE(2082), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1516), - [sym_super] = ACTIONS(1516), - [sym_crate] = ACTIONS(1516), - [sym_metavariable] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [392] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [418] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2039), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [393] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [419] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1948), - [sym_bracketed_type] = STATE(3383), - [sym_lifetime] = STATE(835), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3384), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2360), - [sym_scoped_identifier] = STATE(2065), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1536), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [394] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [420] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3374), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3375), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(2344), - [sym_scoped_identifier] = STATE(2140), - [sym_scoped_type_identifier] = STATE(2053), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2039), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u128] = ACTIONS(1022), - [anon_sym_i128] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_str] = ACTIONS(1022), - [anon_sym_char] = ACTIONS(1022), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1052), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_ref] = ACTIONS(1056), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1074), - [sym_super] = ACTIONS(1074), - [sym_crate] = ACTIONS(1074), - [sym_metavariable] = ACTIONS(1076), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [395] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [aux_sym_token_tree_repeat1] = STATE(352), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [421] = { - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_RBRACK] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_QMARK] = ACTIONS(1542), - [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_SLASH] = ACTIONS(1546), - [anon_sym__] = ACTIONS(1546), - [anon_sym_BSLASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1542), - [anon_sym_DASH_GT] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_DOT] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_PERCENT] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_await] = 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_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_where] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1544), - [aux_sym_string_literal_token1] = ACTIONS(1544), - [sym_char_literal] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(1544), - [sym_float_literal] = ACTIONS(1544), - [sym_block_comment] = ACTIONS(3), + [396] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1316), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [422] = { - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_RBRACK] = ACTIONS(1553), - [anon_sym_COLON] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(1550), - [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_SLASH] = ACTIONS(1555), - [anon_sym__] = ACTIONS(1555), - [anon_sym_BSLASH] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_EQ] = ACTIONS(1550), - [anon_sym_DASH_GT] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1550), - [anon_sym_COLON_COLON] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(1550), - [anon_sym_AT] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1550), - [anon_sym_PERCENT] = ACTIONS(1550), - [anon_sym_CARET] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_await] = 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_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_where] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [sym_mutable_specifier] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1553), - [aux_sym_string_literal_token1] = ACTIONS(1553), - [sym_char_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1553), - [sym_raw_string_literal] = ACTIONS(1553), - [sym_float_literal] = ACTIONS(1553), - [sym_block_comment] = ACTIONS(3), + [397] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), + [aux_sym_token_tree_repeat1] = STATE(352), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [423] = { - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_RBRACK] = ACTIONS(1560), - [anon_sym_COLON] = ACTIONS(1546), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_QMARK] = ACTIONS(1542), - [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_SLASH] = ACTIONS(1546), - [anon_sym__] = ACTIONS(1546), - [anon_sym_BSLASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1542), - [anon_sym_DASH_GT] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_DOT] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_PERCENT] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1558), - [anon_sym_as] = ACTIONS(1558), - [anon_sym_async] = ACTIONS(1558), - [anon_sym_await] = 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_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_where] = ACTIONS(1558), - [anon_sym_while] = ACTIONS(1558), - [sym_mutable_specifier] = ACTIONS(1558), - [sym_integer_literal] = ACTIONS(1560), - [aux_sym_string_literal_token1] = ACTIONS(1560), - [sym_char_literal] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1558), - [sym_super] = ACTIONS(1558), - [sym_crate] = ACTIONS(1558), - [sym_metavariable] = ACTIONS(1560), - [sym_raw_string_literal] = ACTIONS(1560), - [sym_float_literal] = ACTIONS(1560), - [sym_block_comment] = ACTIONS(3), + [398] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [aux_sym_token_tree_repeat1] = STATE(395), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [424] = { - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_RBRACK] = ACTIONS(1564), - [anon_sym_COLON] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_u8] = ACTIONS(1562), - [anon_sym_i8] = ACTIONS(1562), - [anon_sym_u16] = ACTIONS(1562), - [anon_sym_i16] = ACTIONS(1562), - [anon_sym_u32] = ACTIONS(1562), - [anon_sym_i32] = ACTIONS(1562), - [anon_sym_u64] = ACTIONS(1562), - [anon_sym_i64] = ACTIONS(1562), - [anon_sym_u128] = ACTIONS(1562), - [anon_sym_i128] = ACTIONS(1562), - [anon_sym_isize] = ACTIONS(1562), - [anon_sym_usize] = ACTIONS(1562), - [anon_sym_f32] = ACTIONS(1562), - [anon_sym_f64] = ACTIONS(1562), - [anon_sym_bool] = ACTIONS(1562), - [anon_sym_str] = ACTIONS(1562), - [anon_sym_char] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym__] = ACTIONS(1562), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1564), - [anon_sym_DASH_GT] = ACTIONS(1564), - [anon_sym_COMMA] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_AT] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_PERCENT] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_as] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_impl] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_loop] = ACTIONS(1562), - [anon_sym_match] = ACTIONS(1562), - [anon_sym_mod] = ACTIONS(1562), - [anon_sym_pub] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_struct] = ACTIONS(1562), - [anon_sym_trait] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_union] = ACTIONS(1562), - [anon_sym_unsafe] = ACTIONS(1562), - [anon_sym_use] = ACTIONS(1562), - [anon_sym_where] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [sym_mutable_specifier] = ACTIONS(1562), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_crate] = ACTIONS(1562), - [sym_metavariable] = ACTIONS(1564), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), - [sym_block_comment] = ACTIONS(3), + [399] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [425] = { - [sym_identifier] = ACTIONS(1566), - [anon_sym_SEMI] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_RBRACK] = ACTIONS(1568), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_DOLLAR] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_QMARK] = ACTIONS(1568), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym__] = ACTIONS(1566), - [anon_sym_BSLASH] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1568), - [anon_sym_DASH_GT] = ACTIONS(1568), - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_DOT] = ACTIONS(1568), - [anon_sym_AT] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_PERCENT] = ACTIONS(1568), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1568), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_SQUOTE] = ACTIONS(1566), - [anon_sym_as] = ACTIONS(1566), - [anon_sym_async] = ACTIONS(1566), - [anon_sym_await] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_const] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_enum] = ACTIONS(1566), - [anon_sym_fn] = ACTIONS(1566), - [anon_sym_for] = ACTIONS(1566), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_impl] = ACTIONS(1566), - [anon_sym_let] = ACTIONS(1566), - [anon_sym_loop] = ACTIONS(1566), - [anon_sym_match] = ACTIONS(1566), - [anon_sym_mod] = ACTIONS(1566), - [anon_sym_pub] = ACTIONS(1566), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_struct] = ACTIONS(1566), - [anon_sym_trait] = ACTIONS(1566), - [anon_sym_type] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1566), - [anon_sym_unsafe] = ACTIONS(1566), - [anon_sym_use] = ACTIONS(1566), - [anon_sym_where] = ACTIONS(1566), - [anon_sym_while] = ACTIONS(1566), - [sym_mutable_specifier] = ACTIONS(1566), - [sym_integer_literal] = ACTIONS(1568), - [aux_sym_string_literal_token1] = ACTIONS(1568), - [sym_char_literal] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1566), - [sym_super] = ACTIONS(1566), - [sym_crate] = ACTIONS(1566), - [sym_metavariable] = ACTIONS(1568), - [sym_raw_string_literal] = ACTIONS(1568), - [sym_float_literal] = ACTIONS(1568), - [sym_block_comment] = ACTIONS(3), + [400] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), + [aux_sym_token_tree_repeat1] = STATE(352), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [426] = { - [sym_identifier] = ACTIONS(1570), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_COLON] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_QMARK] = ACTIONS(1572), - [anon_sym_u8] = ACTIONS(1570), - [anon_sym_i8] = ACTIONS(1570), - [anon_sym_u16] = ACTIONS(1570), - [anon_sym_i16] = ACTIONS(1570), - [anon_sym_u32] = ACTIONS(1570), - [anon_sym_i32] = ACTIONS(1570), - [anon_sym_u64] = ACTIONS(1570), - [anon_sym_i64] = ACTIONS(1570), - [anon_sym_u128] = ACTIONS(1570), - [anon_sym_i128] = ACTIONS(1570), - [anon_sym_isize] = ACTIONS(1570), - [anon_sym_usize] = ACTIONS(1570), - [anon_sym_f32] = ACTIONS(1570), - [anon_sym_f64] = ACTIONS(1570), - [anon_sym_bool] = ACTIONS(1570), - [anon_sym_str] = ACTIONS(1570), - [anon_sym_char] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1570), - [anon_sym__] = ACTIONS(1570), - [anon_sym_BSLASH] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_EQ] = ACTIONS(1572), - [anon_sym_DASH_GT] = ACTIONS(1572), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1572), - [anon_sym_DOT] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_PERCENT] = ACTIONS(1572), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_TILDE] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1570), - [anon_sym_as] = ACTIONS(1570), - [anon_sym_async] = ACTIONS(1570), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_const] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_enum] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1570), - [anon_sym_for] = ACTIONS(1570), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_impl] = ACTIONS(1570), - [anon_sym_let] = ACTIONS(1570), - [anon_sym_loop] = ACTIONS(1570), - [anon_sym_match] = ACTIONS(1570), - [anon_sym_mod] = ACTIONS(1570), - [anon_sym_pub] = ACTIONS(1570), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_struct] = ACTIONS(1570), - [anon_sym_trait] = ACTIONS(1570), - [anon_sym_type] = ACTIONS(1570), - [anon_sym_union] = ACTIONS(1570), - [anon_sym_unsafe] = ACTIONS(1570), - [anon_sym_use] = ACTIONS(1570), - [anon_sym_where] = ACTIONS(1570), - [anon_sym_while] = ACTIONS(1570), - [sym_mutable_specifier] = ACTIONS(1570), - [sym_integer_literal] = ACTIONS(1572), - [aux_sym_string_literal_token1] = ACTIONS(1572), - [sym_char_literal] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1570), - [sym_super] = ACTIONS(1570), - [sym_crate] = ACTIONS(1570), - [sym_metavariable] = ACTIONS(1572), - [sym_raw_string_literal] = ACTIONS(1572), - [sym_float_literal] = ACTIONS(1572), - [sym_block_comment] = ACTIONS(3), + [401] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [aux_sym_token_tree_repeat1] = STATE(352), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [427] = { - [aux_sym__non_special_token_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_RPAREN] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1578), - [anon_sym_COLON] = ACTIONS(1580), - [anon_sym_DOLLAR] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_STAR] = ACTIONS(1576), - [anon_sym_QMARK] = ACTIONS(1576), - [anon_sym_u8] = ACTIONS(1574), - [anon_sym_i8] = ACTIONS(1574), - [anon_sym_u16] = ACTIONS(1574), - [anon_sym_i16] = ACTIONS(1574), - [anon_sym_u32] = ACTIONS(1574), - [anon_sym_i32] = ACTIONS(1574), - [anon_sym_u64] = ACTIONS(1574), - [anon_sym_i64] = ACTIONS(1574), - [anon_sym_u128] = ACTIONS(1574), - [anon_sym_i128] = ACTIONS(1574), - [anon_sym_isize] = ACTIONS(1574), - [anon_sym_usize] = ACTIONS(1574), - [anon_sym_f32] = ACTIONS(1574), - [anon_sym_f64] = ACTIONS(1574), - [anon_sym_bool] = ACTIONS(1574), - [anon_sym_str] = ACTIONS(1574), - [anon_sym_char] = ACTIONS(1574), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym__] = ACTIONS(1580), - [anon_sym_BSLASH] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_EQ] = ACTIONS(1576), - [anon_sym_DASH_GT] = ACTIONS(1576), - [anon_sym_COMMA] = ACTIONS(1576), - [anon_sym_COLON_COLON] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_DOT] = ACTIONS(1576), - [anon_sym_AT] = ACTIONS(1576), - [anon_sym_AMP] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(1576), - [anon_sym_PERCENT] = ACTIONS(1576), - [anon_sym_CARET] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1576), - [anon_sym_GT] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1576), - [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_as] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_await] = ACTIONS(1574), - [anon_sym_break] = ACTIONS(1574), - [anon_sym_const] = ACTIONS(1574), - [anon_sym_continue] = ACTIONS(1574), - [anon_sym_default] = ACTIONS(1574), - [anon_sym_enum] = ACTIONS(1574), - [anon_sym_fn] = ACTIONS(1574), - [anon_sym_for] = ACTIONS(1574), - [anon_sym_if] = ACTIONS(1574), - [anon_sym_impl] = ACTIONS(1574), - [anon_sym_let] = ACTIONS(1574), - [anon_sym_loop] = ACTIONS(1574), - [anon_sym_match] = ACTIONS(1574), - [anon_sym_mod] = ACTIONS(1574), - [anon_sym_pub] = ACTIONS(1574), - [anon_sym_return] = ACTIONS(1574), - [anon_sym_static] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1574), - [anon_sym_trait] = ACTIONS(1574), - [anon_sym_type] = ACTIONS(1574), - [anon_sym_union] = ACTIONS(1574), - [anon_sym_unsafe] = ACTIONS(1574), - [anon_sym_use] = ACTIONS(1574), - [anon_sym_where] = ACTIONS(1574), - [anon_sym_while] = ACTIONS(1574), - [sym_mutable_specifier] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1578), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1574), - [anon_sym_false] = ACTIONS(1574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1574), - [sym_super] = ACTIONS(1574), - [sym_crate] = ACTIONS(1574), - [sym_raw_string_literal] = ACTIONS(1578), - [sym_float_literal] = ACTIONS(1578), - [sym_block_comment] = ACTIONS(3), + [402] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [aux_sym_token_tree_repeat1] = STATE(352), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [428] = { - [sym_identifier] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1584), - [anon_sym_RPAREN] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_RBRACK] = ACTIONS(1584), - [anon_sym_COLON] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1582), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_STAR] = ACTIONS(1584), - [anon_sym_QMARK] = ACTIONS(1584), - [anon_sym_u8] = ACTIONS(1582), - [anon_sym_i8] = ACTIONS(1582), - [anon_sym_u16] = ACTIONS(1582), - [anon_sym_i16] = ACTIONS(1582), - [anon_sym_u32] = ACTIONS(1582), - [anon_sym_i32] = ACTIONS(1582), - [anon_sym_u64] = ACTIONS(1582), - [anon_sym_i64] = ACTIONS(1582), - [anon_sym_u128] = ACTIONS(1582), - [anon_sym_i128] = ACTIONS(1582), - [anon_sym_isize] = ACTIONS(1582), - [anon_sym_usize] = ACTIONS(1582), - [anon_sym_f32] = ACTIONS(1582), - [anon_sym_f64] = ACTIONS(1582), - [anon_sym_bool] = ACTIONS(1582), - [anon_sym_str] = ACTIONS(1582), - [anon_sym_char] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1582), - [anon_sym__] = ACTIONS(1582), - [anon_sym_BSLASH] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1584), - [anon_sym_DASH_GT] = ACTIONS(1584), - [anon_sym_COMMA] = ACTIONS(1584), - [anon_sym_COLON_COLON] = ACTIONS(1584), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1584), - [anon_sym_PERCENT] = ACTIONS(1584), - [anon_sym_CARET] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_TILDE] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1582), - [anon_sym_as] = ACTIONS(1582), - [anon_sym_async] = ACTIONS(1582), - [anon_sym_await] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1582), - [anon_sym_default] = ACTIONS(1582), - [anon_sym_enum] = ACTIONS(1582), - [anon_sym_fn] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_impl] = ACTIONS(1582), - [anon_sym_let] = ACTIONS(1582), - [anon_sym_loop] = ACTIONS(1582), - [anon_sym_match] = ACTIONS(1582), - [anon_sym_mod] = ACTIONS(1582), - [anon_sym_pub] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(1582), - [anon_sym_trait] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_union] = ACTIONS(1582), - [anon_sym_unsafe] = ACTIONS(1582), - [anon_sym_use] = ACTIONS(1582), - [anon_sym_where] = ACTIONS(1582), - [anon_sym_while] = ACTIONS(1582), - [sym_mutable_specifier] = ACTIONS(1582), - [sym_integer_literal] = ACTIONS(1584), - [aux_sym_string_literal_token1] = ACTIONS(1584), - [sym_char_literal] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1582), - [anon_sym_false] = ACTIONS(1582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1584), - [sym_float_literal] = ACTIONS(1584), - [sym_block_comment] = ACTIONS(3), - }, - [429] = { - [sym_identifier] = ACTIONS(1586), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_RPAREN] = ACTIONS(1588), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1588), - [anon_sym_COLON] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(1586), - [anon_sym_PLUS] = ACTIONS(1588), - [anon_sym_STAR] = ACTIONS(1588), - [anon_sym_QMARK] = ACTIONS(1588), - [anon_sym_u8] = ACTIONS(1586), - [anon_sym_i8] = ACTIONS(1586), - [anon_sym_u16] = ACTIONS(1586), - [anon_sym_i16] = ACTIONS(1586), - [anon_sym_u32] = ACTIONS(1586), - [anon_sym_i32] = ACTIONS(1586), - [anon_sym_u64] = ACTIONS(1586), - [anon_sym_i64] = ACTIONS(1586), - [anon_sym_u128] = ACTIONS(1586), - [anon_sym_i128] = ACTIONS(1586), - [anon_sym_isize] = ACTIONS(1586), - [anon_sym_usize] = ACTIONS(1586), - [anon_sym_f32] = ACTIONS(1586), - [anon_sym_f64] = ACTIONS(1586), - [anon_sym_bool] = ACTIONS(1586), - [anon_sym_str] = ACTIONS(1586), - [anon_sym_char] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(1586), - [anon_sym__] = ACTIONS(1586), - [anon_sym_BSLASH] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_EQ] = ACTIONS(1588), - [anon_sym_DASH_GT] = ACTIONS(1588), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_COLON_COLON] = ACTIONS(1588), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(1588), - [anon_sym_PERCENT] = ACTIONS(1588), - [anon_sym_CARET] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1588), - [anon_sym_GT] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_async] = ACTIONS(1586), - [anon_sym_await] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_default] = ACTIONS(1586), - [anon_sym_enum] = ACTIONS(1586), - [anon_sym_fn] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_impl] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1586), - [anon_sym_loop] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_mod] = ACTIONS(1586), - [anon_sym_pub] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_struct] = ACTIONS(1586), - [anon_sym_trait] = ACTIONS(1586), - [anon_sym_type] = ACTIONS(1586), - [anon_sym_union] = ACTIONS(1586), - [anon_sym_unsafe] = ACTIONS(1586), - [anon_sym_use] = ACTIONS(1586), - [anon_sym_where] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [sym_mutable_specifier] = ACTIONS(1586), - [sym_integer_literal] = ACTIONS(1588), - [aux_sym_string_literal_token1] = ACTIONS(1588), - [sym_char_literal] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1586), - [anon_sym_false] = ACTIONS(1586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1586), - [sym_super] = ACTIONS(1586), - [sym_crate] = ACTIONS(1586), - [sym_metavariable] = ACTIONS(1588), - [sym_raw_string_literal] = ACTIONS(1588), - [sym_float_literal] = ACTIONS(1588), - [sym_block_comment] = ACTIONS(3), + [403] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [430] = { - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_RPAREN] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_RBRACK] = ACTIONS(1592), - [anon_sym_COLON] = ACTIONS(1590), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_QMARK] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1590), - [anon_sym_i8] = ACTIONS(1590), - [anon_sym_u16] = ACTIONS(1590), - [anon_sym_i16] = ACTIONS(1590), - [anon_sym_u32] = ACTIONS(1590), - [anon_sym_i32] = ACTIONS(1590), - [anon_sym_u64] = ACTIONS(1590), - [anon_sym_i64] = ACTIONS(1590), - [anon_sym_u128] = ACTIONS(1590), - [anon_sym_i128] = ACTIONS(1590), - [anon_sym_isize] = ACTIONS(1590), - [anon_sym_usize] = ACTIONS(1590), - [anon_sym_f32] = ACTIONS(1590), - [anon_sym_f64] = ACTIONS(1590), - [anon_sym_bool] = ACTIONS(1590), - [anon_sym_str] = ACTIONS(1590), - [anon_sym_char] = ACTIONS(1590), - [anon_sym_SLASH] = ACTIONS(1590), - [anon_sym__] = ACTIONS(1590), - [anon_sym_BSLASH] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_DASH_GT] = ACTIONS(1592), - [anon_sym_COMMA] = ACTIONS(1592), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_DOT] = ACTIONS(1592), - [anon_sym_AT] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1592), - [anon_sym_CARET] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_as] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(1590), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_enum] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_impl] = ACTIONS(1590), - [anon_sym_let] = ACTIONS(1590), - [anon_sym_loop] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [anon_sym_mod] = ACTIONS(1590), - [anon_sym_pub] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_struct] = ACTIONS(1590), - [anon_sym_trait] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_union] = ACTIONS(1590), - [anon_sym_unsafe] = ACTIONS(1590), - [anon_sym_use] = ACTIONS(1590), - [anon_sym_where] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1590), - [sym_mutable_specifier] = ACTIONS(1590), - [sym_integer_literal] = ACTIONS(1592), - [aux_sym_string_literal_token1] = ACTIONS(1592), - [sym_char_literal] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1590), - [sym_super] = ACTIONS(1590), - [sym_crate] = ACTIONS(1590), - [sym_metavariable] = ACTIONS(1592), - [sym_raw_string_literal] = ACTIONS(1592), - [sym_float_literal] = ACTIONS(1592), - [sym_block_comment] = ACTIONS(3), + [404] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [sym_identifier] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_COLON] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_EQ] = ACTIONS(1376), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_PERCENT] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_GT] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_unsafe] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), + [anon_sym_AMP_AMP] = ACTIONS(1378), + [anon_sym_PIPE_PIPE] = ACTIONS(1378), + [anon_sym_EQ_EQ] = ACTIONS(1378), + [anon_sym_BANG_EQ] = ACTIONS(1378), + [anon_sym_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_EQ] = ACTIONS(1378), + [anon_sym_LT_LT] = ACTIONS(1376), + [anon_sym_GT_GT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1378), + [anon_sym_DASH_EQ] = ACTIONS(1378), + [anon_sym_STAR_EQ] = ACTIONS(1378), + [anon_sym_SLASH_EQ] = ACTIONS(1378), + [anon_sym_PERCENT_EQ] = ACTIONS(1378), + [anon_sym_AMP_EQ] = ACTIONS(1378), + [anon_sym_PIPE_EQ] = ACTIONS(1378), + [anon_sym_CARET_EQ] = ACTIONS(1378), + [anon_sym_LT_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_GT_EQ] = ACTIONS(1378), + [anon_sym_yield] = ACTIONS(1376), + [anon_sym_move] = ACTIONS(1376), + [anon_sym_try] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1378), + [sym_raw_string_literal] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), }, - [431] = { - [aux_sym__non_special_token_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_RBRACK] = ACTIONS(1553), - [anon_sym_COLON] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_QMARK] = ACTIONS(1594), - [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_SLASH] = ACTIONS(1597), - [anon_sym__] = ACTIONS(1597), - [anon_sym_BSLASH] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_EQ] = ACTIONS(1594), - [anon_sym_DASH_GT] = ACTIONS(1594), - [anon_sym_COMMA] = ACTIONS(1594), - [anon_sym_COLON_COLON] = ACTIONS(1594), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_DOT] = ACTIONS(1594), - [anon_sym_AT] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_POUND] = ACTIONS(1594), - [anon_sym_PERCENT] = ACTIONS(1594), - [anon_sym_CARET] = ACTIONS(1594), - [anon_sym_LT] = ACTIONS(1594), - [anon_sym_GT] = ACTIONS(1594), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_TILDE] = ACTIONS(1594), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_await] = 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_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_where] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [sym_mutable_specifier] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1553), - [aux_sym_string_literal_token1] = ACTIONS(1553), - [sym_char_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_raw_string_literal] = ACTIONS(1553), - [sym_float_literal] = ACTIONS(1553), - [sym_block_comment] = ACTIONS(3), + [405] = { + [sym_token_tree] = STATE(437), + [sym_token_repetition] = STATE(437), + [sym__literal] = STATE(437), + [sym_string_literal] = STATE(432), + [sym_boolean_literal] = STATE(432), + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), + [aux_sym_token_tree_repeat1] = STATE(352), + [aux_sym__non_special_token_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_RBRACK] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_as] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_await] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_where] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [sym_mutable_specifier] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1217), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1217), }, - [432] = { - [sym_identifier] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_u8] = ACTIONS(1600), - [anon_sym_i8] = ACTIONS(1600), - [anon_sym_u16] = ACTIONS(1600), - [anon_sym_i16] = ACTIONS(1600), - [anon_sym_u32] = ACTIONS(1600), - [anon_sym_i32] = ACTIONS(1600), - [anon_sym_u64] = ACTIONS(1600), - [anon_sym_i64] = ACTIONS(1600), - [anon_sym_u128] = ACTIONS(1600), - [anon_sym_i128] = ACTIONS(1600), - [anon_sym_isize] = ACTIONS(1600), - [anon_sym_usize] = ACTIONS(1600), - [anon_sym_f32] = ACTIONS(1600), - [anon_sym_f64] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_str] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym__] = ACTIONS(1600), - [anon_sym_BSLASH] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_EQ] = ACTIONS(1602), - [anon_sym_DASH_GT] = ACTIONS(1602), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_DOT] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1602), - [anon_sym_CARET] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_as] = ACTIONS(1600), - [anon_sym_async] = ACTIONS(1600), - [anon_sym_await] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_default] = ACTIONS(1600), - [anon_sym_enum] = ACTIONS(1600), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_impl] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_pub] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_struct] = ACTIONS(1600), - [anon_sym_trait] = ACTIONS(1600), - [anon_sym_type] = ACTIONS(1600), - [anon_sym_union] = ACTIONS(1600), - [anon_sym_unsafe] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_where] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [sym_mutable_specifier] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [aux_sym_string_literal_token1] = ACTIONS(1602), - [sym_char_literal] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1600), - [sym_super] = ACTIONS(1600), - [sym_crate] = ACTIONS(1600), - [sym_metavariable] = ACTIONS(1602), - [sym_raw_string_literal] = ACTIONS(1602), - [sym_float_literal] = ACTIONS(1602), - [sym_block_comment] = ACTIONS(3), + [406] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [433] = { - [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_RPAREN] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1606), - [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_SLASH] = ACTIONS(1604), - [anon_sym__] = ACTIONS(1604), - [anon_sym_BSLASH] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_EQ] = ACTIONS(1606), - [anon_sym_DASH_GT] = ACTIONS(1606), - [anon_sym_COMMA] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_AT] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1606), - [anon_sym_POUND] = ACTIONS(1606), - [anon_sym_PERCENT] = ACTIONS(1606), - [anon_sym_CARET] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1606), - [anon_sym_GT] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_await] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_enum] = ACTIONS(1604), - [anon_sym_fn] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_impl] = ACTIONS(1604), - [anon_sym_let] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_mod] = ACTIONS(1604), - [anon_sym_pub] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_struct] = ACTIONS(1604), - [anon_sym_trait] = ACTIONS(1604), - [anon_sym_type] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_use] = ACTIONS(1604), - [anon_sym_where] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [sym_mutable_specifier] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1606), - [sym_raw_string_literal] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), - [sym_block_comment] = ACTIONS(3), + [407] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [434] = { - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_EQ_GT] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1458), - [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_SLASH] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [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_for] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1456), - [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_AMP_EQ] = ACTIONS(1458), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), - [sym_block_comment] = ACTIONS(3), + [408] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(403), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [435] = { - [sym_identifier] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_RBRACK] = ACTIONS(1610), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_QMARK] = 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_SLASH] = ACTIONS(1608), - [anon_sym__] = ACTIONS(1608), - [anon_sym_BSLASH] = ACTIONS(1610), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_EQ] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1610), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_AT] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_POUND] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_as] = ACTIONS(1608), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_await] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_enum] = ACTIONS(1608), - [anon_sym_fn] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_impl] = ACTIONS(1608), - [anon_sym_let] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_mod] = ACTIONS(1608), - [anon_sym_pub] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_struct] = ACTIONS(1608), - [anon_sym_trait] = ACTIONS(1608), - [anon_sym_type] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_unsafe] = ACTIONS(1608), - [anon_sym_use] = ACTIONS(1608), - [anon_sym_where] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [sym_mutable_specifier] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1608), - [sym_super] = ACTIONS(1608), - [sym_crate] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1610), - [sym_raw_string_literal] = ACTIONS(1610), - [sym_float_literal] = ACTIONS(1610), - [sym_block_comment] = ACTIONS(3), + [409] = { + [sym_delim_token_tree] = STATE(455), + [sym__delim_tokens] = STATE(457), + [sym__non_delim_token] = STATE(455), + [sym__literal] = STATE(454), + [sym_string_literal] = STATE(453), + [sym_boolean_literal] = STATE(453), + [sym_line_comment] = STATE(409), + [sym_block_comment] = STATE(409), + [aux_sym__non_special_token_repeat1] = STATE(429), + [aux_sym_delim_token_tree_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RBRACK] = ACTIONS(1380), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_as] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_where] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [sym_mutable_specifier] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), }, - [436] = { - [sym_identifier] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_RPAREN] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_RBRACE] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_RBRACK] = ACTIONS(1614), - [anon_sym_COLON] = ACTIONS(1612), - [anon_sym_DOLLAR] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_QMARK] = 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_SLASH] = ACTIONS(1612), - [anon_sym__] = ACTIONS(1612), - [anon_sym_BSLASH] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1614), - [anon_sym_DASH_GT] = ACTIONS(1614), - [anon_sym_COMMA] = ACTIONS(1614), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_DOT] = ACTIONS(1614), - [anon_sym_AT] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_POUND] = ACTIONS(1614), - [anon_sym_PERCENT] = ACTIONS(1614), - [anon_sym_CARET] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_await] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_fn] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_impl] = ACTIONS(1612), - [anon_sym_let] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_mod] = ACTIONS(1612), - [anon_sym_pub] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_trait] = ACTIONS(1612), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_use] = ACTIONS(1612), - [anon_sym_where] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [sym_mutable_specifier] = 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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1614), - [sym_raw_string_literal] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), - [sym_block_comment] = ACTIONS(3), + [410] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2876), + [sym_bracketed_type] = STATE(3426), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3427), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2424), + [sym_scoped_identifier] = STATE(2139), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2642), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [437] = { - [sym_identifier] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_RBRACE] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_RBRACK] = ACTIONS(1618), - [anon_sym_COLON] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1618), - [anon_sym_STAR] = ACTIONS(1618), - [anon_sym_QMARK] = ACTIONS(1618), - [anon_sym_u8] = ACTIONS(1616), - [anon_sym_i8] = ACTIONS(1616), - [anon_sym_u16] = ACTIONS(1616), - [anon_sym_i16] = ACTIONS(1616), - [anon_sym_u32] = ACTIONS(1616), - [anon_sym_i32] = ACTIONS(1616), - [anon_sym_u64] = ACTIONS(1616), - [anon_sym_i64] = ACTIONS(1616), - [anon_sym_u128] = ACTIONS(1616), - [anon_sym_i128] = ACTIONS(1616), - [anon_sym_isize] = ACTIONS(1616), - [anon_sym_usize] = ACTIONS(1616), - [anon_sym_f32] = ACTIONS(1616), - [anon_sym_f64] = ACTIONS(1616), - [anon_sym_bool] = ACTIONS(1616), - [anon_sym_str] = ACTIONS(1616), - [anon_sym_char] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym__] = ACTIONS(1616), - [anon_sym_BSLASH] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_EQ] = ACTIONS(1618), - [anon_sym_DASH_GT] = ACTIONS(1618), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_COLON_COLON] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_DOT] = ACTIONS(1618), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1618), - [anon_sym_PERCENT] = ACTIONS(1618), - [anon_sym_CARET] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1616), - [anon_sym_await] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_continue] = ACTIONS(1616), - [anon_sym_default] = ACTIONS(1616), - [anon_sym_enum] = ACTIONS(1616), - [anon_sym_fn] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_impl] = ACTIONS(1616), - [anon_sym_let] = ACTIONS(1616), - [anon_sym_loop] = ACTIONS(1616), - [anon_sym_match] = ACTIONS(1616), - [anon_sym_mod] = ACTIONS(1616), - [anon_sym_pub] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_static] = ACTIONS(1616), - [anon_sym_struct] = ACTIONS(1616), - [anon_sym_trait] = ACTIONS(1616), - [anon_sym_type] = ACTIONS(1616), - [anon_sym_union] = ACTIONS(1616), - [anon_sym_unsafe] = ACTIONS(1616), - [anon_sym_use] = ACTIONS(1616), - [anon_sym_where] = ACTIONS(1616), - [anon_sym_while] = ACTIONS(1616), - [sym_mutable_specifier] = ACTIONS(1616), - [sym_integer_literal] = ACTIONS(1618), - [aux_sym_string_literal_token1] = ACTIONS(1618), - [sym_char_literal] = ACTIONS(1618), - [anon_sym_true] = ACTIONS(1616), - [anon_sym_false] = ACTIONS(1616), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1616), - [sym_super] = ACTIONS(1616), - [sym_crate] = ACTIONS(1616), - [sym_metavariable] = ACTIONS(1618), - [sym_raw_string_literal] = ACTIONS(1618), - [sym_float_literal] = ACTIONS(1618), - [sym_block_comment] = ACTIONS(3), + [411] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3426), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3427), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2424), + [sym_scoped_identifier] = STATE(2139), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [438] = { - [sym_identifier] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_RBRACK] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_u8] = ACTIONS(1620), - [anon_sym_i8] = ACTIONS(1620), - [anon_sym_u16] = ACTIONS(1620), - [anon_sym_i16] = ACTIONS(1620), - [anon_sym_u32] = ACTIONS(1620), - [anon_sym_i32] = ACTIONS(1620), - [anon_sym_u64] = ACTIONS(1620), - [anon_sym_i64] = ACTIONS(1620), - [anon_sym_u128] = ACTIONS(1620), - [anon_sym_i128] = ACTIONS(1620), - [anon_sym_isize] = ACTIONS(1620), - [anon_sym_usize] = ACTIONS(1620), - [anon_sym_f32] = ACTIONS(1620), - [anon_sym_f64] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_str] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym__] = ACTIONS(1620), - [anon_sym_BSLASH] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_DASH_GT] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1622), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_AT] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1622), - [anon_sym_POUND] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_CARET] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1620), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_await] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_default] = ACTIONS(1620), - [anon_sym_enum] = ACTIONS(1620), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_impl] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_pub] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_struct] = ACTIONS(1620), - [anon_sym_trait] = ACTIONS(1620), - [anon_sym_type] = ACTIONS(1620), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_where] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [sym_mutable_specifier] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1622), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1620), - [sym_super] = ACTIONS(1620), - [sym_crate] = ACTIONS(1620), - [sym_metavariable] = ACTIONS(1622), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), - [sym_block_comment] = ACTIONS(3), + [412] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [439] = { - [sym_identifier] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_RPAREN] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_RBRACE] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_RBRACK] = ACTIONS(1626), - [anon_sym_COLON] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_STAR] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1624), - [anon_sym_i8] = ACTIONS(1624), - [anon_sym_u16] = ACTIONS(1624), - [anon_sym_i16] = ACTIONS(1624), - [anon_sym_u32] = ACTIONS(1624), - [anon_sym_i32] = ACTIONS(1624), - [anon_sym_u64] = ACTIONS(1624), - [anon_sym_i64] = ACTIONS(1624), - [anon_sym_u128] = ACTIONS(1624), - [anon_sym_i128] = ACTIONS(1624), - [anon_sym_isize] = ACTIONS(1624), - [anon_sym_usize] = ACTIONS(1624), - [anon_sym_f32] = ACTIONS(1624), - [anon_sym_f64] = ACTIONS(1624), - [anon_sym_bool] = ACTIONS(1624), - [anon_sym_str] = ACTIONS(1624), - [anon_sym_char] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(1624), - [anon_sym__] = ACTIONS(1624), - [anon_sym_BSLASH] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_EQ] = ACTIONS(1626), - [anon_sym_DASH_GT] = ACTIONS(1626), - [anon_sym_COMMA] = ACTIONS(1626), - [anon_sym_COLON_COLON] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_PERCENT] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1626), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_GT] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_SQUOTE] = ACTIONS(1624), - [anon_sym_as] = ACTIONS(1624), - [anon_sym_async] = ACTIONS(1624), - [anon_sym_await] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_continue] = ACTIONS(1624), - [anon_sym_default] = ACTIONS(1624), - [anon_sym_enum] = ACTIONS(1624), - [anon_sym_fn] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_impl] = ACTIONS(1624), - [anon_sym_let] = ACTIONS(1624), - [anon_sym_loop] = ACTIONS(1624), - [anon_sym_match] = ACTIONS(1624), - [anon_sym_mod] = ACTIONS(1624), - [anon_sym_pub] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_static] = ACTIONS(1624), - [anon_sym_struct] = ACTIONS(1624), - [anon_sym_trait] = ACTIONS(1624), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_union] = ACTIONS(1624), - [anon_sym_unsafe] = ACTIONS(1624), - [anon_sym_use] = ACTIONS(1624), - [anon_sym_where] = ACTIONS(1624), - [anon_sym_while] = ACTIONS(1624), - [sym_mutable_specifier] = ACTIONS(1624), - [sym_integer_literal] = ACTIONS(1626), - [aux_sym_string_literal_token1] = ACTIONS(1626), - [sym_char_literal] = ACTIONS(1626), - [anon_sym_true] = ACTIONS(1624), - [anon_sym_false] = ACTIONS(1624), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1626), - [sym_float_literal] = ACTIONS(1626), - [sym_block_comment] = ACTIONS(3), + [413] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [440] = { - [sym_identifier] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_RPAREN] = ACTIONS(1630), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_RBRACK] = ACTIONS(1630), - [anon_sym_COLON] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1630), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_QMARK] = ACTIONS(1630), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_SLASH] = ACTIONS(1628), - [anon_sym__] = ACTIONS(1628), - [anon_sym_BSLASH] = ACTIONS(1630), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(1630), - [anon_sym_DASH_GT] = ACTIONS(1630), - [anon_sym_COMMA] = ACTIONS(1630), - [anon_sym_COLON_COLON] = ACTIONS(1630), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_DOT] = ACTIONS(1630), - [anon_sym_AT] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_POUND] = ACTIONS(1630), - [anon_sym_PERCENT] = ACTIONS(1630), - [anon_sym_CARET] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1630), - [anon_sym_TILDE] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1628), - [anon_sym_as] = ACTIONS(1628), - [anon_sym_async] = ACTIONS(1628), - [anon_sym_await] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_continue] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1628), - [anon_sym_enum] = ACTIONS(1628), - [anon_sym_fn] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_impl] = ACTIONS(1628), - [anon_sym_let] = ACTIONS(1628), - [anon_sym_loop] = ACTIONS(1628), - [anon_sym_match] = ACTIONS(1628), - [anon_sym_mod] = ACTIONS(1628), - [anon_sym_pub] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_static] = ACTIONS(1628), - [anon_sym_struct] = ACTIONS(1628), - [anon_sym_trait] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_union] = ACTIONS(1628), - [anon_sym_unsafe] = ACTIONS(1628), - [anon_sym_use] = ACTIONS(1628), - [anon_sym_where] = ACTIONS(1628), - [anon_sym_while] = ACTIONS(1628), - [sym_mutable_specifier] = ACTIONS(1628), - [sym_integer_literal] = ACTIONS(1630), - [aux_sym_string_literal_token1] = ACTIONS(1630), - [sym_char_literal] = ACTIONS(1630), - [anon_sym_true] = ACTIONS(1628), - [anon_sym_false] = ACTIONS(1628), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1628), - [sym_super] = ACTIONS(1628), - [sym_crate] = ACTIONS(1628), - [sym_metavariable] = ACTIONS(1630), - [sym_raw_string_literal] = ACTIONS(1630), - [sym_float_literal] = ACTIONS(1630), - [sym_block_comment] = ACTIONS(3), + [414] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(3426), + [sym_lifetime] = STATE(848), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3427), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2424), + [sym_scoped_identifier] = STATE(2139), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2052), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [441] = { - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_RBRACK] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(1632), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_QMARK] = ACTIONS(1544), - [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_SLASH] = ACTIONS(1540), - [anon_sym__] = ACTIONS(1540), - [anon_sym_BSLASH] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1544), - [anon_sym_DASH_GT] = ACTIONS(1544), - [anon_sym_COMMA] = ACTIONS(1544), - [anon_sym_COLON_COLON] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_AT] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_await] = 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_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_where] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1544), - [aux_sym_string_literal_token1] = ACTIONS(1544), - [sym_char_literal] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(1544), - [sym_float_literal] = ACTIONS(1544), - [sym_block_comment] = ACTIONS(3), + [415] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [442] = { - [sym_identifier] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(1634), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_STAR] = ACTIONS(1636), - [anon_sym_QMARK] = ACTIONS(1636), - [anon_sym_u8] = ACTIONS(1634), - [anon_sym_i8] = ACTIONS(1634), - [anon_sym_u16] = ACTIONS(1634), - [anon_sym_i16] = ACTIONS(1634), - [anon_sym_u32] = ACTIONS(1634), - [anon_sym_i32] = ACTIONS(1634), - [anon_sym_u64] = ACTIONS(1634), - [anon_sym_i64] = ACTIONS(1634), - [anon_sym_u128] = ACTIONS(1634), - [anon_sym_i128] = ACTIONS(1634), - [anon_sym_isize] = ACTIONS(1634), - [anon_sym_usize] = ACTIONS(1634), - [anon_sym_f32] = ACTIONS(1634), - [anon_sym_f64] = ACTIONS(1634), - [anon_sym_bool] = ACTIONS(1634), - [anon_sym_str] = ACTIONS(1634), - [anon_sym_char] = ACTIONS(1634), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym__] = ACTIONS(1634), - [anon_sym_BSLASH] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1636), - [anon_sym_DASH_GT] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_COLON_COLON] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(1636), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1636), - [anon_sym_PERCENT] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1636), - [anon_sym_SQUOTE] = ACTIONS(1634), - [anon_sym_as] = ACTIONS(1634), - [anon_sym_async] = ACTIONS(1634), - [anon_sym_await] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1634), - [anon_sym_enum] = ACTIONS(1634), - [anon_sym_fn] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_impl] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_mod] = ACTIONS(1634), - [anon_sym_pub] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_struct] = ACTIONS(1634), - [anon_sym_trait] = ACTIONS(1634), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_union] = ACTIONS(1634), - [anon_sym_unsafe] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_where] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1636), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1634), - [sym_super] = ACTIONS(1634), - [sym_crate] = ACTIONS(1634), - [sym_metavariable] = ACTIONS(1636), - [sym_raw_string_literal] = ACTIONS(1636), - [sym_float_literal] = ACTIONS(1636), - [sym_block_comment] = ACTIONS(3), + [416] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2052), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1412), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [443] = { - [sym_identifier] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1640), - [anon_sym_RPAREN] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1640), - [anon_sym_RBRACE] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_RBRACK] = ACTIONS(1640), - [anon_sym_COLON] = ACTIONS(1638), - [anon_sym_DOLLAR] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_STAR] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1640), - [anon_sym_u8] = ACTIONS(1638), - [anon_sym_i8] = ACTIONS(1638), - [anon_sym_u16] = ACTIONS(1638), - [anon_sym_i16] = ACTIONS(1638), - [anon_sym_u32] = ACTIONS(1638), - [anon_sym_i32] = ACTIONS(1638), - [anon_sym_u64] = ACTIONS(1638), - [anon_sym_i64] = ACTIONS(1638), - [anon_sym_u128] = ACTIONS(1638), - [anon_sym_i128] = ACTIONS(1638), - [anon_sym_isize] = ACTIONS(1638), - [anon_sym_usize] = ACTIONS(1638), - [anon_sym_f32] = ACTIONS(1638), - [anon_sym_f64] = ACTIONS(1638), - [anon_sym_bool] = ACTIONS(1638), - [anon_sym_str] = ACTIONS(1638), - [anon_sym_char] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1638), - [anon_sym__] = ACTIONS(1638), - [anon_sym_BSLASH] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1638), - [anon_sym_EQ] = ACTIONS(1640), - [anon_sym_DASH_GT] = ACTIONS(1640), - [anon_sym_COMMA] = ACTIONS(1640), - [anon_sym_COLON_COLON] = ACTIONS(1640), - [anon_sym_BANG] = ACTIONS(1640), - [anon_sym_DOT] = ACTIONS(1640), - [anon_sym_AT] = ACTIONS(1640), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(1640), - [anon_sym_PERCENT] = ACTIONS(1640), - [anon_sym_CARET] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_TILDE] = ACTIONS(1640), - [anon_sym_SQUOTE] = ACTIONS(1638), - [anon_sym_as] = ACTIONS(1638), - [anon_sym_async] = ACTIONS(1638), - [anon_sym_await] = ACTIONS(1638), - [anon_sym_break] = ACTIONS(1638), - [anon_sym_const] = ACTIONS(1638), - [anon_sym_continue] = ACTIONS(1638), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_enum] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1638), - [anon_sym_for] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1638), - [anon_sym_impl] = ACTIONS(1638), - [anon_sym_let] = ACTIONS(1638), - [anon_sym_loop] = ACTIONS(1638), - [anon_sym_match] = ACTIONS(1638), - [anon_sym_mod] = ACTIONS(1638), - [anon_sym_pub] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1638), - [anon_sym_static] = ACTIONS(1638), - [anon_sym_struct] = ACTIONS(1638), - [anon_sym_trait] = ACTIONS(1638), - [anon_sym_type] = ACTIONS(1638), - [anon_sym_union] = ACTIONS(1638), - [anon_sym_unsafe] = ACTIONS(1638), - [anon_sym_use] = ACTIONS(1638), - [anon_sym_where] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1638), - [sym_mutable_specifier] = ACTIONS(1638), - [sym_integer_literal] = ACTIONS(1640), - [aux_sym_string_literal_token1] = ACTIONS(1640), - [sym_char_literal] = ACTIONS(1640), - [anon_sym_true] = ACTIONS(1638), - [anon_sym_false] = ACTIONS(1638), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1638), - [sym_super] = ACTIONS(1638), - [sym_crate] = ACTIONS(1638), - [sym_metavariable] = ACTIONS(1640), - [sym_raw_string_literal] = ACTIONS(1640), - [sym_float_literal] = ACTIONS(1640), - [sym_block_comment] = ACTIONS(3), + [417] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2052), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1418), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [444] = { - [sym_identifier] = ACTIONS(1600), - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1600), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1602), - [anon_sym_u8] = ACTIONS(1600), - [anon_sym_i8] = ACTIONS(1600), - [anon_sym_u16] = ACTIONS(1600), - [anon_sym_i16] = ACTIONS(1600), - [anon_sym_u32] = ACTIONS(1600), - [anon_sym_i32] = ACTIONS(1600), - [anon_sym_u64] = ACTIONS(1600), - [anon_sym_i64] = ACTIONS(1600), - [anon_sym_u128] = ACTIONS(1600), - [anon_sym_i128] = ACTIONS(1600), - [anon_sym_isize] = ACTIONS(1600), - [anon_sym_usize] = ACTIONS(1600), - [anon_sym_f32] = ACTIONS(1600), - [anon_sym_f64] = ACTIONS(1600), - [anon_sym_bool] = ACTIONS(1600), - [anon_sym_str] = ACTIONS(1600), - [anon_sym_char] = ACTIONS(1600), - [anon_sym_SLASH] = ACTIONS(1600), - [anon_sym__] = ACTIONS(1600), - [anon_sym_BSLASH] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_EQ] = ACTIONS(1602), - [anon_sym_DASH_GT] = ACTIONS(1602), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_COLON_COLON] = ACTIONS(1602), - [anon_sym_BANG] = ACTIONS(1602), - [anon_sym_DOT] = ACTIONS(1602), - [anon_sym_AT] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1602), - [anon_sym_CARET] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1602), - [anon_sym_TILDE] = ACTIONS(1602), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_as] = ACTIONS(1600), - [anon_sym_async] = ACTIONS(1600), - [anon_sym_await] = ACTIONS(1600), - [anon_sym_break] = ACTIONS(1600), - [anon_sym_const] = ACTIONS(1600), - [anon_sym_continue] = ACTIONS(1600), - [anon_sym_default] = ACTIONS(1600), - [anon_sym_enum] = ACTIONS(1600), - [anon_sym_fn] = ACTIONS(1600), - [anon_sym_for] = ACTIONS(1600), - [anon_sym_if] = ACTIONS(1600), - [anon_sym_impl] = ACTIONS(1600), - [anon_sym_let] = ACTIONS(1600), - [anon_sym_loop] = ACTIONS(1600), - [anon_sym_match] = ACTIONS(1600), - [anon_sym_mod] = ACTIONS(1600), - [anon_sym_pub] = ACTIONS(1600), - [anon_sym_return] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1600), - [anon_sym_struct] = ACTIONS(1600), - [anon_sym_trait] = ACTIONS(1600), - [anon_sym_type] = ACTIONS(1600), - [anon_sym_union] = ACTIONS(1600), - [anon_sym_unsafe] = ACTIONS(1600), - [anon_sym_use] = ACTIONS(1600), - [anon_sym_where] = ACTIONS(1600), - [anon_sym_while] = ACTIONS(1600), - [sym_mutable_specifier] = ACTIONS(1600), - [sym_integer_literal] = ACTIONS(1602), - [aux_sym_string_literal_token1] = ACTIONS(1602), - [sym_char_literal] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1600), - [anon_sym_false] = ACTIONS(1600), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1600), - [sym_super] = ACTIONS(1600), - [sym_crate] = ACTIONS(1600), - [sym_raw_string_literal] = ACTIONS(1602), - [sym_float_literal] = ACTIONS(1602), - [sym_block_comment] = ACTIONS(3), + [418] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(3424), + [sym_lifetime] = STATE(848), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3425), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2061), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2052), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1132), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1076), + [sym_super] = ACTIONS(1076), + [sym_crate] = ACTIONS(1076), + [sym_metavariable] = ACTIONS(1078), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [445] = { - [sym_identifier] = ACTIONS(1010), - [anon_sym_SEMI] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_RBRACK] = ACTIONS(1008), - [anon_sym_COLON] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_QMARK] = ACTIONS(1008), - [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_SLASH] = ACTIONS(1010), - [anon_sym__] = ACTIONS(1010), - [anon_sym_BSLASH] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_DASH_GT] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1008), - [anon_sym_COLON_COLON] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_AT] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(1008), - [anon_sym_PERCENT] = ACTIONS(1008), - [anon_sym_CARET] = ACTIONS(1008), - [anon_sym_LT] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_TILDE] = ACTIONS(1008), - [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_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(1008), - [aux_sym_string_literal_token1] = ACTIONS(1008), - [sym_char_literal] = ACTIONS(1008), - [anon_sym_true] = ACTIONS(1010), - [anon_sym_false] = ACTIONS(1010), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1010), - [sym_super] = ACTIONS(1010), - [sym_crate] = ACTIONS(1010), - [sym_raw_string_literal] = ACTIONS(1008), - [sym_float_literal] = ACTIONS(1008), - [sym_block_comment] = ACTIONS(3), + [419] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1102), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [446] = { - [sym_identifier] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1622), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_RBRACK] = ACTIONS(1622), - [anon_sym_COLON] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_PLUS] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1622), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_u8] = ACTIONS(1620), - [anon_sym_i8] = ACTIONS(1620), - [anon_sym_u16] = ACTIONS(1620), - [anon_sym_i16] = ACTIONS(1620), - [anon_sym_u32] = ACTIONS(1620), - [anon_sym_i32] = ACTIONS(1620), - [anon_sym_u64] = ACTIONS(1620), - [anon_sym_i64] = ACTIONS(1620), - [anon_sym_u128] = ACTIONS(1620), - [anon_sym_i128] = ACTIONS(1620), - [anon_sym_isize] = ACTIONS(1620), - [anon_sym_usize] = ACTIONS(1620), - [anon_sym_f32] = ACTIONS(1620), - [anon_sym_f64] = ACTIONS(1620), - [anon_sym_bool] = ACTIONS(1620), - [anon_sym_str] = ACTIONS(1620), - [anon_sym_char] = ACTIONS(1620), - [anon_sym_SLASH] = ACTIONS(1620), - [anon_sym__] = ACTIONS(1620), - [anon_sym_BSLASH] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_DASH_GT] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1622), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_DOT] = ACTIONS(1622), - [anon_sym_AT] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1622), - [anon_sym_POUND] = ACTIONS(1622), - [anon_sym_PERCENT] = ACTIONS(1622), - [anon_sym_CARET] = ACTIONS(1622), - [anon_sym_LT] = ACTIONS(1622), - [anon_sym_GT] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_SQUOTE] = ACTIONS(1620), - [anon_sym_as] = ACTIONS(1620), - [anon_sym_async] = ACTIONS(1620), - [anon_sym_await] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_continue] = ACTIONS(1620), - [anon_sym_default] = ACTIONS(1620), - [anon_sym_enum] = ACTIONS(1620), - [anon_sym_fn] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_impl] = ACTIONS(1620), - [anon_sym_let] = ACTIONS(1620), - [anon_sym_loop] = ACTIONS(1620), - [anon_sym_match] = ACTIONS(1620), - [anon_sym_mod] = ACTIONS(1620), - [anon_sym_pub] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_static] = ACTIONS(1620), - [anon_sym_struct] = ACTIONS(1620), - [anon_sym_trait] = ACTIONS(1620), - [anon_sym_type] = ACTIONS(1620), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1620), - [anon_sym_use] = ACTIONS(1620), - [anon_sym_where] = ACTIONS(1620), - [anon_sym_while] = ACTIONS(1620), - [sym_mutable_specifier] = ACTIONS(1620), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1622), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1620), - [anon_sym_false] = ACTIONS(1620), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1620), - [sym_super] = ACTIONS(1620), - [sym_crate] = ACTIONS(1620), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), - [sym_block_comment] = ACTIONS(3), + [420] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(3415), + [sym_lifetime] = STATE(848), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3416), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(2375), + [sym_scoped_identifier] = STATE(2190), + [sym_scoped_type_identifier] = STATE(2090), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2052), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1086), + [anon_sym_i8] = ACTIONS(1086), + [anon_sym_u16] = ACTIONS(1086), + [anon_sym_i16] = ACTIONS(1086), + [anon_sym_u32] = ACTIONS(1086), + [anon_sym_i32] = ACTIONS(1086), + [anon_sym_u64] = ACTIONS(1086), + [anon_sym_i64] = ACTIONS(1086), + [anon_sym_u128] = ACTIONS(1086), + [anon_sym_i128] = ACTIONS(1086), + [anon_sym_isize] = ACTIONS(1086), + [anon_sym_usize] = ACTIONS(1086), + [anon_sym_f32] = ACTIONS(1086), + [anon_sym_f64] = ACTIONS(1086), + [anon_sym_bool] = ACTIONS(1086), + [anon_sym_str] = ACTIONS(1086), + [anon_sym_char] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1096), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1098), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_ref] = ACTIONS(1058), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1102), + [sym_super] = ACTIONS(1102), + [sym_crate] = ACTIONS(1102), + [sym_metavariable] = ACTIONS(1104), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [447] = { - [sym_identifier] = ACTIONS(1562), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_RBRACK] = ACTIONS(1564), - [anon_sym_COLON] = ACTIONS(1562), - [anon_sym_DOLLAR] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_u8] = ACTIONS(1562), - [anon_sym_i8] = ACTIONS(1562), - [anon_sym_u16] = ACTIONS(1562), - [anon_sym_i16] = ACTIONS(1562), - [anon_sym_u32] = ACTIONS(1562), - [anon_sym_i32] = ACTIONS(1562), - [anon_sym_u64] = ACTIONS(1562), - [anon_sym_i64] = ACTIONS(1562), - [anon_sym_u128] = ACTIONS(1562), - [anon_sym_i128] = ACTIONS(1562), - [anon_sym_isize] = ACTIONS(1562), - [anon_sym_usize] = ACTIONS(1562), - [anon_sym_f32] = ACTIONS(1562), - [anon_sym_f64] = ACTIONS(1562), - [anon_sym_bool] = ACTIONS(1562), - [anon_sym_str] = ACTIONS(1562), - [anon_sym_char] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym__] = ACTIONS(1562), - [anon_sym_BSLASH] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1564), - [anon_sym_DASH_GT] = ACTIONS(1564), - [anon_sym_COMMA] = ACTIONS(1564), - [anon_sym_COLON_COLON] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_DOT] = ACTIONS(1564), - [anon_sym_AT] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_PERCENT] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1562), - [anon_sym_as] = ACTIONS(1562), - [anon_sym_async] = ACTIONS(1562), - [anon_sym_await] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_enum] = ACTIONS(1562), - [anon_sym_fn] = ACTIONS(1562), - [anon_sym_for] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_impl] = ACTIONS(1562), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_loop] = ACTIONS(1562), - [anon_sym_match] = ACTIONS(1562), - [anon_sym_mod] = ACTIONS(1562), - [anon_sym_pub] = ACTIONS(1562), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_struct] = ACTIONS(1562), - [anon_sym_trait] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_union] = ACTIONS(1562), - [anon_sym_unsafe] = ACTIONS(1562), - [anon_sym_use] = ACTIONS(1562), - [anon_sym_where] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1562), - [sym_mutable_specifier] = ACTIONS(1562), - [sym_integer_literal] = ACTIONS(1564), - [aux_sym_string_literal_token1] = ACTIONS(1564), - [sym_char_literal] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1562), - [sym_super] = ACTIONS(1562), - [sym_crate] = ACTIONS(1562), - [sym_raw_string_literal] = ACTIONS(1564), - [sym_float_literal] = ACTIONS(1564), - [sym_block_comment] = ACTIONS(3), + [421] = { + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [aux_sym__non_special_token_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_as] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_where] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [sym_mutable_specifier] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), }, - [448] = { - [sym_identifier] = ACTIONS(1002), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_RBRACK] = ACTIONS(1000), - [anon_sym_COLON] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(1000), - [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_SLASH] = ACTIONS(1002), - [anon_sym__] = ACTIONS(1002), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_DASH_GT] = ACTIONS(1000), - [anon_sym_COMMA] = ACTIONS(1000), - [anon_sym_COLON_COLON] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_AT] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(1000), - [anon_sym_PERCENT] = ACTIONS(1000), - [anon_sym_CARET] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_TILDE] = ACTIONS(1000), - [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_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(1000), - [aux_sym_string_literal_token1] = ACTIONS(1000), - [sym_char_literal] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1002), - [anon_sym_false] = ACTIONS(1002), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1002), - [sym_super] = ACTIONS(1002), - [sym_crate] = ACTIONS(1002), - [sym_raw_string_literal] = ACTIONS(1000), - [sym_float_literal] = ACTIONS(1000), - [sym_block_comment] = ACTIONS(3), + [422] = { + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [aux_sym__non_special_token_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym__] = ACTIONS(1213), + [anon_sym_BSLASH] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_DASH_GT] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_POUND] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_as] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_await] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_where] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [sym_mutable_specifier] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), }, - [449] = { - [sym_identifier] = ACTIONS(1590), - [anon_sym_SEMI] = ACTIONS(1592), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_RPAREN] = ACTIONS(1592), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_RBRACK] = ACTIONS(1592), - [anon_sym_COLON] = ACTIONS(1590), - [anon_sym_DOLLAR] = ACTIONS(1592), - [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_QMARK] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1590), - [anon_sym_i8] = ACTIONS(1590), - [anon_sym_u16] = ACTIONS(1590), - [anon_sym_i16] = ACTIONS(1590), - [anon_sym_u32] = ACTIONS(1590), - [anon_sym_i32] = ACTIONS(1590), - [anon_sym_u64] = ACTIONS(1590), - [anon_sym_i64] = ACTIONS(1590), - [anon_sym_u128] = ACTIONS(1590), - [anon_sym_i128] = ACTIONS(1590), - [anon_sym_isize] = ACTIONS(1590), - [anon_sym_usize] = ACTIONS(1590), - [anon_sym_f32] = ACTIONS(1590), - [anon_sym_f64] = ACTIONS(1590), - [anon_sym_bool] = ACTIONS(1590), - [anon_sym_str] = ACTIONS(1590), - [anon_sym_char] = ACTIONS(1590), - [anon_sym_SLASH] = ACTIONS(1590), - [anon_sym__] = ACTIONS(1590), - [anon_sym_BSLASH] = ACTIONS(1592), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_DASH_GT] = ACTIONS(1592), - [anon_sym_COMMA] = ACTIONS(1592), - [anon_sym_COLON_COLON] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), - [anon_sym_DOT] = ACTIONS(1592), - [anon_sym_AT] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1592), - [anon_sym_CARET] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1592), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_SQUOTE] = ACTIONS(1590), - [anon_sym_as] = ACTIONS(1590), - [anon_sym_async] = ACTIONS(1590), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_const] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_enum] = ACTIONS(1590), - [anon_sym_fn] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1590), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_impl] = ACTIONS(1590), - [anon_sym_let] = ACTIONS(1590), - [anon_sym_loop] = ACTIONS(1590), - [anon_sym_match] = ACTIONS(1590), - [anon_sym_mod] = ACTIONS(1590), - [anon_sym_pub] = ACTIONS(1590), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_struct] = ACTIONS(1590), - [anon_sym_trait] = ACTIONS(1590), - [anon_sym_type] = ACTIONS(1590), - [anon_sym_union] = ACTIONS(1590), - [anon_sym_unsafe] = ACTIONS(1590), - [anon_sym_use] = ACTIONS(1590), - [anon_sym_where] = ACTIONS(1590), - [anon_sym_while] = ACTIONS(1590), - [sym_mutable_specifier] = ACTIONS(1590), - [sym_integer_literal] = ACTIONS(1592), - [aux_sym_string_literal_token1] = ACTIONS(1592), - [sym_char_literal] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1590), - [sym_super] = ACTIONS(1590), - [sym_crate] = ACTIONS(1590), - [sym_raw_string_literal] = ACTIONS(1592), - [sym_float_literal] = ACTIONS(1592), - [sym_block_comment] = ACTIONS(3), + [423] = { + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [aux_sym__non_special_token_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACK] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym__] = ACTIONS(1439), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_DASH_GT] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_where] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [sym_mutable_specifier] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1437), + [sym_raw_string_literal] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), }, - [450] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2022), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_u8] = ACTIONS(1642), - [anon_sym_i8] = ACTIONS(1642), - [anon_sym_u16] = ACTIONS(1642), - [anon_sym_i16] = ACTIONS(1642), - [anon_sym_u32] = ACTIONS(1642), - [anon_sym_i32] = ACTIONS(1642), - [anon_sym_u64] = ACTIONS(1642), - [anon_sym_i64] = ACTIONS(1642), - [anon_sym_u128] = ACTIONS(1642), - [anon_sym_i128] = ACTIONS(1642), - [anon_sym_isize] = ACTIONS(1642), - [anon_sym_usize] = ACTIONS(1642), - [anon_sym_f32] = ACTIONS(1642), - [anon_sym_f64] = ACTIONS(1642), - [anon_sym_bool] = ACTIONS(1642), - [anon_sym_str] = ACTIONS(1642), - [anon_sym_char] = ACTIONS(1642), - [anon_sym__] = ACTIONS(1642), - [anon_sym_DASH] = ACTIONS(1642), - [anon_sym_DASH_GT] = ACTIONS(1644), - [anon_sym_COLON_COLON] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1642), - [anon_sym_async] = ACTIONS(1642), - [anon_sym_break] = ACTIONS(1642), - [anon_sym_const] = ACTIONS(1642), - [anon_sym_continue] = ACTIONS(1642), - [anon_sym_default] = ACTIONS(1642), - [anon_sym_for] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1642), - [anon_sym_loop] = ACTIONS(1642), - [anon_sym_match] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1642), - [anon_sym_static] = ACTIONS(1642), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1642), - [anon_sym_while] = ACTIONS(1642), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1644), - [anon_sym_yield] = ACTIONS(1642), - [anon_sym_move] = ACTIONS(1642), - [anon_sym_try] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1644), - [aux_sym_string_literal_token1] = ACTIONS(1644), - [sym_char_literal] = ACTIONS(1644), - [anon_sym_true] = ACTIONS(1642), - [anon_sym_false] = ACTIONS(1642), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym_raw_string_literal] = ACTIONS(1644), - [sym_float_literal] = ACTIONS(1644), - [sym_block_comment] = ACTIONS(3), + [424] = { + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_as] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_await] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_where] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [sym_mutable_specifier] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), }, - [451] = { - [sym_else_clause] = STATE(459), - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(850), - [anon_sym_QMARK] = ACTIONS(848), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u128] = ACTIONS(850), - [anon_sym_i128] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_str] = ACTIONS(850), - [anon_sym_char] = ACTIONS(850), - [anon_sym_SLASH] = ACTIONS(850), - [anon_sym__] = ACTIONS(850), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_EQ] = ACTIONS(850), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_COLON_COLON] = ACTIONS(848), - [anon_sym_DOT] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(848), - [anon_sym_PERCENT] = ACTIONS(850), - [anon_sym_CARET] = ACTIONS(850), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_GT] = ACTIONS(850), - [anon_sym_PIPE] = ACTIONS(850), - [anon_sym_as] = ACTIONS(850), - [anon_sym_const] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_static] = ACTIONS(850), - [anon_sym_union] = ACTIONS(850), - [anon_sym_ref] = ACTIONS(850), - [anon_sym_else] = ACTIONS(1646), - [anon_sym_DOT_DOT_DOT] = ACTIONS(848), - [sym_mutable_specifier] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(848), - [anon_sym_AMP_AMP] = ACTIONS(848), - [anon_sym_PIPE_PIPE] = ACTIONS(848), - [anon_sym_EQ_EQ] = ACTIONS(848), - [anon_sym_BANG_EQ] = ACTIONS(848), - [anon_sym_LT_EQ] = ACTIONS(848), - [anon_sym_GT_EQ] = ACTIONS(848), - [anon_sym_LT_LT] = ACTIONS(850), - [anon_sym_GT_GT] = ACTIONS(850), - [anon_sym_PLUS_EQ] = ACTIONS(848), - [anon_sym_DASH_EQ] = ACTIONS(848), - [anon_sym_STAR_EQ] = ACTIONS(848), - [anon_sym_SLASH_EQ] = ACTIONS(848), - [anon_sym_PERCENT_EQ] = ACTIONS(848), - [anon_sym_AMP_EQ] = ACTIONS(848), - [anon_sym_PIPE_EQ] = ACTIONS(848), - [anon_sym_CARET_EQ] = ACTIONS(848), - [anon_sym_LT_LT_EQ] = ACTIONS(848), - [anon_sym_GT_GT_EQ] = ACTIONS(848), - [anon_sym_move] = ACTIONS(850), - [sym_integer_literal] = ACTIONS(848), - [aux_sym_string_literal_token1] = ACTIONS(848), - [sym_char_literal] = ACTIONS(848), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_crate] = ACTIONS(850), - [sym_metavariable] = ACTIONS(848), - [sym_raw_string_literal] = ACTIONS(848), - [sym_float_literal] = ACTIONS(848), - [sym_block_comment] = ACTIONS(3), + [425] = { + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), + [sym_identifier] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_EQ_GT] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_COLON] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_EQ] = ACTIONS(1376), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_PERCENT] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_GT] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_unsafe] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), + [anon_sym_AMP_AMP] = ACTIONS(1378), + [anon_sym_PIPE_PIPE] = ACTIONS(1378), + [anon_sym_EQ_EQ] = ACTIONS(1378), + [anon_sym_BANG_EQ] = ACTIONS(1378), + [anon_sym_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_EQ] = ACTIONS(1378), + [anon_sym_LT_LT] = ACTIONS(1376), + [anon_sym_GT_GT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1378), + [anon_sym_DASH_EQ] = ACTIONS(1378), + [anon_sym_STAR_EQ] = ACTIONS(1378), + [anon_sym_SLASH_EQ] = ACTIONS(1378), + [anon_sym_PERCENT_EQ] = ACTIONS(1378), + [anon_sym_AMP_EQ] = ACTIONS(1378), + [anon_sym_PIPE_EQ] = ACTIONS(1378), + [anon_sym_CARET_EQ] = ACTIONS(1378), + [anon_sym_LT_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_GT_EQ] = ACTIONS(1378), + [anon_sym_yield] = ACTIONS(1376), + [anon_sym_move] = ACTIONS(1376), + [anon_sym_try] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1378), + [sym_raw_string_literal] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), }, - [452] = { - [sym_identifier] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_QMARK] = ACTIONS(874), - [anon_sym_u8] = ACTIONS(876), - [anon_sym_i8] = ACTIONS(876), - [anon_sym_u16] = ACTIONS(876), - [anon_sym_i16] = ACTIONS(876), - [anon_sym_u32] = ACTIONS(876), - [anon_sym_i32] = ACTIONS(876), - [anon_sym_u64] = ACTIONS(876), - [anon_sym_i64] = ACTIONS(876), - [anon_sym_u128] = ACTIONS(876), - [anon_sym_i128] = ACTIONS(876), - [anon_sym_isize] = ACTIONS(876), - [anon_sym_usize] = ACTIONS(876), - [anon_sym_f32] = ACTIONS(876), - [anon_sym_f64] = ACTIONS(876), - [anon_sym_bool] = ACTIONS(876), - [anon_sym_str] = ACTIONS(876), - [anon_sym_char] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym__] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_COLON_COLON] = ACTIONS(874), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(874), - [anon_sym_PERCENT] = ACTIONS(876), - [anon_sym_CARET] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_as] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_union] = ACTIONS(876), - [anon_sym_ref] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(874), - [sym_mutable_specifier] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ] = ACTIONS(874), - [anon_sym_AMP_AMP] = ACTIONS(874), - [anon_sym_PIPE_PIPE] = ACTIONS(874), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_LT_LT] = ACTIONS(876), - [anon_sym_GT_GT] = ACTIONS(876), - [anon_sym_PLUS_EQ] = ACTIONS(874), - [anon_sym_DASH_EQ] = ACTIONS(874), - [anon_sym_STAR_EQ] = ACTIONS(874), - [anon_sym_SLASH_EQ] = ACTIONS(874), - [anon_sym_PERCENT_EQ] = ACTIONS(874), - [anon_sym_AMP_EQ] = ACTIONS(874), - [anon_sym_PIPE_EQ] = ACTIONS(874), - [anon_sym_CARET_EQ] = ACTIONS(874), - [anon_sym_LT_LT_EQ] = ACTIONS(874), - [anon_sym_GT_GT_EQ] = ACTIONS(874), - [anon_sym_move] = ACTIONS(876), - [sym_integer_literal] = ACTIONS(874), - [aux_sym_string_literal_token1] = ACTIONS(874), - [sym_char_literal] = ACTIONS(874), - [anon_sym_true] = ACTIONS(876), - [anon_sym_false] = ACTIONS(876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), + [426] = { + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_COLON] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_DASH_GT] = ACTIONS(1448), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_AT] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_as] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_await] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_where] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [sym_mutable_specifier] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1448), + [sym_raw_string_literal] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), }, - [453] = { - [sym_identifier] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_QMARK] = ACTIONS(880), - [anon_sym_u8] = ACTIONS(882), - [anon_sym_i8] = ACTIONS(882), - [anon_sym_u16] = ACTIONS(882), - [anon_sym_i16] = ACTIONS(882), - [anon_sym_u32] = ACTIONS(882), - [anon_sym_i32] = ACTIONS(882), - [anon_sym_u64] = ACTIONS(882), - [anon_sym_i64] = ACTIONS(882), - [anon_sym_u128] = ACTIONS(882), - [anon_sym_i128] = ACTIONS(882), - [anon_sym_isize] = ACTIONS(882), - [anon_sym_usize] = ACTIONS(882), - [anon_sym_f32] = ACTIONS(882), - [anon_sym_f64] = ACTIONS(882), - [anon_sym_bool] = ACTIONS(882), - [anon_sym_str] = ACTIONS(882), - [anon_sym_char] = ACTIONS(882), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym__] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_COMMA] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_POUND] = ACTIONS(880), - [anon_sym_PERCENT] = ACTIONS(882), - [anon_sym_CARET] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_as] = ACTIONS(882), - [anon_sym_const] = ACTIONS(882), - [anon_sym_default] = ACTIONS(882), - [anon_sym_static] = ACTIONS(882), - [anon_sym_union] = ACTIONS(882), - [anon_sym_ref] = ACTIONS(882), - [anon_sym_else] = ACTIONS(882), - [anon_sym_DOT_DOT_DOT] = ACTIONS(880), - [sym_mutable_specifier] = ACTIONS(882), - [anon_sym_DOT_DOT] = ACTIONS(882), - [anon_sym_DOT_DOT_EQ] = ACTIONS(880), - [anon_sym_AMP_AMP] = ACTIONS(880), - [anon_sym_PIPE_PIPE] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(880), - [anon_sym_BANG_EQ] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(880), - [anon_sym_LT_LT] = ACTIONS(882), - [anon_sym_GT_GT] = ACTIONS(882), - [anon_sym_PLUS_EQ] = ACTIONS(880), - [anon_sym_DASH_EQ] = ACTIONS(880), - [anon_sym_STAR_EQ] = ACTIONS(880), - [anon_sym_SLASH_EQ] = ACTIONS(880), - [anon_sym_PERCENT_EQ] = ACTIONS(880), - [anon_sym_AMP_EQ] = ACTIONS(880), - [anon_sym_PIPE_EQ] = ACTIONS(880), - [anon_sym_CARET_EQ] = ACTIONS(880), - [anon_sym_LT_LT_EQ] = ACTIONS(880), - [anon_sym_GT_GT_EQ] = ACTIONS(880), - [anon_sym_move] = ACTIONS(882), - [sym_integer_literal] = ACTIONS(880), - [aux_sym_string_literal_token1] = ACTIONS(880), - [sym_char_literal] = ACTIONS(880), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(880), - [sym_raw_string_literal] = ACTIONS(880), - [sym_float_literal] = ACTIONS(880), - [sym_block_comment] = ACTIONS(3), + [427] = { + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_COLON] = ACTIONS(1450), + [anon_sym_DOLLAR] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1452), + [anon_sym_DASH_GT] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1452), + [anon_sym_AT] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_as] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_await] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_where] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [sym_mutable_specifier] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1452), + [sym_raw_string_literal] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), }, - [454] = { - [sym_identifier] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_QMARK] = ACTIONS(868), - [anon_sym_u8] = ACTIONS(870), - [anon_sym_i8] = ACTIONS(870), - [anon_sym_u16] = ACTIONS(870), - [anon_sym_i16] = ACTIONS(870), - [anon_sym_u32] = ACTIONS(870), - [anon_sym_i32] = ACTIONS(870), - [anon_sym_u64] = ACTIONS(870), - [anon_sym_i64] = ACTIONS(870), - [anon_sym_u128] = ACTIONS(870), - [anon_sym_i128] = ACTIONS(870), - [anon_sym_isize] = ACTIONS(870), - [anon_sym_usize] = ACTIONS(870), - [anon_sym_f32] = ACTIONS(870), - [anon_sym_f64] = ACTIONS(870), - [anon_sym_bool] = ACTIONS(870), - [anon_sym_str] = ACTIONS(870), - [anon_sym_char] = ACTIONS(870), - [anon_sym_SLASH] = ACTIONS(870), - [anon_sym__] = ACTIONS(870), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(870), - [anon_sym_COMMA] = ACTIONS(868), - [anon_sym_COLON_COLON] = ACTIONS(868), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(870), - [anon_sym_POUND] = ACTIONS(868), - [anon_sym_PERCENT] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_as] = ACTIONS(870), - [anon_sym_const] = ACTIONS(870), - [anon_sym_default] = ACTIONS(870), - [anon_sym_static] = ACTIONS(870), - [anon_sym_union] = ACTIONS(870), - [anon_sym_ref] = ACTIONS(870), - [anon_sym_else] = ACTIONS(870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(868), - [sym_mutable_specifier] = ACTIONS(870), - [anon_sym_DOT_DOT] = ACTIONS(870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(868), - [anon_sym_PIPE_PIPE] = ACTIONS(868), - [anon_sym_EQ_EQ] = ACTIONS(868), - [anon_sym_BANG_EQ] = ACTIONS(868), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT_EQ] = ACTIONS(868), - [anon_sym_LT_LT] = ACTIONS(870), - [anon_sym_GT_GT] = ACTIONS(870), - [anon_sym_PLUS_EQ] = ACTIONS(868), - [anon_sym_DASH_EQ] = ACTIONS(868), - [anon_sym_STAR_EQ] = ACTIONS(868), - [anon_sym_SLASH_EQ] = ACTIONS(868), - [anon_sym_PERCENT_EQ] = ACTIONS(868), - [anon_sym_AMP_EQ] = ACTIONS(868), - [anon_sym_PIPE_EQ] = ACTIONS(868), - [anon_sym_CARET_EQ] = ACTIONS(868), - [anon_sym_LT_LT_EQ] = ACTIONS(868), - [anon_sym_GT_GT_EQ] = ACTIONS(868), - [anon_sym_move] = ACTIONS(870), - [sym_integer_literal] = ACTIONS(868), - [aux_sym_string_literal_token1] = ACTIONS(868), - [sym_char_literal] = ACTIONS(868), - [anon_sym_true] = ACTIONS(870), - [anon_sym_false] = ACTIONS(870), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(870), - [sym_super] = ACTIONS(870), - [sym_crate] = ACTIONS(870), - [sym_metavariable] = ACTIONS(868), - [sym_raw_string_literal] = ACTIONS(868), - [sym_float_literal] = ACTIONS(868), - [sym_block_comment] = ACTIONS(3), + [428] = { + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_DASH_GT] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_as] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_await] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_where] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [sym_mutable_specifier] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), }, - [455] = { - [sym_identifier] = ACTIONS(890), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_PLUS] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(888), - [anon_sym_u8] = ACTIONS(890), - [anon_sym_i8] = ACTIONS(890), - [anon_sym_u16] = ACTIONS(890), - [anon_sym_i16] = ACTIONS(890), - [anon_sym_u32] = ACTIONS(890), - [anon_sym_i32] = ACTIONS(890), - [anon_sym_u64] = ACTIONS(890), - [anon_sym_i64] = ACTIONS(890), - [anon_sym_u128] = ACTIONS(890), - [anon_sym_i128] = ACTIONS(890), - [anon_sym_isize] = ACTIONS(890), - [anon_sym_usize] = ACTIONS(890), - [anon_sym_f32] = ACTIONS(890), - [anon_sym_f64] = ACTIONS(890), - [anon_sym_bool] = ACTIONS(890), - [anon_sym_str] = ACTIONS(890), - [anon_sym_char] = ACTIONS(890), - [anon_sym_SLASH] = ACTIONS(890), - [anon_sym__] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_EQ] = ACTIONS(890), - [anon_sym_COMMA] = ACTIONS(888), - [anon_sym_COLON_COLON] = ACTIONS(888), - [anon_sym_DOT] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(888), - [anon_sym_PERCENT] = ACTIONS(890), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_as] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_static] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_ref] = ACTIONS(890), - [anon_sym_else] = ACTIONS(890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(888), - [sym_mutable_specifier] = ACTIONS(890), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(888), - [anon_sym_PIPE_PIPE] = ACTIONS(888), - [anon_sym_EQ_EQ] = ACTIONS(888), - [anon_sym_BANG_EQ] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(888), - [anon_sym_GT_EQ] = ACTIONS(888), - [anon_sym_LT_LT] = ACTIONS(890), - [anon_sym_GT_GT] = ACTIONS(890), - [anon_sym_PLUS_EQ] = ACTIONS(888), - [anon_sym_DASH_EQ] = ACTIONS(888), - [anon_sym_STAR_EQ] = ACTIONS(888), - [anon_sym_SLASH_EQ] = ACTIONS(888), - [anon_sym_PERCENT_EQ] = ACTIONS(888), - [anon_sym_AMP_EQ] = ACTIONS(888), - [anon_sym_PIPE_EQ] = ACTIONS(888), - [anon_sym_CARET_EQ] = ACTIONS(888), - [anon_sym_LT_LT_EQ] = ACTIONS(888), - [anon_sym_GT_GT_EQ] = ACTIONS(888), - [anon_sym_move] = ACTIONS(890), - [sym_integer_literal] = ACTIONS(888), - [aux_sym_string_literal_token1] = ACTIONS(888), - [sym_char_literal] = ACTIONS(888), - [anon_sym_true] = ACTIONS(890), - [anon_sym_false] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(890), - [sym_super] = ACTIONS(890), - [sym_crate] = ACTIONS(890), - [sym_metavariable] = ACTIONS(888), - [sym_raw_string_literal] = ACTIONS(888), - [sym_float_literal] = ACTIONS(888), - [sym_block_comment] = ACTIONS(3), + [429] = { + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [aux_sym__non_special_token_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_QMARK] = ACTIONS(1312), + [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_SLASH] = ACTIONS(1322), + [anon_sym__] = ACTIONS(1322), + [anon_sym_BSLASH] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1312), + [anon_sym_DASH_GT] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_DOT] = ACTIONS(1312), + [anon_sym_AT] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_PERCENT] = ACTIONS(1312), + [anon_sym_CARET] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_GT] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_await] = 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_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_where] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [sym_mutable_specifier] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), }, - [456] = { - [sym_identifier] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_QMARK] = ACTIONS(884), - [anon_sym_u8] = ACTIONS(886), - [anon_sym_i8] = ACTIONS(886), - [anon_sym_u16] = ACTIONS(886), - [anon_sym_i16] = ACTIONS(886), - [anon_sym_u32] = ACTIONS(886), - [anon_sym_i32] = ACTIONS(886), - [anon_sym_u64] = ACTIONS(886), - [anon_sym_i64] = ACTIONS(886), - [anon_sym_u128] = ACTIONS(886), - [anon_sym_i128] = ACTIONS(886), - [anon_sym_isize] = ACTIONS(886), - [anon_sym_usize] = ACTIONS(886), - [anon_sym_f32] = ACTIONS(886), - [anon_sym_f64] = ACTIONS(886), - [anon_sym_bool] = ACTIONS(886), - [anon_sym_str] = ACTIONS(886), - [anon_sym_char] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym__] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_EQ] = ACTIONS(886), - [anon_sym_COMMA] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_POUND] = ACTIONS(884), - [anon_sym_PERCENT] = ACTIONS(886), - [anon_sym_CARET] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_as] = ACTIONS(886), - [anon_sym_const] = ACTIONS(886), - [anon_sym_default] = ACTIONS(886), - [anon_sym_static] = ACTIONS(886), - [anon_sym_union] = ACTIONS(886), - [anon_sym_ref] = ACTIONS(886), - [anon_sym_else] = ACTIONS(886), - [anon_sym_DOT_DOT_DOT] = ACTIONS(884), - [sym_mutable_specifier] = ACTIONS(886), - [anon_sym_DOT_DOT] = ACTIONS(886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_LT_LT] = ACTIONS(886), - [anon_sym_GT_GT] = ACTIONS(886), - [anon_sym_PLUS_EQ] = ACTIONS(884), - [anon_sym_DASH_EQ] = ACTIONS(884), - [anon_sym_STAR_EQ] = ACTIONS(884), - [anon_sym_SLASH_EQ] = ACTIONS(884), - [anon_sym_PERCENT_EQ] = ACTIONS(884), - [anon_sym_AMP_EQ] = ACTIONS(884), - [anon_sym_PIPE_EQ] = ACTIONS(884), - [anon_sym_CARET_EQ] = ACTIONS(884), - [anon_sym_LT_LT_EQ] = ACTIONS(884), - [anon_sym_GT_GT_EQ] = ACTIONS(884), - [anon_sym_move] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(884), - [aux_sym_string_literal_token1] = ACTIONS(884), - [sym_char_literal] = ACTIONS(884), - [anon_sym_true] = ACTIONS(886), - [anon_sym_false] = ACTIONS(886), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(886), - [sym_super] = ACTIONS(886), - [sym_crate] = ACTIONS(886), - [sym_metavariable] = ACTIONS(884), - [sym_raw_string_literal] = ACTIONS(884), - [sym_float_literal] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), + [430] = { + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [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_SLASH] = ACTIONS(1460), + [anon_sym__] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_DASH_GT] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_await] = 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_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_where] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [sym_mutable_specifier] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_metavariable] = ACTIONS(1462), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), }, - [457] = { - [sym_identifier] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_QMARK] = ACTIONS(942), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u128] = ACTIONS(944), - [anon_sym_i128] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_str] = ACTIONS(944), - [anon_sym_char] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym__] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_COLON_COLON] = ACTIONS(942), - [anon_sym_DOT] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(944), - [anon_sym_CARET] = ACTIONS(944), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_as] = ACTIONS(944), - [anon_sym_const] = ACTIONS(944), - [anon_sym_default] = ACTIONS(944), - [anon_sym_static] = ACTIONS(944), - [anon_sym_union] = ACTIONS(944), - [anon_sym_ref] = ACTIONS(944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(942), - [sym_mutable_specifier] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(942), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_EQ_EQ] = ACTIONS(942), - [anon_sym_BANG_EQ] = ACTIONS(942), - [anon_sym_LT_EQ] = ACTIONS(942), - [anon_sym_GT_EQ] = ACTIONS(942), - [anon_sym_LT_LT] = ACTIONS(944), - [anon_sym_GT_GT] = ACTIONS(944), - [anon_sym_PLUS_EQ] = ACTIONS(942), - [anon_sym_DASH_EQ] = ACTIONS(942), - [anon_sym_STAR_EQ] = ACTIONS(942), - [anon_sym_SLASH_EQ] = ACTIONS(942), - [anon_sym_PERCENT_EQ] = ACTIONS(942), - [anon_sym_AMP_EQ] = ACTIONS(942), - [anon_sym_PIPE_EQ] = ACTIONS(942), - [anon_sym_CARET_EQ] = ACTIONS(942), - [anon_sym_LT_LT_EQ] = ACTIONS(942), - [anon_sym_GT_GT_EQ] = ACTIONS(942), - [anon_sym_move] = ACTIONS(944), - [sym_integer_literal] = ACTIONS(942), - [aux_sym_string_literal_token1] = ACTIONS(942), - [sym_char_literal] = ACTIONS(942), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(944), - [sym_super] = ACTIONS(944), - [sym_crate] = ACTIONS(944), - [sym_metavariable] = ACTIONS(942), - [sym_raw_string_literal] = ACTIONS(942), - [sym_float_literal] = ACTIONS(942), - [sym_block_comment] = ACTIONS(3), + [431] = { + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_COLON] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_DASH_GT] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_as] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_await] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_where] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [sym_mutable_specifier] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_metavariable] = ACTIONS(1466), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), }, - [458] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(483), - [sym_last_match_arm] = STATE(3324), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [432] = { + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_COLON] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_DASH_GT] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_as] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_where] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [sym_mutable_specifier] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1470), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), }, - [459] = { - [sym_identifier] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_QMARK] = ACTIONS(980), - [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_SLASH] = ACTIONS(982), - [anon_sym__] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_COLON_COLON] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(980), - [anon_sym_PERCENT] = ACTIONS(982), - [anon_sym_CARET] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_static] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_ref] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(980), - [sym_mutable_specifier] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PERCENT_EQ] = ACTIONS(980), - [anon_sym_AMP_EQ] = ACTIONS(980), - [anon_sym_PIPE_EQ] = ACTIONS(980), - [anon_sym_CARET_EQ] = ACTIONS(980), - [anon_sym_LT_LT_EQ] = ACTIONS(980), - [anon_sym_GT_GT_EQ] = ACTIONS(980), - [anon_sym_move] = ACTIONS(982), - [sym_integer_literal] = ACTIONS(980), - [aux_sym_string_literal_token1] = ACTIONS(980), - [sym_char_literal] = ACTIONS(980), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(982), - [sym_super] = ACTIONS(982), - [sym_crate] = ACTIONS(982), - [sym_metavariable] = ACTIONS(980), - [sym_raw_string_literal] = ACTIONS(980), - [sym_float_literal] = ACTIONS(980), - [sym_block_comment] = ACTIONS(3), + [433] = { + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [sym_identifier] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_COLON] = ACTIONS(1472), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1472), + [anon_sym_i8] = ACTIONS(1472), + [anon_sym_u16] = ACTIONS(1472), + [anon_sym_i16] = ACTIONS(1472), + [anon_sym_u32] = ACTIONS(1472), + [anon_sym_i32] = ACTIONS(1472), + [anon_sym_u64] = ACTIONS(1472), + [anon_sym_i64] = ACTIONS(1472), + [anon_sym_u128] = ACTIONS(1472), + [anon_sym_i128] = ACTIONS(1472), + [anon_sym_isize] = ACTIONS(1472), + [anon_sym_usize] = ACTIONS(1472), + [anon_sym_f32] = ACTIONS(1472), + [anon_sym_f64] = ACTIONS(1472), + [anon_sym_bool] = ACTIONS(1472), + [anon_sym_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_SLASH] = ACTIONS(1472), + [anon_sym__] = ACTIONS(1472), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_DASH_GT] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_as] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1472), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_fn] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_impl] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_mod] = ACTIONS(1472), + [anon_sym_pub] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_trait] = ACTIONS(1472), + [anon_sym_type] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_unsafe] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_where] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [sym_mutable_specifier] = ACTIONS(1472), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1472), + [sym_super] = ACTIONS(1472), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), }, - [460] = { - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(1690), - [anon_sym_i8] = ACTIONS(1690), - [anon_sym_u16] = ACTIONS(1690), - [anon_sym_i16] = ACTIONS(1690), - [anon_sym_u32] = ACTIONS(1690), - [anon_sym_i32] = ACTIONS(1690), - [anon_sym_u64] = ACTIONS(1690), - [anon_sym_i64] = ACTIONS(1690), - [anon_sym_u128] = ACTIONS(1690), - [anon_sym_i128] = ACTIONS(1690), - [anon_sym_isize] = ACTIONS(1690), - [anon_sym_usize] = ACTIONS(1690), - [anon_sym_f32] = ACTIONS(1690), - [anon_sym_f64] = ACTIONS(1690), - [anon_sym_bool] = ACTIONS(1690), - [anon_sym_str] = ACTIONS(1690), - [anon_sym_char] = ACTIONS(1690), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym__] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(1692), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1692), - [anon_sym_PERCENT] = ACTIONS(900), - [anon_sym_CARET] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_as] = ACTIONS(900), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_default] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_ref] = ACTIONS(1690), - [anon_sym_DOT_DOT_DOT] = ACTIONS(898), - [sym_mutable_specifier] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(900), - [anon_sym_GT_GT] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(898), - [anon_sym_DASH_EQ] = ACTIONS(898), - [anon_sym_STAR_EQ] = ACTIONS(898), - [anon_sym_SLASH_EQ] = ACTIONS(898), - [anon_sym_PERCENT_EQ] = ACTIONS(898), - [anon_sym_AMP_EQ] = ACTIONS(898), - [anon_sym_PIPE_EQ] = ACTIONS(898), - [anon_sym_CARET_EQ] = ACTIONS(898), - [anon_sym_LT_LT_EQ] = ACTIONS(898), - [anon_sym_GT_GT_EQ] = ACTIONS(898), - [anon_sym_move] = ACTIONS(1690), - [sym_integer_literal] = ACTIONS(1692), - [aux_sym_string_literal_token1] = ACTIONS(1692), - [sym_char_literal] = ACTIONS(1692), - [anon_sym_true] = ACTIONS(1690), - [anon_sym_false] = ACTIONS(1690), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1690), - [sym_super] = ACTIONS(1690), - [sym_crate] = ACTIONS(1690), - [sym_metavariable] = ACTIONS(1692), - [sym_raw_string_literal] = ACTIONS(1692), - [sym_float_literal] = ACTIONS(1692), - [sym_block_comment] = ACTIONS(3), + [434] = { + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_COLON] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [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_SLASH] = ACTIONS(1476), + [anon_sym__] = ACTIONS(1476), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_DASH_GT] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_as] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_await] = 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_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_where] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [sym_mutable_specifier] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), }, - [461] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(489), - [sym_last_match_arm] = STATE(3268), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [435] = { + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [aux_sym__non_special_token_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACK] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1483), + [anon_sym_DOLLAR] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym__] = ACTIONS(1483), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_await] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_where] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [sym_mutable_specifier] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_raw_string_literal] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), }, - [462] = { - [sym_identifier] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(954), + [436] = { + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [sym_identifier] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_RPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_COLON] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1488), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_DASH_GT] = ACTIONS(1488), + [anon_sym_COMMA] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_AT] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_await] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_where] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [sym_mutable_specifier] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1488), + [aux_sym_string_literal_token1] = ACTIONS(1488), + [sym_char_literal] = ACTIONS(1488), + [anon_sym_true] = ACTIONS(1486), + [anon_sym_false] = ACTIONS(1486), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1488), + [sym_raw_string_literal] = ACTIONS(1488), + [sym_float_literal] = ACTIONS(1488), + }, + [437] = { + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1424), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_SLASH] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1424), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_DASH_GT] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_as] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_where] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [sym_mutable_specifier] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), + }, + [438] = { + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [sym_identifier] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_u8] = ACTIONS(1490), + [anon_sym_i8] = ACTIONS(1490), + [anon_sym_u16] = ACTIONS(1490), + [anon_sym_i16] = ACTIONS(1490), + [anon_sym_u32] = ACTIONS(1490), + [anon_sym_i32] = ACTIONS(1490), + [anon_sym_u64] = ACTIONS(1490), + [anon_sym_i64] = ACTIONS(1490), + [anon_sym_u128] = ACTIONS(1490), + [anon_sym_i128] = ACTIONS(1490), + [anon_sym_isize] = ACTIONS(1490), + [anon_sym_usize] = ACTIONS(1490), + [anon_sym_f32] = ACTIONS(1490), + [anon_sym_f64] = ACTIONS(1490), + [anon_sym_bool] = ACTIONS(1490), + [anon_sym_str] = ACTIONS(1490), + [anon_sym_char] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_fn] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_impl] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_mod] = ACTIONS(1490), + [anon_sym_pub] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_unsafe] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_where] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [sym_mutable_specifier] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1492), + [aux_sym_string_literal_token1] = ACTIONS(1492), + [sym_char_literal] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1490), + [anon_sym_false] = ACTIONS(1490), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_crate] = ACTIONS(1490), + [sym_metavariable] = ACTIONS(1492), + [sym_raw_string_literal] = ACTIONS(1492), + [sym_float_literal] = ACTIONS(1492), + }, + [439] = { + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym_identifier] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1494), + [anon_sym_i8] = ACTIONS(1494), + [anon_sym_u16] = ACTIONS(1494), + [anon_sym_i16] = ACTIONS(1494), + [anon_sym_u32] = ACTIONS(1494), + [anon_sym_i32] = ACTIONS(1494), + [anon_sym_u64] = ACTIONS(1494), + [anon_sym_i64] = ACTIONS(1494), + [anon_sym_u128] = ACTIONS(1494), + [anon_sym_i128] = ACTIONS(1494), + [anon_sym_isize] = ACTIONS(1494), + [anon_sym_usize] = ACTIONS(1494), + [anon_sym_f32] = ACTIONS(1494), + [anon_sym_f64] = ACTIONS(1494), + [anon_sym_bool] = ACTIONS(1494), + [anon_sym_str] = ACTIONS(1494), + [anon_sym_char] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BSLASH] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_DASH_GT] = ACTIONS(1496), + [anon_sym_COMMA] = ACTIONS(1496), + [anon_sym_COLON_COLON] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_AT] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_as] = ACTIONS(1494), + [anon_sym_async] = ACTIONS(1494), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_fn] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_impl] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1494), + [anon_sym_loop] = ACTIONS(1494), + [anon_sym_match] = ACTIONS(1494), + [anon_sym_mod] = ACTIONS(1494), + [anon_sym_pub] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_trait] = ACTIONS(1494), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_unsafe] = ACTIONS(1494), + [anon_sym_use] = ACTIONS(1494), + [anon_sym_where] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [sym_mutable_specifier] = ACTIONS(1494), + [sym_integer_literal] = ACTIONS(1496), + [aux_sym_string_literal_token1] = ACTIONS(1496), + [sym_char_literal] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1494), + [sym_super] = ACTIONS(1494), + [sym_crate] = ACTIONS(1494), + [sym_metavariable] = ACTIONS(1496), + [sym_raw_string_literal] = ACTIONS(1496), + [sym_float_literal] = ACTIONS(1496), + }, + [440] = { + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [sym_identifier] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_COLON] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_u8] = ACTIONS(1498), + [anon_sym_i8] = ACTIONS(1498), + [anon_sym_u16] = ACTIONS(1498), + [anon_sym_i16] = ACTIONS(1498), + [anon_sym_u32] = ACTIONS(1498), + [anon_sym_i32] = ACTIONS(1498), + [anon_sym_u64] = ACTIONS(1498), + [anon_sym_i64] = ACTIONS(1498), + [anon_sym_u128] = ACTIONS(1498), + [anon_sym_i128] = ACTIONS(1498), + [anon_sym_isize] = ACTIONS(1498), + [anon_sym_usize] = ACTIONS(1498), + [anon_sym_f32] = ACTIONS(1498), + [anon_sym_f64] = ACTIONS(1498), + [anon_sym_bool] = ACTIONS(1498), + [anon_sym_str] = ACTIONS(1498), + [anon_sym_char] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym__] = ACTIONS(1498), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_as] = ACTIONS(1498), + [anon_sym_async] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_impl] = ACTIONS(1498), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_loop] = ACTIONS(1498), + [anon_sym_match] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_pub] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_trait] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1498), + [anon_sym_where] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [sym_mutable_specifier] = ACTIONS(1498), + [sym_integer_literal] = ACTIONS(1500), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1500), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1498), + [sym_super] = ACTIONS(1498), + [sym_crate] = ACTIONS(1498), + [sym_metavariable] = ACTIONS(1500), + [sym_raw_string_literal] = ACTIONS(1500), + [sym_float_literal] = ACTIONS(1500), + }, + [441] = { + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [sym_identifier] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_RPAREN] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_COLON] = ACTIONS(1502), + [anon_sym_DOLLAR] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_QMARK] = ACTIONS(1504), + [anon_sym_u8] = ACTIONS(1502), + [anon_sym_i8] = ACTIONS(1502), + [anon_sym_u16] = ACTIONS(1502), + [anon_sym_i16] = ACTIONS(1502), + [anon_sym_u32] = ACTIONS(1502), + [anon_sym_i32] = ACTIONS(1502), + [anon_sym_u64] = ACTIONS(1502), + [anon_sym_i64] = ACTIONS(1502), + [anon_sym_u128] = ACTIONS(1502), + [anon_sym_i128] = ACTIONS(1502), + [anon_sym_isize] = ACTIONS(1502), + [anon_sym_usize] = ACTIONS(1502), + [anon_sym_f32] = ACTIONS(1502), + [anon_sym_f64] = ACTIONS(1502), + [anon_sym_bool] = ACTIONS(1502), + [anon_sym_str] = ACTIONS(1502), + [anon_sym_char] = ACTIONS(1502), + [anon_sym_SLASH] = ACTIONS(1502), + [anon_sym__] = ACTIONS(1502), + [anon_sym_BSLASH] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_DASH_GT] = ACTIONS(1504), + [anon_sym_COMMA] = ACTIONS(1504), + [anon_sym_COLON_COLON] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_DOT] = ACTIONS(1504), + [anon_sym_AT] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_PERCENT] = ACTIONS(1504), + [anon_sym_CARET] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_GT] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_as] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_await] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_fn] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_impl] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1502), + [anon_sym_loop] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_mod] = ACTIONS(1502), + [anon_sym_pub] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_trait] = ACTIONS(1502), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsafe] = ACTIONS(1502), + [anon_sym_use] = ACTIONS(1502), + [anon_sym_where] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [sym_mutable_specifier] = ACTIONS(1502), + [sym_integer_literal] = ACTIONS(1504), + [aux_sym_string_literal_token1] = ACTIONS(1504), + [sym_char_literal] = ACTIONS(1504), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1504), + [sym_float_literal] = ACTIONS(1504), + }, + [442] = { + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [sym_identifier] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_RPAREN] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_COLON] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), + [anon_sym_u8] = ACTIONS(1506), + [anon_sym_i8] = ACTIONS(1506), + [anon_sym_u16] = ACTIONS(1506), + [anon_sym_i16] = ACTIONS(1506), + [anon_sym_u32] = ACTIONS(1506), + [anon_sym_i32] = ACTIONS(1506), + [anon_sym_u64] = ACTIONS(1506), + [anon_sym_i64] = ACTIONS(1506), + [anon_sym_u128] = ACTIONS(1506), + [anon_sym_i128] = ACTIONS(1506), + [anon_sym_isize] = ACTIONS(1506), + [anon_sym_usize] = ACTIONS(1506), + [anon_sym_f32] = ACTIONS(1506), + [anon_sym_f64] = ACTIONS(1506), + [anon_sym_bool] = ACTIONS(1506), + [anon_sym_str] = ACTIONS(1506), + [anon_sym_char] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1506), + [anon_sym__] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_DASH_GT] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_as] = ACTIONS(1506), + [anon_sym_async] = ACTIONS(1506), + [anon_sym_await] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_fn] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_impl] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_pub] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_trait] = ACTIONS(1506), + [anon_sym_type] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_unsafe] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_where] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [sym_mutable_specifier] = ACTIONS(1506), + [sym_integer_literal] = ACTIONS(1508), + [aux_sym_string_literal_token1] = ACTIONS(1508), + [sym_char_literal] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1506), + [sym_super] = ACTIONS(1506), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1508), + [sym_raw_string_literal] = ACTIONS(1508), + [sym_float_literal] = ACTIONS(1508), + }, + [443] = { + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1512), + [anon_sym_COLON] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym__] = ACTIONS(1510), + [anon_sym_BSLASH] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_DASH_GT] = ACTIONS(1512), + [anon_sym_COMMA] = ACTIONS(1512), + [anon_sym_COLON_COLON] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_await] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_fn] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_impl] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_mod] = ACTIONS(1510), + [anon_sym_pub] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_trait] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_unsafe] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_where] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [sym_mutable_specifier] = ACTIONS(1510), + [sym_integer_literal] = ACTIONS(1512), + [aux_sym_string_literal_token1] = ACTIONS(1512), + [sym_char_literal] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_crate] = ACTIONS(1510), + [sym_metavariable] = ACTIONS(1512), + [sym_raw_string_literal] = ACTIONS(1512), + [sym_float_literal] = ACTIONS(1512), + }, + [444] = { + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(1516), + [anon_sym_COLON] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1514), + [anon_sym_i8] = ACTIONS(1514), + [anon_sym_u16] = ACTIONS(1514), + [anon_sym_i16] = ACTIONS(1514), + [anon_sym_u32] = ACTIONS(1514), + [anon_sym_i32] = ACTIONS(1514), + [anon_sym_u64] = ACTIONS(1514), + [anon_sym_i64] = ACTIONS(1514), + [anon_sym_u128] = ACTIONS(1514), + [anon_sym_i128] = ACTIONS(1514), + [anon_sym_isize] = ACTIONS(1514), + [anon_sym_usize] = ACTIONS(1514), + [anon_sym_f32] = ACTIONS(1514), + [anon_sym_f64] = ACTIONS(1514), + [anon_sym_bool] = ACTIONS(1514), + [anon_sym_str] = ACTIONS(1514), + [anon_sym_char] = ACTIONS(1514), + [anon_sym_SLASH] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1514), + [anon_sym_BSLASH] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_DASH_GT] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_AT] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_await] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_impl] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_pub] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_trait] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_unsafe] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_where] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [sym_mutable_specifier] = ACTIONS(1514), + [sym_integer_literal] = ACTIONS(1516), + [aux_sym_string_literal_token1] = ACTIONS(1516), + [sym_char_literal] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1514), + [sym_super] = ACTIONS(1514), + [sym_crate] = ACTIONS(1514), + [sym_metavariable] = ACTIONS(1516), + [sym_raw_string_literal] = ACTIONS(1516), + [sym_float_literal] = ACTIONS(1516), + }, + [445] = { + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_RPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACK] = ACTIONS(1430), + [anon_sym_COLON] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_DASH_GT] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_AT] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_TILDE] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_as] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_await] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_where] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [sym_mutable_specifier] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), + }, + [446] = { + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_impl] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_mod] = ACTIONS(1518), + [anon_sym_pub] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_trait] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_unsafe] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_where] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [sym_mutable_specifier] = ACTIONS(1518), + [sym_integer_literal] = ACTIONS(1520), + [aux_sym_string_literal_token1] = ACTIONS(1520), + [sym_char_literal] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1518), + [sym_super] = ACTIONS(1518), + [sym_crate] = ACTIONS(1518), + [sym_metavariable] = ACTIONS(1520), + [sym_raw_string_literal] = ACTIONS(1520), + [sym_float_literal] = ACTIONS(1520), + }, + [447] = { + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_RBRACK] = ACTIONS(1524), + [anon_sym_COLON] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1522), + [anon_sym_BSLASH] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_DASH_GT] = ACTIONS(1524), + [anon_sym_COMMA] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_AT] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_await] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_fn] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_impl] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_mod] = ACTIONS(1522), + [anon_sym_pub] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_trait] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_unsafe] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_where] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [sym_mutable_specifier] = ACTIONS(1522), + [sym_integer_literal] = ACTIONS(1524), + [aux_sym_string_literal_token1] = ACTIONS(1524), + [sym_char_literal] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1524), + [sym_raw_string_literal] = ACTIONS(1524), + [sym_float_literal] = ACTIONS(1524), + }, + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [sym_identifier] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_RPAREN] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(910), + [anon_sym_RBRACK] = ACTIONS(910), + [anon_sym_COLON] = ACTIONS(912), + [anon_sym_DOLLAR] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_QMARK] = ACTIONS(910), + [anon_sym_u8] = ACTIONS(912), + [anon_sym_i8] = ACTIONS(912), + [anon_sym_u16] = ACTIONS(912), + [anon_sym_i16] = ACTIONS(912), + [anon_sym_u32] = ACTIONS(912), + [anon_sym_i32] = ACTIONS(912), + [anon_sym_u64] = ACTIONS(912), + [anon_sym_i64] = ACTIONS(912), + [anon_sym_u128] = ACTIONS(912), + [anon_sym_i128] = ACTIONS(912), + [anon_sym_isize] = ACTIONS(912), + [anon_sym_usize] = ACTIONS(912), + [anon_sym_f32] = ACTIONS(912), + [anon_sym_f64] = ACTIONS(912), + [anon_sym_bool] = ACTIONS(912), + [anon_sym_str] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym__] = ACTIONS(912), + [anon_sym_BSLASH] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_DASH_GT] = ACTIONS(910), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_DOT] = ACTIONS(910), + [anon_sym_AT] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(910), + [anon_sym_PERCENT] = ACTIONS(910), + [anon_sym_CARET] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_as] = ACTIONS(912), + [anon_sym_async] = ACTIONS(912), + [anon_sym_await] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_const] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_fn] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_impl] = ACTIONS(912), + [anon_sym_let] = ACTIONS(912), + [anon_sym_loop] = ACTIONS(912), + [anon_sym_match] = ACTIONS(912), + [anon_sym_mod] = ACTIONS(912), + [anon_sym_pub] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_struct] = ACTIONS(912), + [anon_sym_trait] = ACTIONS(912), + [anon_sym_type] = ACTIONS(912), + [anon_sym_union] = ACTIONS(912), + [anon_sym_unsafe] = ACTIONS(912), + [anon_sym_use] = ACTIONS(912), + [anon_sym_where] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [sym_mutable_specifier] = ACTIONS(912), + [sym_integer_literal] = ACTIONS(910), + [aux_sym_string_literal_token1] = ACTIONS(910), + [sym_char_literal] = ACTIONS(910), + [anon_sym_true] = ACTIONS(912), + [anon_sym_false] = ACTIONS(912), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(912), + [sym_super] = ACTIONS(912), + [sym_crate] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(910), + [sym_float_literal] = ACTIONS(910), + }, + [449] = { + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [sym_identifier] = ACTIONS(956), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_RBRACK] = ACTIONS(954), + [anon_sym_COLON] = ACTIONS(956), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_QMARK] = ACTIONS(954), [anon_sym_u8] = ACTIONS(956), [anon_sym_i8] = ACTIONS(956), [anon_sym_u16] = ACTIONS(956), @@ -68420,1292 +68523,1758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(956), [anon_sym_SLASH] = ACTIONS(956), [anon_sym__] = ACTIONS(956), + [anon_sym_BSLASH] = ACTIONS(954), [anon_sym_DASH] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(954), + [anon_sym_DASH_GT] = ACTIONS(954), [anon_sym_COMMA] = ACTIONS(954), [anon_sym_COLON_COLON] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(956), - [anon_sym_AMP] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_AT] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), [anon_sym_POUND] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(956), - [anon_sym_CARET] = ACTIONS(956), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), + [anon_sym_PERCENT] = ACTIONS(954), + [anon_sym_CARET] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_GT] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_TILDE] = ACTIONS(954), + [anon_sym_SQUOTE] = ACTIONS(956), [anon_sym_as] = ACTIONS(956), + [anon_sym_async] = ACTIONS(956), + [anon_sym_await] = ACTIONS(956), + [anon_sym_break] = ACTIONS(956), [anon_sym_const] = ACTIONS(956), + [anon_sym_continue] = ACTIONS(956), [anon_sym_default] = ACTIONS(956), + [anon_sym_enum] = ACTIONS(956), + [anon_sym_fn] = ACTIONS(956), + [anon_sym_for] = ACTIONS(956), + [anon_sym_if] = ACTIONS(956), + [anon_sym_impl] = ACTIONS(956), + [anon_sym_let] = ACTIONS(956), + [anon_sym_loop] = ACTIONS(956), + [anon_sym_match] = ACTIONS(956), + [anon_sym_mod] = ACTIONS(956), + [anon_sym_pub] = ACTIONS(956), + [anon_sym_return] = ACTIONS(956), [anon_sym_static] = ACTIONS(956), + [anon_sym_struct] = ACTIONS(956), + [anon_sym_trait] = ACTIONS(956), + [anon_sym_type] = ACTIONS(956), [anon_sym_union] = ACTIONS(956), - [anon_sym_ref] = ACTIONS(956), - [anon_sym_DOT_DOT_DOT] = ACTIONS(954), + [anon_sym_unsafe] = ACTIONS(956), + [anon_sym_use] = ACTIONS(956), + [anon_sym_where] = ACTIONS(956), + [anon_sym_while] = ACTIONS(956), [sym_mutable_specifier] = ACTIONS(956), - [anon_sym_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(954), - [anon_sym_PIPE_PIPE] = ACTIONS(954), - [anon_sym_EQ_EQ] = ACTIONS(954), - [anon_sym_BANG_EQ] = ACTIONS(954), - [anon_sym_LT_EQ] = ACTIONS(954), - [anon_sym_GT_EQ] = ACTIONS(954), - [anon_sym_LT_LT] = ACTIONS(956), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PERCENT_EQ] = ACTIONS(954), - [anon_sym_AMP_EQ] = ACTIONS(954), - [anon_sym_PIPE_EQ] = ACTIONS(954), - [anon_sym_CARET_EQ] = ACTIONS(954), - [anon_sym_LT_LT_EQ] = ACTIONS(954), - [anon_sym_GT_GT_EQ] = ACTIONS(954), - [anon_sym_move] = ACTIONS(956), [sym_integer_literal] = ACTIONS(954), [aux_sym_string_literal_token1] = ACTIONS(954), [sym_char_literal] = ACTIONS(954), [anon_sym_true] = ACTIONS(956), [anon_sym_false] = ACTIONS(956), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(956), [sym_super] = ACTIONS(956), [sym_crate] = ACTIONS(956), - [sym_metavariable] = ACTIONS(954), [sym_raw_string_literal] = ACTIONS(954), [sym_float_literal] = ACTIONS(954), - [sym_block_comment] = ACTIONS(3), }, - [463] = { - [sym_identifier] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RBRACE] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_QMARK] = ACTIONS(902), - [anon_sym_u8] = ACTIONS(904), - [anon_sym_i8] = ACTIONS(904), - [anon_sym_u16] = ACTIONS(904), - [anon_sym_i16] = ACTIONS(904), - [anon_sym_u32] = ACTIONS(904), - [anon_sym_i32] = ACTIONS(904), - [anon_sym_u64] = ACTIONS(904), - [anon_sym_i64] = ACTIONS(904), - [anon_sym_u128] = ACTIONS(904), - [anon_sym_i128] = ACTIONS(904), - [anon_sym_isize] = ACTIONS(904), - [anon_sym_usize] = ACTIONS(904), - [anon_sym_f32] = ACTIONS(904), - [anon_sym_f64] = ACTIONS(904), - [anon_sym_bool] = ACTIONS(904), - [anon_sym_str] = ACTIONS(904), - [anon_sym_char] = ACTIONS(904), - [anon_sym_SLASH] = ACTIONS(904), - [anon_sym__] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_COLON_COLON] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_POUND] = ACTIONS(902), - [anon_sym_PERCENT] = ACTIONS(904), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(904), - [anon_sym_PIPE] = ACTIONS(904), - [anon_sym_as] = ACTIONS(904), - [anon_sym_const] = ACTIONS(904), - [anon_sym_default] = ACTIONS(904), - [anon_sym_static] = ACTIONS(904), - [anon_sym_union] = ACTIONS(904), - [anon_sym_ref] = ACTIONS(904), - [anon_sym_DOT_DOT_DOT] = ACTIONS(902), - [sym_mutable_specifier] = ACTIONS(904), - [anon_sym_DOT_DOT] = ACTIONS(904), - [anon_sym_DOT_DOT_EQ] = ACTIONS(902), - [anon_sym_AMP_AMP] = ACTIONS(902), - [anon_sym_PIPE_PIPE] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(902), - [anon_sym_BANG_EQ] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(902), - [anon_sym_LT_LT] = ACTIONS(904), - [anon_sym_GT_GT] = ACTIONS(904), - [anon_sym_PLUS_EQ] = ACTIONS(902), - [anon_sym_DASH_EQ] = ACTIONS(902), - [anon_sym_STAR_EQ] = ACTIONS(902), - [anon_sym_SLASH_EQ] = ACTIONS(902), - [anon_sym_PERCENT_EQ] = ACTIONS(902), - [anon_sym_AMP_EQ] = ACTIONS(902), - [anon_sym_PIPE_EQ] = ACTIONS(902), - [anon_sym_CARET_EQ] = ACTIONS(902), - [anon_sym_LT_LT_EQ] = ACTIONS(902), - [anon_sym_GT_GT_EQ] = ACTIONS(902), - [anon_sym_move] = ACTIONS(904), - [sym_integer_literal] = ACTIONS(902), - [aux_sym_string_literal_token1] = ACTIONS(902), - [sym_char_literal] = ACTIONS(902), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(904), - [sym_super] = ACTIONS(904), - [sym_crate] = ACTIONS(904), - [sym_metavariable] = ACTIONS(902), - [sym_raw_string_literal] = ACTIONS(902), - [sym_float_literal] = ACTIONS(902), - [sym_block_comment] = ACTIONS(3), + [450] = { + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_RPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_RBRACK] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1518), + [anon_sym_BSLASH] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1520), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_AT] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_await] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_impl] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_mod] = ACTIONS(1518), + [anon_sym_pub] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_trait] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_unsafe] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_where] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [sym_mutable_specifier] = ACTIONS(1518), + [sym_integer_literal] = ACTIONS(1520), + [aux_sym_string_literal_token1] = ACTIONS(1520), + [sym_char_literal] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1518), + [sym_super] = ACTIONS(1518), + [sym_crate] = ACTIONS(1518), + [sym_raw_string_literal] = ACTIONS(1520), + [sym_float_literal] = ACTIONS(1520), }, - [464] = { - [sym_identifier] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_QMARK] = ACTIONS(898), - [anon_sym_u8] = ACTIONS(1696), - [anon_sym_i8] = ACTIONS(1696), - [anon_sym_u16] = ACTIONS(1696), - [anon_sym_i16] = ACTIONS(1696), - [anon_sym_u32] = ACTIONS(1696), - [anon_sym_i32] = ACTIONS(1696), - [anon_sym_u64] = ACTIONS(1696), - [anon_sym_i64] = ACTIONS(1696), - [anon_sym_u128] = ACTIONS(1696), - [anon_sym_i128] = ACTIONS(1696), - [anon_sym_isize] = ACTIONS(1696), - [anon_sym_usize] = ACTIONS(1696), - [anon_sym_f32] = ACTIONS(1696), - [anon_sym_f64] = ACTIONS(1696), - [anon_sym_bool] = ACTIONS(1696), - [anon_sym_str] = ACTIONS(1696), - [anon_sym_char] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(900), - [anon_sym__] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_EQ] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_DOT] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(900), - [anon_sym_CARET] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_GT] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_as] = ACTIONS(900), - [anon_sym_const] = ACTIONS(1696), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_union] = ACTIONS(1696), - [anon_sym_ref] = ACTIONS(1696), - [anon_sym_DOT_DOT_DOT] = ACTIONS(898), - [sym_mutable_specifier] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [anon_sym_EQ_EQ] = ACTIONS(898), - [anon_sym_BANG_EQ] = ACTIONS(898), - [anon_sym_LT_EQ] = ACTIONS(898), - [anon_sym_GT_EQ] = ACTIONS(898), - [anon_sym_LT_LT] = ACTIONS(900), - [anon_sym_GT_GT] = ACTIONS(900), - [anon_sym_PLUS_EQ] = ACTIONS(898), - [anon_sym_DASH_EQ] = ACTIONS(898), - [anon_sym_STAR_EQ] = ACTIONS(898), - [anon_sym_SLASH_EQ] = ACTIONS(898), - [anon_sym_PERCENT_EQ] = ACTIONS(898), - [anon_sym_AMP_EQ] = ACTIONS(898), - [anon_sym_PIPE_EQ] = ACTIONS(898), - [anon_sym_CARET_EQ] = ACTIONS(898), - [anon_sym_LT_LT_EQ] = ACTIONS(898), - [anon_sym_GT_GT_EQ] = ACTIONS(898), - [anon_sym_move] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1698), - [aux_sym_string_literal_token1] = ACTIONS(1698), - [sym_char_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1696), - [sym_super] = ACTIONS(1696), - [sym_crate] = ACTIONS(1696), - [sym_metavariable] = ACTIONS(1698), - [sym_raw_string_literal] = ACTIONS(1698), - [sym_float_literal] = ACTIONS(1698), - [sym_block_comment] = ACTIONS(3), + [451] = { + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_COLON] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [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_SLASH] = ACTIONS(1460), + [anon_sym__] = ACTIONS(1460), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_DASH_GT] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_as] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_await] = 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_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_where] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [sym_mutable_specifier] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), }, - [465] = { - [sym_identifier] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(972), - [anon_sym_u8] = ACTIONS(974), - [anon_sym_i8] = ACTIONS(974), - [anon_sym_u16] = ACTIONS(974), - [anon_sym_i16] = ACTIONS(974), - [anon_sym_u32] = ACTIONS(974), - [anon_sym_i32] = ACTIONS(974), - [anon_sym_u64] = ACTIONS(974), - [anon_sym_i64] = ACTIONS(974), - [anon_sym_u128] = ACTIONS(974), - [anon_sym_i128] = ACTIONS(974), - [anon_sym_isize] = ACTIONS(974), - [anon_sym_usize] = ACTIONS(974), - [anon_sym_f32] = ACTIONS(974), - [anon_sym_f64] = ACTIONS(974), - [anon_sym_bool] = ACTIONS(974), - [anon_sym_str] = ACTIONS(974), - [anon_sym_char] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym__] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_COLON_COLON] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(972), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_static] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_ref] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT] = ACTIONS(972), - [sym_mutable_specifier] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PERCENT_EQ] = ACTIONS(972), - [anon_sym_AMP_EQ] = ACTIONS(972), - [anon_sym_PIPE_EQ] = ACTIONS(972), - [anon_sym_CARET_EQ] = ACTIONS(972), - [anon_sym_LT_LT_EQ] = ACTIONS(972), - [anon_sym_GT_GT_EQ] = ACTIONS(972), - [anon_sym_move] = ACTIONS(974), - [sym_integer_literal] = ACTIONS(972), - [aux_sym_string_literal_token1] = ACTIONS(972), - [sym_char_literal] = ACTIONS(972), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(974), - [sym_super] = ACTIONS(974), - [sym_crate] = ACTIONS(974), - [sym_metavariable] = ACTIONS(972), - [sym_raw_string_literal] = ACTIONS(972), - [sym_float_literal] = ACTIONS(972), - [sym_block_comment] = ACTIONS(3), + [452] = { + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [sym_identifier] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_RBRACK] = ACTIONS(1492), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_u8] = ACTIONS(1490), + [anon_sym_i8] = ACTIONS(1490), + [anon_sym_u16] = ACTIONS(1490), + [anon_sym_i16] = ACTIONS(1490), + [anon_sym_u32] = ACTIONS(1490), + [anon_sym_i32] = ACTIONS(1490), + [anon_sym_u64] = ACTIONS(1490), + [anon_sym_i64] = ACTIONS(1490), + [anon_sym_u128] = ACTIONS(1490), + [anon_sym_i128] = ACTIONS(1490), + [anon_sym_isize] = ACTIONS(1490), + [anon_sym_usize] = ACTIONS(1490), + [anon_sym_f32] = ACTIONS(1490), + [anon_sym_f64] = ACTIONS(1490), + [anon_sym_bool] = ACTIONS(1490), + [anon_sym_str] = ACTIONS(1490), + [anon_sym_char] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_DASH_GT] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_AT] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_fn] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_impl] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_mod] = ACTIONS(1490), + [anon_sym_pub] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_unsafe] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_where] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [sym_mutable_specifier] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1492), + [aux_sym_string_literal_token1] = ACTIONS(1492), + [sym_char_literal] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1490), + [anon_sym_false] = ACTIONS(1490), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_crate] = ACTIONS(1490), + [sym_raw_string_literal] = ACTIONS(1492), + [sym_float_literal] = ACTIONS(1492), }, - [466] = { - [sym_identifier] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(996), - [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_SLASH] = ACTIONS(998), - [anon_sym__] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(996), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_as] = ACTIONS(998), - [anon_sym_const] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_static] = ACTIONS(998), - [anon_sym_union] = ACTIONS(998), - [anon_sym_ref] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT] = ACTIONS(996), - [sym_mutable_specifier] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(996), - [anon_sym_PIPE_PIPE] = ACTIONS(996), - [anon_sym_EQ_EQ] = ACTIONS(996), - [anon_sym_BANG_EQ] = ACTIONS(996), - [anon_sym_LT_EQ] = ACTIONS(996), - [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_LT] = ACTIONS(998), - [anon_sym_GT_GT] = ACTIONS(998), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PERCENT_EQ] = ACTIONS(996), - [anon_sym_AMP_EQ] = ACTIONS(996), - [anon_sym_PIPE_EQ] = ACTIONS(996), - [anon_sym_CARET_EQ] = ACTIONS(996), - [anon_sym_LT_LT_EQ] = ACTIONS(996), - [anon_sym_GT_GT_EQ] = ACTIONS(996), - [anon_sym_move] = ACTIONS(998), - [sym_integer_literal] = ACTIONS(996), - [aux_sym_string_literal_token1] = ACTIONS(996), - [sym_char_literal] = ACTIONS(996), - [anon_sym_true] = ACTIONS(998), - [anon_sym_false] = ACTIONS(998), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(998), - [sym_super] = ACTIONS(998), - [sym_crate] = ACTIONS(998), - [sym_metavariable] = ACTIONS(996), - [sym_raw_string_literal] = ACTIONS(996), - [sym_float_literal] = ACTIONS(996), - [sym_block_comment] = ACTIONS(3), + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_COLON] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym__] = ACTIONS(1468), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_DASH_GT] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_as] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_await] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_where] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [sym_mutable_specifier] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), }, - [467] = { - [sym_identifier] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(988), - [anon_sym_u8] = ACTIONS(990), - [anon_sym_i8] = ACTIONS(990), - [anon_sym_u16] = ACTIONS(990), - [anon_sym_i16] = ACTIONS(990), - [anon_sym_u32] = ACTIONS(990), - [anon_sym_i32] = ACTIONS(990), - [anon_sym_u64] = ACTIONS(990), - [anon_sym_i64] = ACTIONS(990), - [anon_sym_u128] = ACTIONS(990), - [anon_sym_i128] = ACTIONS(990), - [anon_sym_isize] = ACTIONS(990), - [anon_sym_usize] = ACTIONS(990), - [anon_sym_f32] = ACTIONS(990), - [anon_sym_f64] = ACTIONS(990), - [anon_sym_bool] = ACTIONS(990), - [anon_sym_str] = ACTIONS(990), - [anon_sym_char] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym__] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_COLON_COLON] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_POUND] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_static] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_ref] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(988), - [sym_mutable_specifier] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_PIPE_PIPE] = ACTIONS(988), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_LT_LT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PERCENT_EQ] = ACTIONS(988), - [anon_sym_AMP_EQ] = ACTIONS(988), - [anon_sym_PIPE_EQ] = ACTIONS(988), - [anon_sym_CARET_EQ] = ACTIONS(988), - [anon_sym_LT_LT_EQ] = ACTIONS(988), - [anon_sym_GT_GT_EQ] = ACTIONS(988), - [anon_sym_move] = ACTIONS(990), - [sym_integer_literal] = ACTIONS(988), - [aux_sym_string_literal_token1] = ACTIONS(988), - [sym_char_literal] = ACTIONS(988), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(990), - [sym_super] = ACTIONS(990), - [sym_crate] = ACTIONS(990), - [sym_metavariable] = ACTIONS(988), - [sym_raw_string_literal] = ACTIONS(988), - [sym_float_literal] = ACTIONS(988), - [sym_block_comment] = ACTIONS(3), + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [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_SLASH] = ACTIONS(1456), + [anon_sym__] = ACTIONS(1456), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_DASH_GT] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_COLON_COLON] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_await] = 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_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_where] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [sym_mutable_specifier] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), }, - [468] = { - [sym_identifier] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_u8] = ACTIONS(970), - [anon_sym_i8] = ACTIONS(970), - [anon_sym_u16] = ACTIONS(970), - [anon_sym_i16] = ACTIONS(970), - [anon_sym_u32] = ACTIONS(970), - [anon_sym_i32] = ACTIONS(970), - [anon_sym_u64] = ACTIONS(970), - [anon_sym_i64] = ACTIONS(970), - [anon_sym_u128] = ACTIONS(970), - [anon_sym_i128] = ACTIONS(970), - [anon_sym_isize] = ACTIONS(970), - [anon_sym_usize] = ACTIONS(970), - [anon_sym_f32] = ACTIONS(970), - [anon_sym_f64] = ACTIONS(970), - [anon_sym_bool] = ACTIONS(970), - [anon_sym_str] = ACTIONS(970), - [anon_sym_char] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym__] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_COLON_COLON] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_POUND] = ACTIONS(968), - [anon_sym_PERCENT] = ACTIONS(970), - [anon_sym_CARET] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_static] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_ref] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [sym_mutable_specifier] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_AMP_AMP] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(968), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PERCENT_EQ] = ACTIONS(968), - [anon_sym_AMP_EQ] = ACTIONS(968), - [anon_sym_PIPE_EQ] = ACTIONS(968), - [anon_sym_CARET_EQ] = ACTIONS(968), - [anon_sym_LT_LT_EQ] = ACTIONS(968), - [anon_sym_GT_GT_EQ] = ACTIONS(968), - [anon_sym_move] = ACTIONS(970), - [sym_integer_literal] = ACTIONS(968), - [aux_sym_string_literal_token1] = ACTIONS(968), - [sym_char_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(970), - [sym_super] = ACTIONS(970), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(968), - [sym_raw_string_literal] = ACTIONS(968), - [sym_float_literal] = ACTIONS(968), - [sym_block_comment] = ACTIONS(3), + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [sym_identifier] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_RBRACK] = ACTIONS(1528), + [anon_sym_COLON] = ACTIONS(1526), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_SLASH] = ACTIONS(1526), + [anon_sym__] = ACTIONS(1526), + [anon_sym_BSLASH] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_EQ] = ACTIONS(1528), + [anon_sym_DASH_GT] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_DOT] = ACTIONS(1528), + [anon_sym_AT] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_PERCENT] = ACTIONS(1528), + [anon_sym_CARET] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_as] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_await] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_fn] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_impl] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_mod] = ACTIONS(1526), + [anon_sym_pub] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_trait] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_unsafe] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_where] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [sym_mutable_specifier] = ACTIONS(1526), + [sym_integer_literal] = ACTIONS(1528), + [aux_sym_string_literal_token1] = ACTIONS(1528), + [sym_char_literal] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1526), + [anon_sym_false] = ACTIONS(1526), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1526), + [sym_super] = ACTIONS(1526), + [sym_crate] = ACTIONS(1526), + [sym_raw_string_literal] = ACTIONS(1528), + [sym_float_literal] = ACTIONS(1528), }, - [469] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(481), - [sym_last_match_arm] = STATE(3361), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(481), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [456] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_COLON] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SLASH] = ACTIONS(1464), + [anon_sym__] = ACTIONS(1464), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_DASH_GT] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_as] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_await] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_where] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [sym_mutable_specifier] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), }, - [470] = { - [sym_identifier] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_QMARK] = ACTIONS(946), - [anon_sym_u8] = ACTIONS(948), - [anon_sym_i8] = ACTIONS(948), - [anon_sym_u16] = ACTIONS(948), - [anon_sym_i16] = ACTIONS(948), - [anon_sym_u32] = ACTIONS(948), - [anon_sym_i32] = ACTIONS(948), - [anon_sym_u64] = ACTIONS(948), - [anon_sym_i64] = ACTIONS(948), - [anon_sym_u128] = ACTIONS(948), - [anon_sym_i128] = ACTIONS(948), - [anon_sym_isize] = ACTIONS(948), - [anon_sym_usize] = ACTIONS(948), - [anon_sym_f32] = ACTIONS(948), - [anon_sym_f64] = ACTIONS(948), - [anon_sym_bool] = ACTIONS(948), - [anon_sym_str] = ACTIONS(948), - [anon_sym_char] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym__] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_COLON_COLON] = ACTIONS(946), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(946), - [anon_sym_PERCENT] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_static] = ACTIONS(948), - [anon_sym_union] = ACTIONS(948), - [anon_sym_ref] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(946), - [sym_mutable_specifier] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(946), - [anon_sym_EQ_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(946), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_LT_LT] = ACTIONS(948), - [anon_sym_GT_GT] = ACTIONS(948), - [anon_sym_PLUS_EQ] = ACTIONS(946), - [anon_sym_DASH_EQ] = ACTIONS(946), - [anon_sym_STAR_EQ] = ACTIONS(946), - [anon_sym_SLASH_EQ] = ACTIONS(946), - [anon_sym_PERCENT_EQ] = ACTIONS(946), - [anon_sym_AMP_EQ] = ACTIONS(946), - [anon_sym_PIPE_EQ] = ACTIONS(946), - [anon_sym_CARET_EQ] = ACTIONS(946), - [anon_sym_LT_LT_EQ] = ACTIONS(946), - [anon_sym_GT_GT_EQ] = ACTIONS(946), - [anon_sym_move] = ACTIONS(948), - [sym_integer_literal] = ACTIONS(946), - [aux_sym_string_literal_token1] = ACTIONS(946), - [sym_char_literal] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(948), - [sym_super] = ACTIONS(948), - [sym_crate] = ACTIONS(948), - [sym_metavariable] = ACTIONS(946), - [sym_raw_string_literal] = ACTIONS(946), - [sym_float_literal] = ACTIONS(946), - [sym_block_comment] = ACTIONS(3), + [457] = { + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [sym_identifier] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_RPAREN] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_RBRACK] = ACTIONS(1532), + [anon_sym_COLON] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_u8] = ACTIONS(1530), + [anon_sym_i8] = ACTIONS(1530), + [anon_sym_u16] = ACTIONS(1530), + [anon_sym_i16] = ACTIONS(1530), + [anon_sym_u32] = ACTIONS(1530), + [anon_sym_i32] = ACTIONS(1530), + [anon_sym_u64] = ACTIONS(1530), + [anon_sym_i64] = ACTIONS(1530), + [anon_sym_u128] = ACTIONS(1530), + [anon_sym_i128] = ACTIONS(1530), + [anon_sym_isize] = ACTIONS(1530), + [anon_sym_usize] = ACTIONS(1530), + [anon_sym_f32] = ACTIONS(1530), + [anon_sym_f64] = ACTIONS(1530), + [anon_sym_bool] = ACTIONS(1530), + [anon_sym_str] = ACTIONS(1530), + [anon_sym_char] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym__] = ACTIONS(1530), + [anon_sym_BSLASH] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_EQ] = ACTIONS(1532), + [anon_sym_DASH_GT] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1532), + [anon_sym_AT] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_PERCENT] = ACTIONS(1532), + [anon_sym_CARET] = ACTIONS(1532), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_async] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_fn] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_impl] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_mod] = ACTIONS(1530), + [anon_sym_pub] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_trait] = ACTIONS(1530), + [anon_sym_type] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_unsafe] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_where] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(1530), + [sym_integer_literal] = ACTIONS(1532), + [aux_sym_string_literal_token1] = ACTIONS(1532), + [sym_char_literal] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1530), + [sym_super] = ACTIONS(1530), + [sym_crate] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(1532), + [sym_float_literal] = ACTIONS(1532), }, - [471] = { - [sym_identifier] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1004), - [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_SLASH] = ACTIONS(1006), - [anon_sym__] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_COLON_COLON] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1006), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_as] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_union] = ACTIONS(1006), - [anon_sym_ref] = ACTIONS(1006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1004), - [sym_mutable_specifier] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1004), - [anon_sym_PIPE_PIPE] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT_EQ] = ACTIONS(1004), - [anon_sym_LT_LT] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(1006), - [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_AMP_EQ] = ACTIONS(1004), - [anon_sym_PIPE_EQ] = ACTIONS(1004), - [anon_sym_CARET_EQ] = ACTIONS(1004), - [anon_sym_LT_LT_EQ] = ACTIONS(1004), - [anon_sym_GT_GT_EQ] = ACTIONS(1004), - [anon_sym_move] = ACTIONS(1006), - [sym_integer_literal] = ACTIONS(1004), - [aux_sym_string_literal_token1] = ACTIONS(1004), - [sym_char_literal] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1006), - [sym_super] = ACTIONS(1006), - [sym_crate] = ACTIONS(1006), - [sym_metavariable] = ACTIONS(1004), - [sym_raw_string_literal] = ACTIONS(1004), - [sym_float_literal] = ACTIONS(1004), - [sym_block_comment] = ACTIONS(3), + [458] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2063), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_identifier] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym__] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_DASH_GT] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_async] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_loop] = ACTIONS(1534), + [anon_sym_match] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_unsafe] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_yield] = ACTIONS(1534), + [anon_sym_move] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1534), + [anon_sym_false] = ACTIONS(1534), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1534), + [sym_crate] = ACTIONS(1534), + [sym_metavariable] = ACTIONS(1536), + [sym_raw_string_literal] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), }, - [472] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(486), - [sym_last_match_arm] = STATE(3294), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [459] = { + [sym_else_clause] = STATE(486), + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym_identifier] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(742), + [anon_sym_u8] = ACTIONS(744), + [anon_sym_i8] = ACTIONS(744), + [anon_sym_u16] = ACTIONS(744), + [anon_sym_i16] = ACTIONS(744), + [anon_sym_u32] = ACTIONS(744), + [anon_sym_i32] = ACTIONS(744), + [anon_sym_u64] = ACTIONS(744), + [anon_sym_i64] = ACTIONS(744), + [anon_sym_u128] = ACTIONS(744), + [anon_sym_i128] = ACTIONS(744), + [anon_sym_isize] = ACTIONS(744), + [anon_sym_usize] = ACTIONS(744), + [anon_sym_f32] = ACTIONS(744), + [anon_sym_f64] = ACTIONS(744), + [anon_sym_bool] = ACTIONS(744), + [anon_sym_str] = ACTIONS(744), + [anon_sym_char] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym__] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_EQ] = ACTIONS(744), + [anon_sym_COMMA] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(744), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(742), + [anon_sym_PERCENT] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), + [anon_sym_LT] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_as] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_static] = ACTIONS(744), + [anon_sym_union] = ACTIONS(744), + [anon_sym_ref] = ACTIONS(744), + [anon_sym_else] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(742), + [sym_mutable_specifier] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(742), + [anon_sym_AMP_AMP] = ACTIONS(742), + [anon_sym_PIPE_PIPE] = ACTIONS(742), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT_EQ] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(742), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(744), + [anon_sym_PLUS_EQ] = ACTIONS(742), + [anon_sym_DASH_EQ] = ACTIONS(742), + [anon_sym_STAR_EQ] = ACTIONS(742), + [anon_sym_SLASH_EQ] = ACTIONS(742), + [anon_sym_PERCENT_EQ] = ACTIONS(742), + [anon_sym_AMP_EQ] = ACTIONS(742), + [anon_sym_PIPE_EQ] = ACTIONS(742), + [anon_sym_CARET_EQ] = ACTIONS(742), + [anon_sym_LT_LT_EQ] = ACTIONS(742), + [anon_sym_GT_GT_EQ] = ACTIONS(742), + [anon_sym_move] = ACTIONS(744), + [sym_integer_literal] = ACTIONS(742), + [aux_sym_string_literal_token1] = ACTIONS(742), + [sym_char_literal] = ACTIONS(742), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(744), + [sym_super] = ACTIONS(744), + [sym_crate] = ACTIONS(744), + [sym_metavariable] = ACTIONS(742), + [sym_raw_string_literal] = ACTIONS(742), + [sym_float_literal] = ACTIONS(742), }, - [473] = { - [sym_identifier] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_QMARK] = ACTIONS(930), - [anon_sym_u8] = ACTIONS(932), - [anon_sym_i8] = ACTIONS(932), - [anon_sym_u16] = ACTIONS(932), - [anon_sym_i16] = ACTIONS(932), - [anon_sym_u32] = ACTIONS(932), - [anon_sym_i32] = ACTIONS(932), - [anon_sym_u64] = ACTIONS(932), - [anon_sym_i64] = ACTIONS(932), - [anon_sym_u128] = ACTIONS(932), - [anon_sym_i128] = ACTIONS(932), - [anon_sym_isize] = ACTIONS(932), - [anon_sym_usize] = ACTIONS(932), - [anon_sym_f32] = ACTIONS(932), - [anon_sym_f64] = ACTIONS(932), - [anon_sym_bool] = ACTIONS(932), - [anon_sym_str] = ACTIONS(932), - [anon_sym_char] = ACTIONS(932), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym__] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_EQ] = ACTIONS(932), - [anon_sym_COMMA] = ACTIONS(930), - [anon_sym_COLON_COLON] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(932), - [anon_sym_CARET] = ACTIONS(932), - [anon_sym_LT] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_as] = ACTIONS(932), - [anon_sym_const] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_static] = ACTIONS(932), - [anon_sym_union] = ACTIONS(932), - [anon_sym_ref] = ACTIONS(932), - [anon_sym_DOT_DOT_DOT] = ACTIONS(930), - [sym_mutable_specifier] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT_EQ] = ACTIONS(930), - [anon_sym_AMP_AMP] = ACTIONS(930), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_LT_LT] = ACTIONS(932), - [anon_sym_GT_GT] = ACTIONS(932), - [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_AMP_EQ] = ACTIONS(930), - [anon_sym_PIPE_EQ] = ACTIONS(930), - [anon_sym_CARET_EQ] = ACTIONS(930), - [anon_sym_LT_LT_EQ] = ACTIONS(930), - [anon_sym_GT_GT_EQ] = ACTIONS(930), - [anon_sym_move] = ACTIONS(932), - [sym_integer_literal] = ACTIONS(930), - [aux_sym_string_literal_token1] = ACTIONS(930), - [sym_char_literal] = ACTIONS(930), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(932), - [sym_super] = ACTIONS(932), - [sym_crate] = ACTIONS(932), - [sym_metavariable] = ACTIONS(930), - [sym_raw_string_literal] = ACTIONS(930), - [sym_float_literal] = ACTIONS(930), - [sym_block_comment] = ACTIONS(3), + [460] = { + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_QMARK] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u128] = ACTIONS(870), + [anon_sym_i128] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_str] = ACTIONS(870), + [anon_sym_char] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym__] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_EQ] = ACTIONS(870), + [anon_sym_COMMA] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym_DOT] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_PERCENT] = ACTIONS(870), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_as] = ACTIONS(870), + [anon_sym_const] = ACTIONS(870), + [anon_sym_default] = ACTIONS(870), + [anon_sym_static] = ACTIONS(870), + [anon_sym_union] = ACTIONS(870), + [anon_sym_ref] = ACTIONS(870), + [anon_sym_else] = ACTIONS(870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(868), + [sym_mutable_specifier] = ACTIONS(870), + [anon_sym_DOT_DOT] = ACTIONS(870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT_EQ] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(868), + [anon_sym_STAR_EQ] = ACTIONS(868), + [anon_sym_SLASH_EQ] = ACTIONS(868), + [anon_sym_PERCENT_EQ] = ACTIONS(868), + [anon_sym_AMP_EQ] = ACTIONS(868), + [anon_sym_PIPE_EQ] = ACTIONS(868), + [anon_sym_CARET_EQ] = ACTIONS(868), + [anon_sym_LT_LT_EQ] = ACTIONS(868), + [anon_sym_GT_GT_EQ] = ACTIONS(868), + [anon_sym_move] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(870), + [anon_sym_false] = ACTIONS(870), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(870), + [sym_super] = ACTIONS(870), + [sym_crate] = ACTIONS(870), + [sym_metavariable] = ACTIONS(868), + [sym_raw_string_literal] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), }, - [474] = { - [sym_identifier] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_u8] = ACTIONS(966), - [anon_sym_i8] = ACTIONS(966), - [anon_sym_u16] = ACTIONS(966), - [anon_sym_i16] = ACTIONS(966), - [anon_sym_u32] = ACTIONS(966), - [anon_sym_i32] = ACTIONS(966), - [anon_sym_u64] = ACTIONS(966), - [anon_sym_i64] = ACTIONS(966), - [anon_sym_u128] = ACTIONS(966), - [anon_sym_i128] = ACTIONS(966), - [anon_sym_isize] = ACTIONS(966), - [anon_sym_usize] = ACTIONS(966), - [anon_sym_f32] = ACTIONS(966), - [anon_sym_f64] = ACTIONS(966), - [anon_sym_bool] = ACTIONS(966), - [anon_sym_str] = ACTIONS(966), - [anon_sym_char] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym__] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_POUND] = ACTIONS(964), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(966), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_static] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_ref] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(964), - [sym_mutable_specifier] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PERCENT_EQ] = ACTIONS(964), - [anon_sym_AMP_EQ] = ACTIONS(964), - [anon_sym_PIPE_EQ] = ACTIONS(964), - [anon_sym_CARET_EQ] = ACTIONS(964), - [anon_sym_LT_LT_EQ] = ACTIONS(964), - [anon_sym_GT_GT_EQ] = ACTIONS(964), - [anon_sym_move] = ACTIONS(966), - [sym_integer_literal] = ACTIONS(964), - [aux_sym_string_literal_token1] = ACTIONS(964), - [sym_char_literal] = ACTIONS(964), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(966), - [sym_super] = ACTIONS(966), - [sym_crate] = ACTIONS(966), - [sym_metavariable] = ACTIONS(964), - [sym_raw_string_literal] = ACTIONS(964), - [sym_float_literal] = ACTIONS(964), - [sym_block_comment] = ACTIONS(3), + [461] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_identifier] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u128] = ACTIONS(880), + [anon_sym_i128] = ACTIONS(880), + [anon_sym_isize] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_f32] = ACTIONS(880), + [anon_sym_f64] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_str] = ACTIONS(880), + [anon_sym_char] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(880), + [anon_sym__] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(878), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_as] = ACTIONS(880), + [anon_sym_const] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_static] = ACTIONS(880), + [anon_sym_union] = ACTIONS(880), + [anon_sym_ref] = ACTIONS(880), + [anon_sym_else] = ACTIONS(880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(878), + [sym_mutable_specifier] = ACTIONS(880), + [anon_sym_DOT_DOT] = ACTIONS(880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_STAR_EQ] = ACTIONS(878), + [anon_sym_SLASH_EQ] = ACTIONS(878), + [anon_sym_PERCENT_EQ] = ACTIONS(878), + [anon_sym_AMP_EQ] = ACTIONS(878), + [anon_sym_PIPE_EQ] = ACTIONS(878), + [anon_sym_CARET_EQ] = ACTIONS(878), + [anon_sym_LT_LT_EQ] = ACTIONS(878), + [anon_sym_GT_GT_EQ] = ACTIONS(878), + [anon_sym_move] = ACTIONS(880), + [sym_integer_literal] = ACTIONS(878), + [aux_sym_string_literal_token1] = ACTIONS(878), + [sym_char_literal] = ACTIONS(878), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(880), + [sym_super] = ACTIONS(880), + [sym_crate] = ACTIONS(880), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(878), + [sym_float_literal] = ACTIONS(878), }, - [475] = { - [sym_identifier] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_LBRACK] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(958), - [anon_sym_u8] = ACTIONS(960), - [anon_sym_i8] = ACTIONS(960), - [anon_sym_u16] = ACTIONS(960), - [anon_sym_i16] = ACTIONS(960), - [anon_sym_u32] = ACTIONS(960), - [anon_sym_i32] = ACTIONS(960), - [anon_sym_u64] = ACTIONS(960), - [anon_sym_i64] = ACTIONS(960), - [anon_sym_u128] = ACTIONS(960), - [anon_sym_i128] = ACTIONS(960), - [anon_sym_isize] = ACTIONS(960), - [anon_sym_usize] = ACTIONS(960), - [anon_sym_f32] = ACTIONS(960), - [anon_sym_f64] = ACTIONS(960), - [anon_sym_bool] = ACTIONS(960), - [anon_sym_str] = ACTIONS(960), - [anon_sym_char] = ACTIONS(960), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym__] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(958), - [anon_sym_COLON_COLON] = ACTIONS(958), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_PERCENT] = ACTIONS(960), - [anon_sym_CARET] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_as] = ACTIONS(960), - [anon_sym_const] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_static] = ACTIONS(960), - [anon_sym_union] = ACTIONS(960), - [anon_sym_ref] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT] = ACTIONS(958), - [sym_mutable_specifier] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(958), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(958), - [anon_sym_BANG_EQ] = ACTIONS(958), - [anon_sym_LT_EQ] = ACTIONS(958), - [anon_sym_GT_EQ] = ACTIONS(958), - [anon_sym_LT_LT] = ACTIONS(960), - [anon_sym_GT_GT] = ACTIONS(960), - [anon_sym_PLUS_EQ] = ACTIONS(958), - [anon_sym_DASH_EQ] = ACTIONS(958), - [anon_sym_STAR_EQ] = ACTIONS(958), - [anon_sym_SLASH_EQ] = ACTIONS(958), - [anon_sym_PERCENT_EQ] = ACTIONS(958), - [anon_sym_AMP_EQ] = ACTIONS(958), - [anon_sym_PIPE_EQ] = ACTIONS(958), - [anon_sym_CARET_EQ] = ACTIONS(958), - [anon_sym_LT_LT_EQ] = ACTIONS(958), - [anon_sym_GT_GT_EQ] = ACTIONS(958), - [anon_sym_move] = ACTIONS(960), - [sym_integer_literal] = ACTIONS(958), - [aux_sym_string_literal_token1] = ACTIONS(958), - [sym_char_literal] = ACTIONS(958), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(960), - [sym_super] = ACTIONS(960), - [sym_crate] = ACTIONS(960), - [sym_metavariable] = ACTIONS(958), - [sym_raw_string_literal] = ACTIONS(958), - [sym_float_literal] = ACTIONS(958), - [sym_block_comment] = ACTIONS(3), + [462] = { + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [sym_identifier] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(892), + [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_SLASH] = ACTIONS(894), + [anon_sym__] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(892), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(892), + [anon_sym_PERCENT] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_ref] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(892), + [sym_mutable_specifier] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(892), + [anon_sym_AMP_AMP] = ACTIONS(892), + [anon_sym_PIPE_PIPE] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(892), + [anon_sym_BANG_EQ] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(892), + [anon_sym_DASH_EQ] = ACTIONS(892), + [anon_sym_STAR_EQ] = ACTIONS(892), + [anon_sym_SLASH_EQ] = ACTIONS(892), + [anon_sym_PERCENT_EQ] = ACTIONS(892), + [anon_sym_AMP_EQ] = ACTIONS(892), + [anon_sym_PIPE_EQ] = ACTIONS(892), + [anon_sym_CARET_EQ] = ACTIONS(892), + [anon_sym_LT_LT_EQ] = ACTIONS(892), + [anon_sym_GT_GT_EQ] = ACTIONS(892), + [anon_sym_move] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), }, - [476] = { - [sym_identifier] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_QMARK] = ACTIONS(938), - [anon_sym_u8] = ACTIONS(940), - [anon_sym_i8] = ACTIONS(940), - [anon_sym_u16] = ACTIONS(940), - [anon_sym_i16] = ACTIONS(940), - [anon_sym_u32] = ACTIONS(940), - [anon_sym_i32] = ACTIONS(940), - [anon_sym_u64] = ACTIONS(940), - [anon_sym_i64] = ACTIONS(940), - [anon_sym_u128] = ACTIONS(940), - [anon_sym_i128] = ACTIONS(940), - [anon_sym_isize] = ACTIONS(940), - [anon_sym_usize] = ACTIONS(940), - [anon_sym_f32] = ACTIONS(940), - [anon_sym_f64] = ACTIONS(940), - [anon_sym_bool] = ACTIONS(940), - [anon_sym_str] = ACTIONS(940), - [anon_sym_char] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym__] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(940), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_COLON_COLON] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(940), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_as] = ACTIONS(940), - [anon_sym_const] = ACTIONS(940), - [anon_sym_default] = ACTIONS(940), - [anon_sym_static] = ACTIONS(940), - [anon_sym_union] = ACTIONS(940), - [anon_sym_ref] = ACTIONS(940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(938), - [sym_mutable_specifier] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(938), - [anon_sym_PIPE_PIPE] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_LT_LT] = ACTIONS(940), - [anon_sym_GT_GT] = ACTIONS(940), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_PERCENT_EQ] = ACTIONS(938), - [anon_sym_AMP_EQ] = ACTIONS(938), - [anon_sym_PIPE_EQ] = ACTIONS(938), - [anon_sym_CARET_EQ] = ACTIONS(938), - [anon_sym_LT_LT_EQ] = ACTIONS(938), - [anon_sym_GT_GT_EQ] = ACTIONS(938), - [anon_sym_move] = ACTIONS(940), - [sym_integer_literal] = ACTIONS(938), - [aux_sym_string_literal_token1] = ACTIONS(938), - [sym_char_literal] = ACTIONS(938), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = ACTIONS(940), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(940), - [sym_super] = ACTIONS(940), - [sym_crate] = ACTIONS(940), - [sym_metavariable] = ACTIONS(938), - [sym_raw_string_literal] = ACTIONS(938), - [sym_float_literal] = ACTIONS(938), - [sym_block_comment] = ACTIONS(3), + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym_identifier] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(890), + [anon_sym_i8] = ACTIONS(890), + [anon_sym_u16] = ACTIONS(890), + [anon_sym_i16] = ACTIONS(890), + [anon_sym_u32] = ACTIONS(890), + [anon_sym_i32] = ACTIONS(890), + [anon_sym_u64] = ACTIONS(890), + [anon_sym_i64] = ACTIONS(890), + [anon_sym_u128] = ACTIONS(890), + [anon_sym_i128] = ACTIONS(890), + [anon_sym_isize] = ACTIONS(890), + [anon_sym_usize] = ACTIONS(890), + [anon_sym_f32] = ACTIONS(890), + [anon_sym_f64] = ACTIONS(890), + [anon_sym_bool] = ACTIONS(890), + [anon_sym_str] = ACTIONS(890), + [anon_sym_char] = ACTIONS(890), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym__] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(888), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_AMP] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(888), + [anon_sym_PERCENT] = ACTIONS(890), + [anon_sym_CARET] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_as] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_static] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_ref] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(888), + [sym_mutable_specifier] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(890), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_move] = ACTIONS(890), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(888), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(890), + [anon_sym_false] = ACTIONS(890), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(888), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), }, - [477] = { - [sym_identifier] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_STAR] = ACTIONS(936), - [anon_sym_QMARK] = ACTIONS(934), - [anon_sym_u8] = ACTIONS(936), - [anon_sym_i8] = ACTIONS(936), - [anon_sym_u16] = ACTIONS(936), - [anon_sym_i16] = ACTIONS(936), - [anon_sym_u32] = ACTIONS(936), - [anon_sym_i32] = ACTIONS(936), - [anon_sym_u64] = ACTIONS(936), - [anon_sym_i64] = ACTIONS(936), - [anon_sym_u128] = ACTIONS(936), - [anon_sym_i128] = ACTIONS(936), - [anon_sym_isize] = ACTIONS(936), - [anon_sym_usize] = ACTIONS(936), - [anon_sym_f32] = ACTIONS(936), - [anon_sym_f64] = ACTIONS(936), - [anon_sym_bool] = ACTIONS(936), - [anon_sym_str] = ACTIONS(936), - [anon_sym_char] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym__] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_EQ] = ACTIONS(936), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_COLON_COLON] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(936), - [anon_sym_AMP] = ACTIONS(936), - [anon_sym_POUND] = ACTIONS(934), - [anon_sym_PERCENT] = ACTIONS(936), - [anon_sym_CARET] = ACTIONS(936), - [anon_sym_LT] = ACTIONS(936), - [anon_sym_GT] = ACTIONS(936), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_as] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_static] = ACTIONS(936), - [anon_sym_union] = ACTIONS(936), - [anon_sym_ref] = ACTIONS(936), - [anon_sym_DOT_DOT_DOT] = ACTIONS(934), - [sym_mutable_specifier] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT_EQ] = ACTIONS(934), - [anon_sym_AMP_AMP] = ACTIONS(934), - [anon_sym_PIPE_PIPE] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(934), - [anon_sym_BANG_EQ] = ACTIONS(934), - [anon_sym_LT_EQ] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(934), - [anon_sym_LT_LT] = ACTIONS(936), - [anon_sym_GT_GT] = ACTIONS(936), - [anon_sym_PLUS_EQ] = ACTIONS(934), - [anon_sym_DASH_EQ] = ACTIONS(934), - [anon_sym_STAR_EQ] = ACTIONS(934), - [anon_sym_SLASH_EQ] = ACTIONS(934), - [anon_sym_PERCENT_EQ] = ACTIONS(934), - [anon_sym_AMP_EQ] = ACTIONS(934), - [anon_sym_PIPE_EQ] = ACTIONS(934), - [anon_sym_CARET_EQ] = ACTIONS(934), - [anon_sym_LT_LT_EQ] = ACTIONS(934), - [anon_sym_GT_GT_EQ] = ACTIONS(934), - [anon_sym_move] = ACTIONS(936), - [sym_integer_literal] = ACTIONS(934), - [aux_sym_string_literal_token1] = ACTIONS(934), - [sym_char_literal] = ACTIONS(934), - [anon_sym_true] = ACTIONS(936), - [anon_sym_false] = ACTIONS(936), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(936), - [sym_super] = ACTIONS(936), - [sym_crate] = ACTIONS(936), - [sym_metavariable] = ACTIONS(934), - [sym_raw_string_literal] = ACTIONS(934), - [sym_float_literal] = ACTIONS(934), - [sym_block_comment] = ACTIONS(3), + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_identifier] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_QMARK] = ACTIONS(872), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym__] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(874), + [anon_sym_COMMA] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(872), + [anon_sym_DOT] = ACTIONS(874), + [anon_sym_AMP] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_PERCENT] = ACTIONS(874), + [anon_sym_CARET] = ACTIONS(874), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_as] = ACTIONS(874), + [anon_sym_const] = ACTIONS(874), + [anon_sym_default] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_union] = ACTIONS(874), + [anon_sym_ref] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(872), + [sym_mutable_specifier] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(872), + [anon_sym_AMP_AMP] = ACTIONS(872), + [anon_sym_PIPE_PIPE] = ACTIONS(872), + [anon_sym_EQ_EQ] = ACTIONS(872), + [anon_sym_BANG_EQ] = ACTIONS(872), + [anon_sym_LT_EQ] = ACTIONS(872), + [anon_sym_GT_EQ] = ACTIONS(872), + [anon_sym_LT_LT] = ACTIONS(874), + [anon_sym_GT_GT] = ACTIONS(874), + [anon_sym_PLUS_EQ] = ACTIONS(872), + [anon_sym_DASH_EQ] = ACTIONS(872), + [anon_sym_STAR_EQ] = ACTIONS(872), + [anon_sym_SLASH_EQ] = ACTIONS(872), + [anon_sym_PERCENT_EQ] = ACTIONS(872), + [anon_sym_AMP_EQ] = ACTIONS(872), + [anon_sym_PIPE_EQ] = ACTIONS(872), + [anon_sym_CARET_EQ] = ACTIONS(872), + [anon_sym_LT_LT_EQ] = ACTIONS(872), + [anon_sym_GT_GT_EQ] = ACTIONS(872), + [anon_sym_move] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(874), + [sym_super] = ACTIONS(874), + [sym_crate] = ACTIONS(874), + [sym_metavariable] = ACTIONS(872), + [sym_raw_string_literal] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), }, - [478] = { + [465] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3303), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(492), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), + }, + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_identifier] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(976), + [anon_sym_i8] = ACTIONS(976), + [anon_sym_u16] = ACTIONS(976), + [anon_sym_i16] = ACTIONS(976), + [anon_sym_u32] = ACTIONS(976), + [anon_sym_i32] = ACTIONS(976), + [anon_sym_u64] = ACTIONS(976), + [anon_sym_i64] = ACTIONS(976), + [anon_sym_u128] = ACTIONS(976), + [anon_sym_i128] = ACTIONS(976), + [anon_sym_isize] = ACTIONS(976), + [anon_sym_usize] = ACTIONS(976), + [anon_sym_f32] = ACTIONS(976), + [anon_sym_f64] = ACTIONS(976), + [anon_sym_bool] = ACTIONS(976), + [anon_sym_str] = ACTIONS(976), + [anon_sym_char] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym__] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(974), + [anon_sym_DOT] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_PERCENT] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(976), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_static] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_ref] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(974), + [sym_mutable_specifier] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_AMP_AMP] = ACTIONS(974), + [anon_sym_PIPE_PIPE] = ACTIONS(974), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(976), + [anon_sym_GT_GT] = ACTIONS(976), + [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_AMP_EQ] = ACTIONS(974), + [anon_sym_PIPE_EQ] = ACTIONS(974), + [anon_sym_CARET_EQ] = ACTIONS(974), + [anon_sym_LT_LT_EQ] = ACTIONS(974), + [anon_sym_GT_GT_EQ] = ACTIONS(974), + [anon_sym_move] = ACTIONS(976), + [sym_integer_literal] = ACTIONS(974), + [aux_sym_string_literal_token1] = ACTIONS(974), + [sym_char_literal] = ACTIONS(974), + [anon_sym_true] = ACTIONS(976), + [anon_sym_false] = ACTIONS(976), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(976), + [sym_super] = ACTIONS(976), + [sym_crate] = ACTIONS(976), + [sym_metavariable] = ACTIONS(974), + [sym_raw_string_literal] = ACTIONS(974), + [sym_float_literal] = ACTIONS(974), + }, + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(904), + [anon_sym_QMARK] = ACTIONS(902), + [anon_sym_u8] = ACTIONS(904), + [anon_sym_i8] = ACTIONS(904), + [anon_sym_u16] = ACTIONS(904), + [anon_sym_i16] = ACTIONS(904), + [anon_sym_u32] = ACTIONS(904), + [anon_sym_i32] = ACTIONS(904), + [anon_sym_u64] = ACTIONS(904), + [anon_sym_i64] = ACTIONS(904), + [anon_sym_u128] = ACTIONS(904), + [anon_sym_i128] = ACTIONS(904), + [anon_sym_isize] = ACTIONS(904), + [anon_sym_usize] = ACTIONS(904), + [anon_sym_f32] = ACTIONS(904), + [anon_sym_f64] = ACTIONS(904), + [anon_sym_bool] = ACTIONS(904), + [anon_sym_str] = ACTIONS(904), + [anon_sym_char] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(904), + [anon_sym__] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_EQ] = ACTIONS(904), + [anon_sym_COMMA] = ACTIONS(902), + [anon_sym_COLON_COLON] = ACTIONS(902), + [anon_sym_DOT] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(904), + [anon_sym_POUND] = ACTIONS(902), + [anon_sym_PERCENT] = ACTIONS(904), + [anon_sym_CARET] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(904), + [anon_sym_GT] = ACTIONS(904), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_as] = ACTIONS(904), + [anon_sym_const] = ACTIONS(904), + [anon_sym_default] = ACTIONS(904), + [anon_sym_static] = ACTIONS(904), + [anon_sym_union] = ACTIONS(904), + [anon_sym_ref] = ACTIONS(904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(902), + [sym_mutable_specifier] = ACTIONS(904), + [anon_sym_DOT_DOT] = ACTIONS(904), + [anon_sym_DOT_DOT_EQ] = ACTIONS(902), + [anon_sym_AMP_AMP] = ACTIONS(902), + [anon_sym_PIPE_PIPE] = ACTIONS(902), + [anon_sym_EQ_EQ] = ACTIONS(902), + [anon_sym_BANG_EQ] = ACTIONS(902), + [anon_sym_LT_EQ] = ACTIONS(902), + [anon_sym_GT_EQ] = ACTIONS(902), + [anon_sym_LT_LT] = ACTIONS(904), + [anon_sym_GT_GT] = ACTIONS(904), + [anon_sym_PLUS_EQ] = ACTIONS(902), + [anon_sym_DASH_EQ] = ACTIONS(902), + [anon_sym_STAR_EQ] = ACTIONS(902), + [anon_sym_SLASH_EQ] = ACTIONS(902), + [anon_sym_PERCENT_EQ] = ACTIONS(902), + [anon_sym_AMP_EQ] = ACTIONS(902), + [anon_sym_PIPE_EQ] = ACTIONS(902), + [anon_sym_CARET_EQ] = ACTIONS(902), + [anon_sym_LT_LT_EQ] = ACTIONS(902), + [anon_sym_GT_GT_EQ] = ACTIONS(902), + [anon_sym_move] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(902), + [aux_sym_string_literal_token1] = ACTIONS(902), + [sym_char_literal] = ACTIONS(902), + [anon_sym_true] = ACTIONS(904), + [anon_sym_false] = ACTIONS(904), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(904), + [sym_super] = ACTIONS(904), + [sym_crate] = ACTIONS(904), + [sym_metavariable] = ACTIONS(902), + [sym_raw_string_literal] = ACTIONS(902), + [sym_float_literal] = ACTIONS(902), + }, + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_QMARK] = ACTIONS(950), + [anon_sym_u8] = ACTIONS(952), + [anon_sym_i8] = ACTIONS(952), + [anon_sym_u16] = ACTIONS(952), + [anon_sym_i16] = ACTIONS(952), + [anon_sym_u32] = ACTIONS(952), + [anon_sym_i32] = ACTIONS(952), + [anon_sym_u64] = ACTIONS(952), + [anon_sym_i64] = ACTIONS(952), + [anon_sym_u128] = ACTIONS(952), + [anon_sym_i128] = ACTIONS(952), + [anon_sym_isize] = ACTIONS(952), + [anon_sym_usize] = ACTIONS(952), + [anon_sym_f32] = ACTIONS(952), + [anon_sym_f64] = ACTIONS(952), + [anon_sym_bool] = ACTIONS(952), + [anon_sym_str] = ACTIONS(952), + [anon_sym_char] = ACTIONS(952), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym__] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_COLON_COLON] = ACTIONS(950), + [anon_sym_DOT] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(950), + [anon_sym_PERCENT] = ACTIONS(952), + [anon_sym_CARET] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(952), + [anon_sym_GT] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [anon_sym_default] = ACTIONS(952), + [anon_sym_static] = ACTIONS(952), + [anon_sym_union] = ACTIONS(952), + [anon_sym_ref] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(950), + [sym_mutable_specifier] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_AMP_AMP] = ACTIONS(950), + [anon_sym_PIPE_PIPE] = ACTIONS(950), + [anon_sym_EQ_EQ] = ACTIONS(950), + [anon_sym_BANG_EQ] = ACTIONS(950), + [anon_sym_LT_EQ] = ACTIONS(950), + [anon_sym_GT_EQ] = ACTIONS(950), + [anon_sym_LT_LT] = ACTIONS(952), + [anon_sym_GT_GT] = ACTIONS(952), + [anon_sym_PLUS_EQ] = ACTIONS(950), + [anon_sym_DASH_EQ] = ACTIONS(950), + [anon_sym_STAR_EQ] = ACTIONS(950), + [anon_sym_SLASH_EQ] = ACTIONS(950), + [anon_sym_PERCENT_EQ] = ACTIONS(950), + [anon_sym_AMP_EQ] = ACTIONS(950), + [anon_sym_PIPE_EQ] = ACTIONS(950), + [anon_sym_CARET_EQ] = ACTIONS(950), + [anon_sym_LT_LT_EQ] = ACTIONS(950), + [anon_sym_GT_GT_EQ] = ACTIONS(950), + [anon_sym_move] = ACTIONS(952), + [sym_integer_literal] = ACTIONS(950), + [aux_sym_string_literal_token1] = ACTIONS(950), + [sym_char_literal] = ACTIONS(950), + [anon_sym_true] = ACTIONS(952), + [anon_sym_false] = ACTIONS(952), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(952), + [sym_super] = ACTIONS(952), + [sym_crate] = ACTIONS(952), + [sym_metavariable] = ACTIONS(950), + [sym_raw_string_literal] = ACTIONS(950), + [sym_float_literal] = ACTIONS(950), + }, + [469] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), [sym_identifier] = ACTIONS(908), [anon_sym_LPAREN] = ACTIONS(906), [anon_sym_RBRACE] = ACTIONS(906), @@ -69778,6300 +70347,3490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(906), [anon_sym_true] = ACTIONS(908), [anon_sym_false] = ACTIONS(908), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(908), [sym_super] = ACTIONS(908), [sym_crate] = ACTIONS(908), [sym_metavariable] = ACTIONS(906), [sym_raw_string_literal] = ACTIONS(906), [sym_float_literal] = ACTIONS(906), - [sym_block_comment] = ACTIONS(3), - }, - [479] = { - [sym_identifier] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_QMARK] = ACTIONS(992), - [anon_sym_u8] = ACTIONS(994), - [anon_sym_i8] = ACTIONS(994), - [anon_sym_u16] = ACTIONS(994), - [anon_sym_i16] = ACTIONS(994), - [anon_sym_u32] = ACTIONS(994), - [anon_sym_i32] = ACTIONS(994), - [anon_sym_u64] = ACTIONS(994), - [anon_sym_i64] = ACTIONS(994), - [anon_sym_u128] = ACTIONS(994), - [anon_sym_i128] = ACTIONS(994), - [anon_sym_isize] = ACTIONS(994), - [anon_sym_usize] = ACTIONS(994), - [anon_sym_f32] = ACTIONS(994), - [anon_sym_f64] = ACTIONS(994), - [anon_sym_bool] = ACTIONS(994), - [anon_sym_str] = ACTIONS(994), - [anon_sym_char] = ACTIONS(994), - [anon_sym_SLASH] = ACTIONS(994), - [anon_sym__] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_COLON_COLON] = ACTIONS(992), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_POUND] = ACTIONS(992), - [anon_sym_PERCENT] = ACTIONS(994), - [anon_sym_CARET] = ACTIONS(994), - [anon_sym_LT] = ACTIONS(994), - [anon_sym_GT] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_static] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_ref] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT] = ACTIONS(992), - [sym_mutable_specifier] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_AMP_AMP] = ACTIONS(992), - [anon_sym_PIPE_PIPE] = ACTIONS(992), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_GT_GT] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PERCENT_EQ] = ACTIONS(992), - [anon_sym_AMP_EQ] = ACTIONS(992), - [anon_sym_PIPE_EQ] = ACTIONS(992), - [anon_sym_CARET_EQ] = ACTIONS(992), - [anon_sym_LT_LT_EQ] = ACTIONS(992), - [anon_sym_GT_GT_EQ] = ACTIONS(992), - [anon_sym_move] = ACTIONS(994), - [sym_integer_literal] = ACTIONS(992), - [aux_sym_string_literal_token1] = ACTIONS(992), - [sym_char_literal] = ACTIONS(992), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(994), - [sym_super] = ACTIONS(994), - [sym_crate] = ACTIONS(994), - [sym_metavariable] = ACTIONS(992), - [sym_raw_string_literal] = ACTIONS(992), - [sym_float_literal] = ACTIONS(992), - [sym_block_comment] = ACTIONS(3), - }, - [480] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2879), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(3027), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(3027), - [sym__literal] = STATE(3027), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT] = ACTIONS(1718), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [481] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(3344), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), - }, - [482] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2879), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(3027), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(3027), - [sym__literal] = STATE(3027), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [483] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(3253), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2879), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(3027), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(3027), - [sym__literal] = STATE(3027), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2879), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(3027), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(3027), - [sym__literal] = STATE(3027), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(3290), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), - }, - [487] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2879), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(3027), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(3027), - [sym__literal] = STATE(3027), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), }, - [488] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2879), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(3027), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(3027), - [sym__literal] = STATE(3027), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [489] = { - [sym_attribute_item] = STATE(729), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(3292), - [sym_match_pattern] = STATE(3242), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(729), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), - }, - [490] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2463), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2464), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(2747), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(2747), - [sym__literal] = STATE(2747), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [491] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2649), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(2674), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(2674), - [sym__literal] = STATE(2674), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2557), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(2888), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(2888), - [sym__literal] = STATE(2888), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), - }, - [493] = { - [sym_attribute_item] = STATE(636), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_arm] = STATE(493), - [sym_match_pattern] = STATE(3226), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(636), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_u8] = ACTIONS(1751), - [anon_sym_i8] = ACTIONS(1751), - [anon_sym_u16] = ACTIONS(1751), - [anon_sym_i16] = ACTIONS(1751), - [anon_sym_u32] = ACTIONS(1751), - [anon_sym_i32] = ACTIONS(1751), - [anon_sym_u64] = ACTIONS(1751), - [anon_sym_i64] = ACTIONS(1751), - [anon_sym_u128] = ACTIONS(1751), - [anon_sym_i128] = ACTIONS(1751), - [anon_sym_isize] = ACTIONS(1751), - [anon_sym_usize] = ACTIONS(1751), - [anon_sym_f32] = ACTIONS(1751), - [anon_sym_f64] = ACTIONS(1751), - [anon_sym_bool] = ACTIONS(1751), - [anon_sym_str] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym__] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_COLON_COLON] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_ref] = ACTIONS(1784), - [sym_mutable_specifier] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1790), - [anon_sym_move] = ACTIONS(1793), - [sym_integer_literal] = ACTIONS(1796), - [aux_sym_string_literal_token1] = ACTIONS(1799), - [sym_char_literal] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1805), - [sym_super] = ACTIONS(1805), - [sym_crate] = ACTIONS(1805), - [sym_metavariable] = ACTIONS(1808), - [sym_raw_string_literal] = ACTIONS(1796), - [sym_float_literal] = ACTIONS(1796), - [sym_block_comment] = ACTIONS(3), + [470] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_identifier] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_QMARK] = ACTIONS(958), + [anon_sym_u8] = ACTIONS(960), + [anon_sym_i8] = ACTIONS(960), + [anon_sym_u16] = ACTIONS(960), + [anon_sym_i16] = ACTIONS(960), + [anon_sym_u32] = ACTIONS(960), + [anon_sym_i32] = ACTIONS(960), + [anon_sym_u64] = ACTIONS(960), + [anon_sym_i64] = ACTIONS(960), + [anon_sym_u128] = ACTIONS(960), + [anon_sym_i128] = ACTIONS(960), + [anon_sym_isize] = ACTIONS(960), + [anon_sym_usize] = ACTIONS(960), + [anon_sym_f32] = ACTIONS(960), + [anon_sym_f64] = ACTIONS(960), + [anon_sym_bool] = ACTIONS(960), + [anon_sym_str] = ACTIONS(960), + [anon_sym_char] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym__] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_COLON_COLON] = ACTIONS(958), + [anon_sym_DOT] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(958), + [anon_sym_PERCENT] = ACTIONS(960), + [anon_sym_CARET] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_as] = ACTIONS(960), + [anon_sym_const] = ACTIONS(960), + [anon_sym_default] = ACTIONS(960), + [anon_sym_static] = ACTIONS(960), + [anon_sym_union] = ACTIONS(960), + [anon_sym_ref] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(958), + [sym_mutable_specifier] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(958), + [anon_sym_PIPE_PIPE] = ACTIONS(958), + [anon_sym_EQ_EQ] = ACTIONS(958), + [anon_sym_BANG_EQ] = ACTIONS(958), + [anon_sym_LT_EQ] = ACTIONS(958), + [anon_sym_GT_EQ] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(960), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_PLUS_EQ] = ACTIONS(958), + [anon_sym_DASH_EQ] = ACTIONS(958), + [anon_sym_STAR_EQ] = ACTIONS(958), + [anon_sym_SLASH_EQ] = ACTIONS(958), + [anon_sym_PERCENT_EQ] = ACTIONS(958), + [anon_sym_AMP_EQ] = ACTIONS(958), + [anon_sym_PIPE_EQ] = ACTIONS(958), + [anon_sym_CARET_EQ] = ACTIONS(958), + [anon_sym_LT_LT_EQ] = ACTIONS(958), + [anon_sym_GT_GT_EQ] = ACTIONS(958), + [anon_sym_move] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(958), + [aux_sym_string_literal_token1] = ACTIONS(958), + [sym_char_literal] = ACTIONS(958), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(960), + [sym_super] = ACTIONS(960), + [sym_crate] = ACTIONS(960), + [sym_metavariable] = ACTIONS(958), + [sym_raw_string_literal] = ACTIONS(958), + [sym_float_literal] = ACTIONS(958), }, - [494] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2879), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_type_binding] = STATE(3027), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [sym_label] = STATE(3440), - [sym_block] = STATE(3027), - [sym__literal] = STATE(3027), - [sym_string_literal] = STATE(3038), - [sym_boolean_literal] = STATE(3038), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), - [sym_block_comment] = ACTIONS(3), + [471] = { + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [sym_identifier] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_QMARK] = ACTIONS(922), + [anon_sym_u8] = ACTIONS(924), + [anon_sym_i8] = ACTIONS(924), + [anon_sym_u16] = ACTIONS(924), + [anon_sym_i16] = ACTIONS(924), + [anon_sym_u32] = ACTIONS(924), + [anon_sym_i32] = ACTIONS(924), + [anon_sym_u64] = ACTIONS(924), + [anon_sym_i64] = ACTIONS(924), + [anon_sym_u128] = ACTIONS(924), + [anon_sym_i128] = ACTIONS(924), + [anon_sym_isize] = ACTIONS(924), + [anon_sym_usize] = ACTIONS(924), + [anon_sym_f32] = ACTIONS(924), + [anon_sym_f64] = ACTIONS(924), + [anon_sym_bool] = ACTIONS(924), + [anon_sym_str] = ACTIONS(924), + [anon_sym_char] = ACTIONS(924), + [anon_sym_SLASH] = ACTIONS(924), + [anon_sym__] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_EQ] = ACTIONS(924), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_COLON_COLON] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_POUND] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(924), + [anon_sym_CARET] = ACTIONS(924), + [anon_sym_LT] = ACTIONS(924), + [anon_sym_GT] = ACTIONS(924), + [anon_sym_PIPE] = ACTIONS(924), + [anon_sym_as] = ACTIONS(924), + [anon_sym_const] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_static] = ACTIONS(924), + [anon_sym_union] = ACTIONS(924), + [anon_sym_ref] = ACTIONS(924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(922), + [sym_mutable_specifier] = ACTIONS(924), + [anon_sym_DOT_DOT] = ACTIONS(924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(922), + [anon_sym_AMP_AMP] = ACTIONS(922), + [anon_sym_PIPE_PIPE] = ACTIONS(922), + [anon_sym_EQ_EQ] = ACTIONS(922), + [anon_sym_BANG_EQ] = ACTIONS(922), + [anon_sym_LT_EQ] = ACTIONS(922), + [anon_sym_GT_EQ] = ACTIONS(922), + [anon_sym_LT_LT] = ACTIONS(924), + [anon_sym_GT_GT] = ACTIONS(924), + [anon_sym_PLUS_EQ] = ACTIONS(922), + [anon_sym_DASH_EQ] = ACTIONS(922), + [anon_sym_STAR_EQ] = ACTIONS(922), + [anon_sym_SLASH_EQ] = ACTIONS(922), + [anon_sym_PERCENT_EQ] = ACTIONS(922), + [anon_sym_AMP_EQ] = ACTIONS(922), + [anon_sym_PIPE_EQ] = ACTIONS(922), + [anon_sym_CARET_EQ] = ACTIONS(922), + [anon_sym_LT_LT_EQ] = ACTIONS(922), + [anon_sym_GT_GT_EQ] = ACTIONS(922), + [anon_sym_move] = ACTIONS(924), + [sym_integer_literal] = ACTIONS(922), + [aux_sym_string_literal_token1] = ACTIONS(922), + [sym_char_literal] = ACTIONS(922), + [anon_sym_true] = ACTIONS(924), + [anon_sym_false] = ACTIONS(924), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(924), + [sym_super] = ACTIONS(924), + [sym_crate] = ACTIONS(924), + [sym_metavariable] = ACTIONS(922), + [sym_raw_string_literal] = ACTIONS(922), + [sym_float_literal] = ACTIONS(922), }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_macro_rules_BANG] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u128] = ACTIONS(1813), - [anon_sym_i128] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_str] = ACTIONS(1813), - [anon_sym_char] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_POUND] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_impl] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_mod] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_trait] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_move] = ACTIONS(1813), - [anon_sym_try] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1811), - [aux_sym_string_literal_token1] = ACTIONS(1811), - [sym_char_literal] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_crate] = ACTIONS(1813), - [sym_metavariable] = ACTIONS(1811), - [sym_raw_string_literal] = ACTIONS(1811), - [sym_float_literal] = ACTIONS(1811), - [sym_block_comment] = ACTIONS(3), + [472] = { + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_identifier] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_u8] = ACTIONS(988), + [anon_sym_i8] = ACTIONS(988), + [anon_sym_u16] = ACTIONS(988), + [anon_sym_i16] = ACTIONS(988), + [anon_sym_u32] = ACTIONS(988), + [anon_sym_i32] = ACTIONS(988), + [anon_sym_u64] = ACTIONS(988), + [anon_sym_i64] = ACTIONS(988), + [anon_sym_u128] = ACTIONS(988), + [anon_sym_i128] = ACTIONS(988), + [anon_sym_isize] = ACTIONS(988), + [anon_sym_usize] = ACTIONS(988), + [anon_sym_f32] = ACTIONS(988), + [anon_sym_f64] = ACTIONS(988), + [anon_sym_bool] = ACTIONS(988), + [anon_sym_str] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym__] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(986), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_static] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_ref] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [sym_mutable_specifier] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_move] = ACTIONS(988), + [sym_integer_literal] = ACTIONS(986), + [aux_sym_string_literal_token1] = ACTIONS(986), + [sym_char_literal] = ACTIONS(986), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(988), + [sym_super] = ACTIONS(988), + [sym_crate] = ACTIONS(988), + [sym_metavariable] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_macro_rules_BANG] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u128] = ACTIONS(1817), - [anon_sym_i128] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_str] = ACTIONS(1817), - [anon_sym_char] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_POUND] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_impl] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_loop] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_mod] = ACTIONS(1817), - [anon_sym_pub] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_trait] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_use] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_extern] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_move] = ACTIONS(1817), - [anon_sym_try] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1815), - [aux_sym_string_literal_token1] = ACTIONS(1815), - [sym_char_literal] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_crate] = ACTIONS(1817), - [sym_metavariable] = ACTIONS(1815), - [sym_raw_string_literal] = ACTIONS(1815), - [sym_float_literal] = ACTIONS(1815), - [sym_block_comment] = ACTIONS(3), + [473] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_identifier] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(962), + [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_SLASH] = ACTIONS(964), + [anon_sym__] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(962), + [anon_sym_COLON_COLON] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(964), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(962), + [anon_sym_PERCENT] = ACTIONS(964), + [anon_sym_CARET] = ACTIONS(964), + [anon_sym_LT] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(964), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [anon_sym_default] = ACTIONS(964), + [anon_sym_static] = ACTIONS(964), + [anon_sym_union] = ACTIONS(964), + [anon_sym_ref] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(962), + [sym_mutable_specifier] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_EQ_EQ] = ACTIONS(962), + [anon_sym_BANG_EQ] = ACTIONS(962), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(964), + [anon_sym_GT_GT] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(962), + [anon_sym_DASH_EQ] = ACTIONS(962), + [anon_sym_STAR_EQ] = ACTIONS(962), + [anon_sym_SLASH_EQ] = ACTIONS(962), + [anon_sym_PERCENT_EQ] = ACTIONS(962), + [anon_sym_AMP_EQ] = ACTIONS(962), + [anon_sym_PIPE_EQ] = ACTIONS(962), + [anon_sym_CARET_EQ] = ACTIONS(962), + [anon_sym_LT_LT_EQ] = ACTIONS(962), + [anon_sym_GT_GT_EQ] = ACTIONS(962), + [anon_sym_move] = ACTIONS(964), + [sym_integer_literal] = ACTIONS(962), + [aux_sym_string_literal_token1] = ACTIONS(962), + [sym_char_literal] = ACTIONS(962), + [anon_sym_true] = ACTIONS(964), + [anon_sym_false] = ACTIONS(964), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(964), + [sym_super] = ACTIONS(964), + [sym_crate] = ACTIONS(964), + [sym_metavariable] = ACTIONS(962), + [sym_raw_string_literal] = ACTIONS(962), + [sym_float_literal] = ACTIONS(962), }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [sym_identifier] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_macro_rules_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u128] = ACTIONS(1821), - [anon_sym_i128] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_str] = ACTIONS(1821), - [anon_sym_char] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_POUND] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_fn] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_impl] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_mod] = ACTIONS(1821), - [anon_sym_pub] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_trait] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_yield] = ACTIONS(1821), - [anon_sym_move] = ACTIONS(1821), - [anon_sym_try] = ACTIONS(1821), - [sym_integer_literal] = ACTIONS(1819), - [aux_sym_string_literal_token1] = ACTIONS(1819), - [sym_char_literal] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1819), - [sym_raw_string_literal] = ACTIONS(1819), - [sym_float_literal] = ACTIONS(1819), - [sym_block_comment] = ACTIONS(3), + [474] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym_identifier] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(966), + [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_SLASH] = ACTIONS(968), + [anon_sym__] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_static] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_ref] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(966), + [sym_mutable_specifier] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [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_AMP_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_move] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(966), + [aux_sym_string_literal_token1] = ACTIONS(966), + [sym_char_literal] = ACTIONS(966), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(968), + [sym_metavariable] = ACTIONS(966), + [sym_raw_string_literal] = ACTIONS(966), + [sym_float_literal] = ACTIONS(966), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_macro_rules_BANG] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u128] = ACTIONS(1825), - [anon_sym_i128] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_str] = ACTIONS(1825), - [anon_sym_char] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_POUND] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [anon_sym_fn] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_impl] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_loop] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_mod] = ACTIONS(1825), - [anon_sym_pub] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_trait] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_union] = ACTIONS(1825), - [anon_sym_unsafe] = ACTIONS(1825), - [anon_sym_use] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_extern] = ACTIONS(1825), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_move] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [sym_integer_literal] = ACTIONS(1823), - [aux_sym_string_literal_token1] = ACTIONS(1823), - [sym_char_literal] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1825), - [anon_sym_false] = ACTIONS(1825), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_crate] = ACTIONS(1825), - [sym_metavariable] = ACTIONS(1823), - [sym_raw_string_literal] = ACTIONS(1823), - [sym_float_literal] = ACTIONS(1823), - [sym_block_comment] = ACTIONS(3), + [475] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym_identifier] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(1582), + [anon_sym_i8] = ACTIONS(1582), + [anon_sym_u16] = ACTIONS(1582), + [anon_sym_i16] = ACTIONS(1582), + [anon_sym_u32] = ACTIONS(1582), + [anon_sym_i32] = ACTIONS(1582), + [anon_sym_u64] = ACTIONS(1582), + [anon_sym_i64] = ACTIONS(1582), + [anon_sym_u128] = ACTIONS(1582), + [anon_sym_i128] = ACTIONS(1582), + [anon_sym_isize] = ACTIONS(1582), + [anon_sym_usize] = ACTIONS(1582), + [anon_sym_f32] = ACTIONS(1582), + [anon_sym_f64] = ACTIONS(1582), + [anon_sym_bool] = ACTIONS(1582), + [anon_sym_str] = ACTIONS(1582), + [anon_sym_char] = ACTIONS(1582), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym__] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1582), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(1582), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_as] = ACTIONS(994), + [anon_sym_const] = ACTIONS(1582), + [anon_sym_default] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_union] = ACTIONS(1582), + [anon_sym_ref] = ACTIONS(1582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(996), + [sym_mutable_specifier] = ACTIONS(1582), + [anon_sym_DOT_DOT] = ACTIONS(1582), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_AMP_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(996), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(996), + [anon_sym_GT_GT_EQ] = ACTIONS(996), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), }, - [499] = { - [sym_empty_statement] = STATE(709), - [sym_macro_definition] = STATE(709), - [sym_attribute_item] = STATE(709), - [sym_inner_attribute_item] = STATE(709), - [sym_mod_item] = STATE(709), - [sym_foreign_mod_item] = STATE(709), - [sym_struct_item] = STATE(709), - [sym_union_item] = STATE(709), - [sym_enum_item] = STATE(709), - [sym_extern_crate_declaration] = STATE(709), - [sym_const_item] = STATE(709), - [sym_static_item] = STATE(709), - [sym_type_item] = STATE(709), - [sym_function_item] = STATE(709), - [sym_function_signature_item] = STATE(709), - [sym_function_modifiers] = STATE(3451), - [sym_impl_item] = STATE(709), - [sym_trait_item] = STATE(709), - [sym_associated_type] = STATE(709), - [sym_let_declaration] = STATE(709), - [sym_use_declaration] = STATE(709), - [sym_extern_modifier] = STATE(2079), - [sym_visibility_modifier] = STATE(1907), - [sym_bracketed_type] = STATE(3198), - [sym_generic_type_with_turbofish] = STATE(3220), - [sym_macro_invocation] = STATE(709), - [sym_scoped_identifier] = STATE(3036), - [aux_sym_declaration_list_repeat1] = STATE(709), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_u8] = ACTIONS(1835), - [anon_sym_i8] = ACTIONS(1835), - [anon_sym_u16] = ACTIONS(1835), - [anon_sym_i16] = ACTIONS(1835), - [anon_sym_u32] = ACTIONS(1835), - [anon_sym_i32] = ACTIONS(1835), - [anon_sym_u64] = ACTIONS(1835), - [anon_sym_i64] = ACTIONS(1835), - [anon_sym_u128] = ACTIONS(1835), - [anon_sym_i128] = ACTIONS(1835), - [anon_sym_isize] = ACTIONS(1835), - [anon_sym_usize] = ACTIONS(1835), - [anon_sym_f32] = ACTIONS(1835), - [anon_sym_f64] = ACTIONS(1835), - [anon_sym_bool] = ACTIONS(1835), - [anon_sym_str] = ACTIONS(1835), - [anon_sym_char] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1847), - [anon_sym_impl] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_mod] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_trait] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_unsafe] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1869), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_crate] = ACTIONS(1873), - [sym_metavariable] = ACTIONS(1875), - [sym_block_comment] = ACTIONS(3), + [476] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3253), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_macro_rules_BANG] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_u8] = ACTIONS(1879), - [anon_sym_i8] = ACTIONS(1879), - [anon_sym_u16] = ACTIONS(1879), - [anon_sym_i16] = ACTIONS(1879), - [anon_sym_u32] = ACTIONS(1879), - [anon_sym_i32] = ACTIONS(1879), - [anon_sym_u64] = ACTIONS(1879), - [anon_sym_i64] = ACTIONS(1879), - [anon_sym_u128] = ACTIONS(1879), - [anon_sym_i128] = ACTIONS(1879), - [anon_sym_isize] = ACTIONS(1879), - [anon_sym_usize] = ACTIONS(1879), - [anon_sym_f32] = ACTIONS(1879), - [anon_sym_f64] = ACTIONS(1879), - [anon_sym_bool] = ACTIONS(1879), - [anon_sym_str] = ACTIONS(1879), - [anon_sym_char] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_fn] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_impl] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_mod] = ACTIONS(1879), - [anon_sym_pub] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_trait] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_unsafe] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_move] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [sym_integer_literal] = ACTIONS(1877), - [aux_sym_string_literal_token1] = ACTIONS(1877), - [sym_char_literal] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1879), - [sym_super] = ACTIONS(1879), - [sym_crate] = ACTIONS(1879), - [sym_metavariable] = ACTIONS(1877), - [sym_raw_string_literal] = ACTIONS(1877), - [sym_float_literal] = ACTIONS(1877), - [sym_block_comment] = ACTIONS(3), + [477] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3360), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(495), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_identifier] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_macro_rules_BANG] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_u8] = ACTIONS(1883), - [anon_sym_i8] = ACTIONS(1883), - [anon_sym_u16] = ACTIONS(1883), - [anon_sym_i16] = ACTIONS(1883), - [anon_sym_u32] = ACTIONS(1883), - [anon_sym_i32] = ACTIONS(1883), - [anon_sym_u64] = ACTIONS(1883), - [anon_sym_i64] = ACTIONS(1883), - [anon_sym_u128] = ACTIONS(1883), - [anon_sym_i128] = ACTIONS(1883), - [anon_sym_isize] = ACTIONS(1883), - [anon_sym_usize] = ACTIONS(1883), - [anon_sym_f32] = ACTIONS(1883), - [anon_sym_f64] = ACTIONS(1883), - [anon_sym_bool] = ACTIONS(1883), - [anon_sym_str] = ACTIONS(1883), - [anon_sym_char] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1883), - [anon_sym_async] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_fn] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_impl] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_mod] = ACTIONS(1883), - [anon_sym_pub] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_trait] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1883), - [anon_sym_move] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [sym_integer_literal] = ACTIONS(1881), - [aux_sym_string_literal_token1] = ACTIONS(1881), - [sym_char_literal] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1883), - [anon_sym_false] = ACTIONS(1883), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1883), - [sym_super] = ACTIONS(1883), - [sym_crate] = ACTIONS(1883), - [sym_metavariable] = ACTIONS(1881), - [sym_raw_string_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), - [sym_block_comment] = ACTIONS(3), + [478] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym_identifier] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_u8] = ACTIONS(980), + [anon_sym_i8] = ACTIONS(980), + [anon_sym_u16] = ACTIONS(980), + [anon_sym_i16] = ACTIONS(980), + [anon_sym_u32] = ACTIONS(980), + [anon_sym_i32] = ACTIONS(980), + [anon_sym_u64] = ACTIONS(980), + [anon_sym_i64] = ACTIONS(980), + [anon_sym_u128] = ACTIONS(980), + [anon_sym_i128] = ACTIONS(980), + [anon_sym_isize] = ACTIONS(980), + [anon_sym_usize] = ACTIONS(980), + [anon_sym_f32] = ACTIONS(980), + [anon_sym_f64] = ACTIONS(980), + [anon_sym_bool] = ACTIONS(980), + [anon_sym_str] = ACTIONS(980), + [anon_sym_char] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym__] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_COLON_COLON] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(978), + [anon_sym_PERCENT] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_ref] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(978), + [sym_mutable_specifier] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_EQ_EQ] = ACTIONS(978), + [anon_sym_BANG_EQ] = ACTIONS(978), + [anon_sym_LT_EQ] = ACTIONS(978), + [anon_sym_GT_EQ] = ACTIONS(978), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(978), + [anon_sym_DASH_EQ] = ACTIONS(978), + [anon_sym_STAR_EQ] = ACTIONS(978), + [anon_sym_SLASH_EQ] = ACTIONS(978), + [anon_sym_PERCENT_EQ] = ACTIONS(978), + [anon_sym_AMP_EQ] = ACTIONS(978), + [anon_sym_PIPE_EQ] = ACTIONS(978), + [anon_sym_CARET_EQ] = ACTIONS(978), + [anon_sym_LT_LT_EQ] = ACTIONS(978), + [anon_sym_GT_GT_EQ] = ACTIONS(978), + [anon_sym_move] = ACTIONS(980), + [sym_integer_literal] = ACTIONS(978), + [aux_sym_string_literal_token1] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(980), + [sym_super] = ACTIONS(980), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(978), + [sym_raw_string_literal] = ACTIONS(978), + [sym_float_literal] = ACTIONS(978), }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_macro_rules_BANG] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_u8] = ACTIONS(1887), - [anon_sym_i8] = ACTIONS(1887), - [anon_sym_u16] = ACTIONS(1887), - [anon_sym_i16] = ACTIONS(1887), - [anon_sym_u32] = ACTIONS(1887), - [anon_sym_i32] = ACTIONS(1887), - [anon_sym_u64] = ACTIONS(1887), - [anon_sym_i64] = ACTIONS(1887), - [anon_sym_u128] = ACTIONS(1887), - [anon_sym_i128] = ACTIONS(1887), - [anon_sym_isize] = ACTIONS(1887), - [anon_sym_usize] = ACTIONS(1887), - [anon_sym_f32] = ACTIONS(1887), - [anon_sym_f64] = ACTIONS(1887), - [anon_sym_bool] = ACTIONS(1887), - [anon_sym_str] = ACTIONS(1887), - [anon_sym_char] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_fn] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_impl] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_mod] = ACTIONS(1887), - [anon_sym_pub] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_unsafe] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [sym_integer_literal] = ACTIONS(1885), - [aux_sym_string_literal_token1] = ACTIONS(1885), - [sym_char_literal] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_crate] = ACTIONS(1887), - [sym_metavariable] = ACTIONS(1885), - [sym_raw_string_literal] = ACTIONS(1885), - [sym_float_literal] = ACTIONS(1885), - [sym_block_comment] = ACTIONS(3), + [479] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_identifier] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1010), + [anon_sym_u8] = ACTIONS(1012), + [anon_sym_i8] = ACTIONS(1012), + [anon_sym_u16] = ACTIONS(1012), + [anon_sym_i16] = ACTIONS(1012), + [anon_sym_u32] = ACTIONS(1012), + [anon_sym_i32] = ACTIONS(1012), + [anon_sym_u64] = ACTIONS(1012), + [anon_sym_i64] = ACTIONS(1012), + [anon_sym_u128] = ACTIONS(1012), + [anon_sym_i128] = ACTIONS(1012), + [anon_sym_isize] = ACTIONS(1012), + [anon_sym_usize] = ACTIONS(1012), + [anon_sym_f32] = ACTIONS(1012), + [anon_sym_f64] = ACTIONS(1012), + [anon_sym_bool] = ACTIONS(1012), + [anon_sym_str] = ACTIONS(1012), + [anon_sym_char] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym__] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(1010), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_POUND] = ACTIONS(1010), + [anon_sym_PERCENT] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_as] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_ref] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1010), + [sym_mutable_specifier] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_AMP_AMP] = ACTIONS(1010), + [anon_sym_PIPE_PIPE] = ACTIONS(1010), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1012), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), + [anon_sym_AMP_EQ] = ACTIONS(1010), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_CARET_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), + [anon_sym_move] = ACTIONS(1012), + [sym_integer_literal] = ACTIONS(1010), + [aux_sym_string_literal_token1] = ACTIONS(1010), + [sym_char_literal] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1012), + [sym_super] = ACTIONS(1012), + [sym_crate] = ACTIONS(1012), + [sym_metavariable] = ACTIONS(1010), + [sym_raw_string_literal] = ACTIONS(1010), + [sym_float_literal] = ACTIONS(1010), }, - [503] = { - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_macro_rules_BANG] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_u8] = ACTIONS(1891), - [anon_sym_i8] = ACTIONS(1891), - [anon_sym_u16] = ACTIONS(1891), - [anon_sym_i16] = ACTIONS(1891), - [anon_sym_u32] = ACTIONS(1891), - [anon_sym_i32] = ACTIONS(1891), - [anon_sym_u64] = ACTIONS(1891), - [anon_sym_i64] = ACTIONS(1891), - [anon_sym_u128] = ACTIONS(1891), - [anon_sym_i128] = ACTIONS(1891), - [anon_sym_isize] = ACTIONS(1891), - [anon_sym_usize] = ACTIONS(1891), - [anon_sym_f32] = ACTIONS(1891), - [anon_sym_f64] = ACTIONS(1891), - [anon_sym_bool] = ACTIONS(1891), - [anon_sym_str] = ACTIONS(1891), - [anon_sym_char] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_fn] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_impl] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_mod] = ACTIONS(1891), - [anon_sym_pub] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_trait] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_unsafe] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_move] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [sym_integer_literal] = ACTIONS(1889), - [aux_sym_string_literal_token1] = ACTIONS(1889), - [sym_char_literal] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1891), - [sym_super] = ACTIONS(1891), - [sym_crate] = ACTIONS(1891), - [sym_metavariable] = ACTIONS(1889), - [sym_raw_string_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_block_comment] = ACTIONS(3), + [480] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym_identifier] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(1000), + [anon_sym_i8] = ACTIONS(1000), + [anon_sym_u16] = ACTIONS(1000), + [anon_sym_i16] = ACTIONS(1000), + [anon_sym_u32] = ACTIONS(1000), + [anon_sym_i32] = ACTIONS(1000), + [anon_sym_u64] = ACTIONS(1000), + [anon_sym_i64] = ACTIONS(1000), + [anon_sym_u128] = ACTIONS(1000), + [anon_sym_i128] = ACTIONS(1000), + [anon_sym_isize] = ACTIONS(1000), + [anon_sym_usize] = ACTIONS(1000), + [anon_sym_f32] = ACTIONS(1000), + [anon_sym_f64] = ACTIONS(1000), + [anon_sym_bool] = ACTIONS(1000), + [anon_sym_str] = ACTIONS(1000), + [anon_sym_char] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym__] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_COLON_COLON] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(998), + [anon_sym_PERCENT] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(1000), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_as] = ACTIONS(1000), + [anon_sym_const] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_union] = ACTIONS(1000), + [anon_sym_ref] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(998), + [sym_mutable_specifier] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1000), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_PERCENT_EQ] = ACTIONS(998), + [anon_sym_AMP_EQ] = ACTIONS(998), + [anon_sym_PIPE_EQ] = ACTIONS(998), + [anon_sym_CARET_EQ] = ACTIONS(998), + [anon_sym_LT_LT_EQ] = ACTIONS(998), + [anon_sym_GT_GT_EQ] = ACTIONS(998), + [anon_sym_move] = ACTIONS(1000), + [sym_integer_literal] = ACTIONS(998), + [aux_sym_string_literal_token1] = ACTIONS(998), + [sym_char_literal] = ACTIONS(998), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1000), + [sym_super] = ACTIONS(1000), + [sym_crate] = ACTIONS(1000), + [sym_metavariable] = ACTIONS(998), + [sym_raw_string_literal] = ACTIONS(998), + [sym_float_literal] = ACTIONS(998), }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_macro_rules_BANG] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_u8] = ACTIONS(1895), - [anon_sym_i8] = ACTIONS(1895), - [anon_sym_u16] = ACTIONS(1895), - [anon_sym_i16] = ACTIONS(1895), - [anon_sym_u32] = ACTIONS(1895), - [anon_sym_i32] = ACTIONS(1895), - [anon_sym_u64] = ACTIONS(1895), - [anon_sym_i64] = ACTIONS(1895), - [anon_sym_u128] = ACTIONS(1895), - [anon_sym_i128] = ACTIONS(1895), - [anon_sym_isize] = ACTIONS(1895), - [anon_sym_usize] = ACTIONS(1895), - [anon_sym_f32] = ACTIONS(1895), - [anon_sym_f64] = ACTIONS(1895), - [anon_sym_bool] = ACTIONS(1895), - [anon_sym_str] = ACTIONS(1895), - [anon_sym_char] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_fn] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_impl] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_mod] = ACTIONS(1895), - [anon_sym_pub] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_trait] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_unsafe] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_move] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [sym_integer_literal] = ACTIONS(1893), - [aux_sym_string_literal_token1] = ACTIONS(1893), - [sym_char_literal] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1895), - [sym_super] = ACTIONS(1895), - [sym_crate] = ACTIONS(1895), - [sym_metavariable] = ACTIONS(1893), - [sym_raw_string_literal] = ACTIONS(1893), - [sym_float_literal] = ACTIONS(1893), - [sym_block_comment] = ACTIONS(3), + [481] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3311), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, - [505] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_macro_rules_BANG] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_u8] = ACTIONS(1899), - [anon_sym_i8] = ACTIONS(1899), - [anon_sym_u16] = ACTIONS(1899), - [anon_sym_i16] = ACTIONS(1899), - [anon_sym_u32] = ACTIONS(1899), - [anon_sym_i32] = ACTIONS(1899), - [anon_sym_u64] = ACTIONS(1899), - [anon_sym_i64] = ACTIONS(1899), - [anon_sym_u128] = ACTIONS(1899), - [anon_sym_i128] = ACTIONS(1899), - [anon_sym_isize] = ACTIONS(1899), - [anon_sym_usize] = ACTIONS(1899), - [anon_sym_f32] = ACTIONS(1899), - [anon_sym_f64] = ACTIONS(1899), - [anon_sym_bool] = ACTIONS(1899), - [anon_sym_str] = ACTIONS(1899), - [anon_sym_char] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_impl] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_mod] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_trait] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_use] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_move] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [sym_integer_literal] = ACTIONS(1897), - [aux_sym_string_literal_token1] = ACTIONS(1897), - [sym_char_literal] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_crate] = ACTIONS(1899), - [sym_metavariable] = ACTIONS(1897), - [sym_raw_string_literal] = ACTIONS(1897), - [sym_float_literal] = ACTIONS(1897), - [sym_block_comment] = ACTIONS(3), + [482] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_identifier] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_u8] = ACTIONS(972), + [anon_sym_i8] = ACTIONS(972), + [anon_sym_u16] = ACTIONS(972), + [anon_sym_i16] = ACTIONS(972), + [anon_sym_u32] = ACTIONS(972), + [anon_sym_i32] = ACTIONS(972), + [anon_sym_u64] = ACTIONS(972), + [anon_sym_i64] = ACTIONS(972), + [anon_sym_u128] = ACTIONS(972), + [anon_sym_i128] = ACTIONS(972), + [anon_sym_isize] = ACTIONS(972), + [anon_sym_usize] = ACTIONS(972), + [anon_sym_f32] = ACTIONS(972), + [anon_sym_f64] = ACTIONS(972), + [anon_sym_bool] = ACTIONS(972), + [anon_sym_str] = ACTIONS(972), + [anon_sym_char] = ACTIONS(972), + [anon_sym_SLASH] = ACTIONS(972), + [anon_sym__] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_COLON_COLON] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(970), + [anon_sym_PERCENT] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_LT] = ACTIONS(972), + [anon_sym_GT] = ACTIONS(972), + [anon_sym_PIPE] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [anon_sym_default] = ACTIONS(972), + [anon_sym_static] = ACTIONS(972), + [anon_sym_union] = ACTIONS(972), + [anon_sym_ref] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(970), + [sym_mutable_specifier] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_LT_LT] = ACTIONS(972), + [anon_sym_GT_GT] = ACTIONS(972), + [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_AMP_EQ] = ACTIONS(970), + [anon_sym_PIPE_EQ] = ACTIONS(970), + [anon_sym_CARET_EQ] = ACTIONS(970), + [anon_sym_LT_LT_EQ] = ACTIONS(970), + [anon_sym_GT_GT_EQ] = ACTIONS(970), + [anon_sym_move] = ACTIONS(972), + [sym_integer_literal] = ACTIONS(970), + [aux_sym_string_literal_token1] = ACTIONS(970), + [sym_char_literal] = ACTIONS(970), + [anon_sym_true] = ACTIONS(972), + [anon_sym_false] = ACTIONS(972), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(972), + [sym_super] = ACTIONS(972), + [sym_crate] = ACTIONS(972), + [sym_metavariable] = ACTIONS(970), + [sym_raw_string_literal] = ACTIONS(970), + [sym_float_literal] = ACTIONS(970), }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_macro_rules_BANG] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_u8] = ACTIONS(1903), - [anon_sym_i8] = ACTIONS(1903), - [anon_sym_u16] = ACTIONS(1903), - [anon_sym_i16] = ACTIONS(1903), - [anon_sym_u32] = ACTIONS(1903), - [anon_sym_i32] = ACTIONS(1903), - [anon_sym_u64] = ACTIONS(1903), - [anon_sym_i64] = ACTIONS(1903), - [anon_sym_u128] = ACTIONS(1903), - [anon_sym_i128] = ACTIONS(1903), - [anon_sym_isize] = ACTIONS(1903), - [anon_sym_usize] = ACTIONS(1903), - [anon_sym_f32] = ACTIONS(1903), - [anon_sym_f64] = ACTIONS(1903), - [anon_sym_bool] = ACTIONS(1903), - [anon_sym_str] = ACTIONS(1903), - [anon_sym_char] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [anon_sym_fn] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_impl] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_loop] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_mod] = ACTIONS(1903), - [anon_sym_pub] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_trait] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_unsafe] = ACTIONS(1903), - [anon_sym_use] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_move] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [sym_integer_literal] = ACTIONS(1901), - [aux_sym_string_literal_token1] = ACTIONS(1901), - [sym_char_literal] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_crate] = ACTIONS(1903), - [sym_metavariable] = ACTIONS(1901), - [sym_raw_string_literal] = ACTIONS(1901), - [sym_float_literal] = ACTIONS(1901), - [sym_block_comment] = ACTIONS(3), + [483] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_identifier] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_STAR] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_u8] = ACTIONS(1592), + [anon_sym_i8] = ACTIONS(1592), + [anon_sym_u16] = ACTIONS(1592), + [anon_sym_i16] = ACTIONS(1592), + [anon_sym_u32] = ACTIONS(1592), + [anon_sym_i32] = ACTIONS(1592), + [anon_sym_u64] = ACTIONS(1592), + [anon_sym_i64] = ACTIONS(1592), + [anon_sym_u128] = ACTIONS(1592), + [anon_sym_i128] = ACTIONS(1592), + [anon_sym_isize] = ACTIONS(1592), + [anon_sym_usize] = ACTIONS(1592), + [anon_sym_f32] = ACTIONS(1592), + [anon_sym_f64] = ACTIONS(1592), + [anon_sym_bool] = ACTIONS(1592), + [anon_sym_str] = ACTIONS(1592), + [anon_sym_char] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(994), + [anon_sym__] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(996), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_DOT] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_POUND] = ACTIONS(1594), + [anon_sym_PERCENT] = ACTIONS(994), + [anon_sym_CARET] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_as] = ACTIONS(994), + [anon_sym_const] = ACTIONS(1592), + [anon_sym_default] = ACTIONS(1592), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_union] = ACTIONS(1592), + [anon_sym_ref] = ACTIONS(1592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(996), + [sym_mutable_specifier] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DOT_DOT_EQ] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_GT_GT] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_AMP_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(996), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(996), + [anon_sym_GT_GT_EQ] = ACTIONS(996), + [anon_sym_move] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(1594), + [aux_sym_string_literal_token1] = ACTIONS(1594), + [sym_char_literal] = ACTIONS(1594), + [anon_sym_true] = ACTIONS(1592), + [anon_sym_false] = ACTIONS(1592), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1592), + [sym_super] = ACTIONS(1592), + [sym_crate] = ACTIONS(1592), + [sym_metavariable] = ACTIONS(1594), + [sym_raw_string_literal] = ACTIONS(1594), + [sym_float_literal] = ACTIONS(1594), }, - [507] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_macro_rules_BANG] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_u8] = ACTIONS(1907), - [anon_sym_i8] = ACTIONS(1907), - [anon_sym_u16] = ACTIONS(1907), - [anon_sym_i16] = ACTIONS(1907), - [anon_sym_u32] = ACTIONS(1907), - [anon_sym_i32] = ACTIONS(1907), - [anon_sym_u64] = ACTIONS(1907), - [anon_sym_i64] = ACTIONS(1907), - [anon_sym_u128] = ACTIONS(1907), - [anon_sym_i128] = ACTIONS(1907), - [anon_sym_isize] = ACTIONS(1907), - [anon_sym_usize] = ACTIONS(1907), - [anon_sym_f32] = ACTIONS(1907), - [anon_sym_f64] = ACTIONS(1907), - [anon_sym_bool] = ACTIONS(1907), - [anon_sym_str] = ACTIONS(1907), - [anon_sym_char] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [anon_sym_fn] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_impl] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_mod] = ACTIONS(1907), - [anon_sym_pub] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_trait] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_union] = ACTIONS(1907), - [anon_sym_unsafe] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_yield] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [sym_integer_literal] = ACTIONS(1905), - [aux_sym_string_literal_token1] = ACTIONS(1905), - [sym_char_literal] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1907), - [sym_super] = ACTIONS(1907), - [sym_crate] = ACTIONS(1907), - [sym_metavariable] = ACTIONS(1905), - [sym_raw_string_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), - [sym_block_comment] = ACTIONS(3), + [484] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_identifier] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_STAR] = ACTIONS(916), + [anon_sym_QMARK] = ACTIONS(914), + [anon_sym_u8] = ACTIONS(916), + [anon_sym_i8] = ACTIONS(916), + [anon_sym_u16] = ACTIONS(916), + [anon_sym_i16] = ACTIONS(916), + [anon_sym_u32] = ACTIONS(916), + [anon_sym_i32] = ACTIONS(916), + [anon_sym_u64] = ACTIONS(916), + [anon_sym_i64] = ACTIONS(916), + [anon_sym_u128] = ACTIONS(916), + [anon_sym_i128] = ACTIONS(916), + [anon_sym_isize] = ACTIONS(916), + [anon_sym_usize] = ACTIONS(916), + [anon_sym_f32] = ACTIONS(916), + [anon_sym_f64] = ACTIONS(916), + [anon_sym_bool] = ACTIONS(916), + [anon_sym_str] = ACTIONS(916), + [anon_sym_char] = ACTIONS(916), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym__] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(916), + [anon_sym_COMMA] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(916), + [anon_sym_AMP] = ACTIONS(916), + [anon_sym_POUND] = ACTIONS(914), + [anon_sym_PERCENT] = ACTIONS(916), + [anon_sym_CARET] = ACTIONS(916), + [anon_sym_LT] = ACTIONS(916), + [anon_sym_GT] = ACTIONS(916), + [anon_sym_PIPE] = ACTIONS(916), + [anon_sym_as] = ACTIONS(916), + [anon_sym_const] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_static] = ACTIONS(916), + [anon_sym_union] = ACTIONS(916), + [anon_sym_ref] = ACTIONS(916), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [sym_mutable_specifier] = ACTIONS(916), + [anon_sym_DOT_DOT] = ACTIONS(916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(914), + [anon_sym_AMP_AMP] = ACTIONS(914), + [anon_sym_PIPE_PIPE] = ACTIONS(914), + [anon_sym_EQ_EQ] = ACTIONS(914), + [anon_sym_BANG_EQ] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_GT_GT] = ACTIONS(916), + [anon_sym_PLUS_EQ] = ACTIONS(914), + [anon_sym_DASH_EQ] = ACTIONS(914), + [anon_sym_STAR_EQ] = ACTIONS(914), + [anon_sym_SLASH_EQ] = ACTIONS(914), + [anon_sym_PERCENT_EQ] = ACTIONS(914), + [anon_sym_AMP_EQ] = ACTIONS(914), + [anon_sym_PIPE_EQ] = ACTIONS(914), + [anon_sym_CARET_EQ] = ACTIONS(914), + [anon_sym_LT_LT_EQ] = ACTIONS(914), + [anon_sym_GT_GT_EQ] = ACTIONS(914), + [anon_sym_move] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(914), + [aux_sym_string_literal_token1] = ACTIONS(914), + [sym_char_literal] = ACTIONS(914), + [anon_sym_true] = ACTIONS(916), + [anon_sym_false] = ACTIONS(916), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(916), + [sym_super] = ACTIONS(916), + [sym_crate] = ACTIONS(916), + [sym_metavariable] = ACTIONS(914), + [sym_raw_string_literal] = ACTIONS(914), + [sym_float_literal] = ACTIONS(914), }, - [508] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_macro_rules_BANG] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_u8] = ACTIONS(1911), - [anon_sym_i8] = ACTIONS(1911), - [anon_sym_u16] = ACTIONS(1911), - [anon_sym_i16] = ACTIONS(1911), - [anon_sym_u32] = ACTIONS(1911), - [anon_sym_i32] = ACTIONS(1911), - [anon_sym_u64] = ACTIONS(1911), - [anon_sym_i64] = ACTIONS(1911), - [anon_sym_u128] = ACTIONS(1911), - [anon_sym_i128] = ACTIONS(1911), - [anon_sym_isize] = ACTIONS(1911), - [anon_sym_usize] = ACTIONS(1911), - [anon_sym_f32] = ACTIONS(1911), - [anon_sym_f64] = ACTIONS(1911), - [anon_sym_bool] = ACTIONS(1911), - [anon_sym_str] = ACTIONS(1911), - [anon_sym_char] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_COLON_COLON] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_fn] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_impl] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_loop] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_mod] = ACTIONS(1911), - [anon_sym_pub] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_trait] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_unsafe] = ACTIONS(1911), - [anon_sym_use] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_move] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [sym_integer_literal] = ACTIONS(1909), - [aux_sym_string_literal_token1] = ACTIONS(1909), - [sym_char_literal] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1911), - [sym_super] = ACTIONS(1911), - [sym_crate] = ACTIONS(1911), - [sym_metavariable] = ACTIONS(1909), - [sym_raw_string_literal] = ACTIONS(1909), - [sym_float_literal] = ACTIONS(1909), - [sym_block_comment] = ACTIONS(3), + [485] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(982), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u128] = ACTIONS(984), + [anon_sym_i128] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_str] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym__] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(982), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_ref] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [sym_mutable_specifier] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE_PIPE] = ACTIONS(982), + [anon_sym_EQ_EQ] = ACTIONS(982), + [anon_sym_BANG_EQ] = ACTIONS(982), + [anon_sym_LT_EQ] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(982), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PERCENT_EQ] = ACTIONS(982), + [anon_sym_AMP_EQ] = ACTIONS(982), + [anon_sym_PIPE_EQ] = ACTIONS(982), + [anon_sym_CARET_EQ] = ACTIONS(982), + [anon_sym_LT_LT_EQ] = ACTIONS(982), + [anon_sym_GT_GT_EQ] = ACTIONS(982), + [anon_sym_move] = ACTIONS(984), + [sym_integer_literal] = ACTIONS(982), + [aux_sym_string_literal_token1] = ACTIONS(982), + [sym_char_literal] = ACTIONS(982), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(984), + [sym_super] = ACTIONS(984), + [sym_crate] = ACTIONS(984), + [sym_metavariable] = ACTIONS(982), + [sym_raw_string_literal] = ACTIONS(982), + [sym_float_literal] = ACTIONS(982), }, - [509] = { - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_macro_rules_BANG] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_u8] = ACTIONS(1915), - [anon_sym_i8] = ACTIONS(1915), - [anon_sym_u16] = ACTIONS(1915), - [anon_sym_i16] = ACTIONS(1915), - [anon_sym_u32] = ACTIONS(1915), - [anon_sym_i32] = ACTIONS(1915), - [anon_sym_u64] = ACTIONS(1915), - [anon_sym_i64] = ACTIONS(1915), - [anon_sym_u128] = ACTIONS(1915), - [anon_sym_i128] = ACTIONS(1915), - [anon_sym_isize] = ACTIONS(1915), - [anon_sym_usize] = ACTIONS(1915), - [anon_sym_f32] = ACTIONS(1915), - [anon_sym_f64] = ACTIONS(1915), - [anon_sym_bool] = ACTIONS(1915), - [anon_sym_str] = ACTIONS(1915), - [anon_sym_char] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_COLON_COLON] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [anon_sym_fn] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_impl] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_loop] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_mod] = ACTIONS(1915), - [anon_sym_pub] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_static] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1915), - [anon_sym_trait] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_union] = ACTIONS(1915), - [anon_sym_unsafe] = ACTIONS(1915), - [anon_sym_use] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [sym_integer_literal] = ACTIONS(1913), - [aux_sym_string_literal_token1] = ACTIONS(1913), - [sym_char_literal] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1915), - [sym_super] = ACTIONS(1915), - [sym_crate] = ACTIONS(1915), - [sym_metavariable] = ACTIONS(1913), - [sym_raw_string_literal] = ACTIONS(1913), - [sym_float_literal] = ACTIONS(1913), - [sym_block_comment] = ACTIONS(3), - }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_macro_rules_BANG] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_u8] = ACTIONS(1919), - [anon_sym_i8] = ACTIONS(1919), - [anon_sym_u16] = ACTIONS(1919), - [anon_sym_i16] = ACTIONS(1919), - [anon_sym_u32] = ACTIONS(1919), - [anon_sym_i32] = ACTIONS(1919), - [anon_sym_u64] = ACTIONS(1919), - [anon_sym_i64] = ACTIONS(1919), - [anon_sym_u128] = ACTIONS(1919), - [anon_sym_i128] = ACTIONS(1919), - [anon_sym_isize] = ACTIONS(1919), - [anon_sym_usize] = ACTIONS(1919), - [anon_sym_f32] = ACTIONS(1919), - [anon_sym_f64] = ACTIONS(1919), - [anon_sym_bool] = ACTIONS(1919), - [anon_sym_str] = ACTIONS(1919), - [anon_sym_char] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_COLON_COLON] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_async] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_default] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [anon_sym_fn] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_impl] = ACTIONS(1919), - [anon_sym_let] = ACTIONS(1919), - [anon_sym_loop] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_mod] = ACTIONS(1919), - [anon_sym_pub] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_trait] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_union] = ACTIONS(1919), - [anon_sym_unsafe] = ACTIONS(1919), - [anon_sym_use] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_yield] = ACTIONS(1919), - [anon_sym_move] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1919), - [sym_integer_literal] = ACTIONS(1917), - [aux_sym_string_literal_token1] = ACTIONS(1917), - [sym_char_literal] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1919), - [sym_super] = ACTIONS(1919), - [sym_crate] = ACTIONS(1919), - [sym_metavariable] = ACTIONS(1917), - [sym_raw_string_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), - [sym_block_comment] = ACTIONS(3), + [486] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [sym_identifier] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(918), + [anon_sym_RBRACE] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_PLUS] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_QMARK] = ACTIONS(918), + [anon_sym_u8] = ACTIONS(920), + [anon_sym_i8] = ACTIONS(920), + [anon_sym_u16] = ACTIONS(920), + [anon_sym_i16] = ACTIONS(920), + [anon_sym_u32] = ACTIONS(920), + [anon_sym_i32] = ACTIONS(920), + [anon_sym_u64] = ACTIONS(920), + [anon_sym_i64] = ACTIONS(920), + [anon_sym_u128] = ACTIONS(920), + [anon_sym_i128] = ACTIONS(920), + [anon_sym_isize] = ACTIONS(920), + [anon_sym_usize] = ACTIONS(920), + [anon_sym_f32] = ACTIONS(920), + [anon_sym_f64] = ACTIONS(920), + [anon_sym_bool] = ACTIONS(920), + [anon_sym_str] = ACTIONS(920), + [anon_sym_char] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(920), + [anon_sym__] = ACTIONS(920), + [anon_sym_DASH] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(918), + [anon_sym_COLON_COLON] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_POUND] = ACTIONS(918), + [anon_sym_PERCENT] = ACTIONS(920), + [anon_sym_CARET] = ACTIONS(920), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_as] = ACTIONS(920), + [anon_sym_const] = ACTIONS(920), + [anon_sym_default] = ACTIONS(920), + [anon_sym_static] = ACTIONS(920), + [anon_sym_union] = ACTIONS(920), + [anon_sym_ref] = ACTIONS(920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(918), + [sym_mutable_specifier] = ACTIONS(920), + [anon_sym_DOT_DOT] = ACTIONS(920), + [anon_sym_DOT_DOT_EQ] = ACTIONS(918), + [anon_sym_AMP_AMP] = ACTIONS(918), + [anon_sym_PIPE_PIPE] = ACTIONS(918), + [anon_sym_EQ_EQ] = ACTIONS(918), + [anon_sym_BANG_EQ] = ACTIONS(918), + [anon_sym_LT_EQ] = ACTIONS(918), + [anon_sym_GT_EQ] = ACTIONS(918), + [anon_sym_LT_LT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(920), + [anon_sym_PLUS_EQ] = ACTIONS(918), + [anon_sym_DASH_EQ] = ACTIONS(918), + [anon_sym_STAR_EQ] = ACTIONS(918), + [anon_sym_SLASH_EQ] = ACTIONS(918), + [anon_sym_PERCENT_EQ] = ACTIONS(918), + [anon_sym_AMP_EQ] = ACTIONS(918), + [anon_sym_PIPE_EQ] = ACTIONS(918), + [anon_sym_CARET_EQ] = ACTIONS(918), + [anon_sym_LT_LT_EQ] = ACTIONS(918), + [anon_sym_GT_GT_EQ] = ACTIONS(918), + [anon_sym_move] = ACTIONS(920), + [sym_integer_literal] = ACTIONS(918), + [aux_sym_string_literal_token1] = ACTIONS(918), + [sym_char_literal] = ACTIONS(918), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(920), + [sym_super] = ACTIONS(920), + [sym_crate] = ACTIONS(920), + [sym_metavariable] = ACTIONS(918), + [sym_raw_string_literal] = ACTIONS(918), + [sym_float_literal] = ACTIONS(918), }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_macro_rules_BANG] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_u8] = ACTIONS(1923), - [anon_sym_i8] = ACTIONS(1923), - [anon_sym_u16] = ACTIONS(1923), - [anon_sym_i16] = ACTIONS(1923), - [anon_sym_u32] = ACTIONS(1923), - [anon_sym_i32] = ACTIONS(1923), - [anon_sym_u64] = ACTIONS(1923), - [anon_sym_i64] = ACTIONS(1923), - [anon_sym_u128] = ACTIONS(1923), - [anon_sym_i128] = ACTIONS(1923), - [anon_sym_isize] = ACTIONS(1923), - [anon_sym_usize] = ACTIONS(1923), - [anon_sym_f32] = ACTIONS(1923), - [anon_sym_f64] = ACTIONS(1923), - [anon_sym_bool] = ACTIONS(1923), - [anon_sym_str] = ACTIONS(1923), - [anon_sym_char] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [anon_sym_fn] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_impl] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_loop] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_mod] = ACTIONS(1923), - [anon_sym_pub] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_trait] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_union] = ACTIONS(1923), - [anon_sym_unsafe] = ACTIONS(1923), - [anon_sym_use] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_move] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [sym_integer_literal] = ACTIONS(1921), - [aux_sym_string_literal_token1] = ACTIONS(1921), - [sym_char_literal] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_crate] = ACTIONS(1923), - [sym_metavariable] = ACTIONS(1921), - [sym_raw_string_literal] = ACTIONS(1921), - [sym_float_literal] = ACTIONS(1921), - [sym_block_comment] = ACTIONS(3), + [487] = { + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [sym_identifier] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_QMARK] = ACTIONS(926), + [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_SLASH] = ACTIONS(928), + [anon_sym__] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_EQ] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_COLON_COLON] = ACTIONS(926), + [anon_sym_DOT] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_POUND] = ACTIONS(926), + [anon_sym_PERCENT] = ACTIONS(928), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_as] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_static] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_ref] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(926), + [sym_mutable_specifier] = ACTIONS(928), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(926), + [anon_sym_AMP_AMP] = ACTIONS(926), + [anon_sym_PIPE_PIPE] = ACTIONS(926), + [anon_sym_EQ_EQ] = ACTIONS(926), + [anon_sym_BANG_EQ] = ACTIONS(926), + [anon_sym_LT_EQ] = ACTIONS(926), + [anon_sym_GT_EQ] = ACTIONS(926), + [anon_sym_LT_LT] = ACTIONS(928), + [anon_sym_GT_GT] = ACTIONS(928), + [anon_sym_PLUS_EQ] = ACTIONS(926), + [anon_sym_DASH_EQ] = ACTIONS(926), + [anon_sym_STAR_EQ] = ACTIONS(926), + [anon_sym_SLASH_EQ] = ACTIONS(926), + [anon_sym_PERCENT_EQ] = ACTIONS(926), + [anon_sym_AMP_EQ] = ACTIONS(926), + [anon_sym_PIPE_EQ] = ACTIONS(926), + [anon_sym_CARET_EQ] = ACTIONS(926), + [anon_sym_LT_LT_EQ] = ACTIONS(926), + [anon_sym_GT_GT_EQ] = ACTIONS(926), + [anon_sym_move] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(926), + [aux_sym_string_literal_token1] = ACTIONS(926), + [sym_char_literal] = ACTIONS(926), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(928), + [sym_super] = ACTIONS(928), + [sym_crate] = ACTIONS(928), + [sym_metavariable] = ACTIONS(926), + [sym_raw_string_literal] = ACTIONS(926), + [sym_float_literal] = ACTIONS(926), }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_macro_rules_BANG] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_u8] = ACTIONS(1927), - [anon_sym_i8] = ACTIONS(1927), - [anon_sym_u16] = ACTIONS(1927), - [anon_sym_i16] = ACTIONS(1927), - [anon_sym_u32] = ACTIONS(1927), - [anon_sym_i32] = ACTIONS(1927), - [anon_sym_u64] = ACTIONS(1927), - [anon_sym_i64] = ACTIONS(1927), - [anon_sym_u128] = ACTIONS(1927), - [anon_sym_i128] = ACTIONS(1927), - [anon_sym_isize] = ACTIONS(1927), - [anon_sym_usize] = ACTIONS(1927), - [anon_sym_f32] = ACTIONS(1927), - [anon_sym_f64] = ACTIONS(1927), - [anon_sym_bool] = ACTIONS(1927), - [anon_sym_str] = ACTIONS(1927), - [anon_sym_char] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [anon_sym_fn] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_impl] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_mod] = ACTIONS(1927), - [anon_sym_pub] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_trait] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_union] = ACTIONS(1927), - [anon_sym_unsafe] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_move] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [sym_integer_literal] = ACTIONS(1925), - [aux_sym_string_literal_token1] = ACTIONS(1925), - [sym_char_literal] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_crate] = ACTIONS(1927), - [sym_metavariable] = ACTIONS(1925), - [sym_raw_string_literal] = ACTIONS(1925), - [sym_float_literal] = ACTIONS(1925), - [sym_block_comment] = ACTIONS(3), + [488] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2850), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2844), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(3065), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(3065), + [sym__literal] = STATE(3065), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [513] = { - [ts_builtin_sym_end] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_macro_rules_BANG] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_u8] = ACTIONS(1931), - [anon_sym_i8] = ACTIONS(1931), - [anon_sym_u16] = ACTIONS(1931), - [anon_sym_i16] = ACTIONS(1931), - [anon_sym_u32] = ACTIONS(1931), - [anon_sym_i32] = ACTIONS(1931), - [anon_sym_u64] = ACTIONS(1931), - [anon_sym_i64] = ACTIONS(1931), - [anon_sym_u128] = ACTIONS(1931), - [anon_sym_i128] = ACTIONS(1931), - [anon_sym_isize] = ACTIONS(1931), - [anon_sym_usize] = ACTIONS(1931), - [anon_sym_f32] = ACTIONS(1931), - [anon_sym_f64] = ACTIONS(1931), - [anon_sym_bool] = ACTIONS(1931), - [anon_sym_str] = ACTIONS(1931), - [anon_sym_char] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_COLON_COLON] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SQUOTE] = ACTIONS(1931), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_default] = ACTIONS(1931), - [anon_sym_enum] = ACTIONS(1931), - [anon_sym_fn] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_impl] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_mod] = ACTIONS(1931), - [anon_sym_pub] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_struct] = ACTIONS(1931), - [anon_sym_trait] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_union] = ACTIONS(1931), - [anon_sym_unsafe] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_yield] = ACTIONS(1931), - [anon_sym_move] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [sym_integer_literal] = ACTIONS(1929), - [aux_sym_string_literal_token1] = ACTIONS(1929), - [sym_char_literal] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1931), - [sym_super] = ACTIONS(1931), - [sym_crate] = ACTIONS(1931), - [sym_metavariable] = ACTIONS(1929), - [sym_raw_string_literal] = ACTIONS(1929), - [sym_float_literal] = ACTIONS(1929), - [sym_block_comment] = ACTIONS(3), + [489] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2850), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2844), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(3065), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(3065), + [sym__literal] = STATE(3065), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1624), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [514] = { - [ts_builtin_sym_end] = ACTIONS(1933), - [sym_identifier] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_macro_rules_BANG] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1933), - [anon_sym_u8] = ACTIONS(1935), - [anon_sym_i8] = ACTIONS(1935), - [anon_sym_u16] = ACTIONS(1935), - [anon_sym_i16] = ACTIONS(1935), - [anon_sym_u32] = ACTIONS(1935), - [anon_sym_i32] = ACTIONS(1935), - [anon_sym_u64] = ACTIONS(1935), - [anon_sym_i64] = ACTIONS(1935), - [anon_sym_u128] = ACTIONS(1935), - [anon_sym_i128] = ACTIONS(1935), - [anon_sym_isize] = ACTIONS(1935), - [anon_sym_usize] = ACTIONS(1935), - [anon_sym_f32] = ACTIONS(1935), - [anon_sym_f64] = ACTIONS(1935), - [anon_sym_bool] = ACTIONS(1935), - [anon_sym_str] = ACTIONS(1935), - [anon_sym_char] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_BANG] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_SQUOTE] = ACTIONS(1935), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_default] = ACTIONS(1935), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_fn] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_impl] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_mod] = ACTIONS(1935), - [anon_sym_pub] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_trait] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_union] = ACTIONS(1935), - [anon_sym_unsafe] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_yield] = ACTIONS(1935), - [anon_sym_move] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [sym_integer_literal] = ACTIONS(1933), - [aux_sym_string_literal_token1] = ACTIONS(1933), - [sym_char_literal] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1935), - [sym_super] = ACTIONS(1935), - [sym_crate] = ACTIONS(1935), - [sym_metavariable] = ACTIONS(1933), - [sym_raw_string_literal] = ACTIONS(1933), - [sym_float_literal] = ACTIONS(1933), - [sym_block_comment] = ACTIONS(3), + [490] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2850), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2844), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(3065), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(3065), + [sym__literal] = STATE(3065), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [515] = { - [ts_builtin_sym_end] = ACTIONS(1937), - [sym_identifier] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_macro_rules_BANG] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1937), - [anon_sym_u8] = ACTIONS(1939), - [anon_sym_i8] = ACTIONS(1939), - [anon_sym_u16] = ACTIONS(1939), - [anon_sym_i16] = ACTIONS(1939), - [anon_sym_u32] = ACTIONS(1939), - [anon_sym_i32] = ACTIONS(1939), - [anon_sym_u64] = ACTIONS(1939), - [anon_sym_i64] = ACTIONS(1939), - [anon_sym_u128] = ACTIONS(1939), - [anon_sym_i128] = ACTIONS(1939), - [anon_sym_isize] = ACTIONS(1939), - [anon_sym_usize] = ACTIONS(1939), - [anon_sym_f32] = ACTIONS(1939), - [anon_sym_f64] = ACTIONS(1939), - [anon_sym_bool] = ACTIONS(1939), - [anon_sym_str] = ACTIONS(1939), - [anon_sym_char] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_COLON_COLON] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_SQUOTE] = ACTIONS(1939), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_const] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_default] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1939), - [anon_sym_fn] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_impl] = ACTIONS(1939), - [anon_sym_let] = ACTIONS(1939), - [anon_sym_loop] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_mod] = ACTIONS(1939), - [anon_sym_pub] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1939), - [anon_sym_trait] = ACTIONS(1939), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_union] = ACTIONS(1939), - [anon_sym_unsafe] = ACTIONS(1939), - [anon_sym_use] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_extern] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_yield] = ACTIONS(1939), - [anon_sym_move] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1939), - [sym_integer_literal] = ACTIONS(1937), - [aux_sym_string_literal_token1] = ACTIONS(1937), - [sym_char_literal] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1939), - [sym_super] = ACTIONS(1939), - [sym_crate] = ACTIONS(1939), - [sym_metavariable] = ACTIONS(1937), - [sym_raw_string_literal] = ACTIONS(1937), - [sym_float_literal] = ACTIONS(1937), - [sym_block_comment] = ACTIONS(3), + [491] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3434), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, - [516] = { - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_macro_rules_BANG] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1941), - [anon_sym_u8] = ACTIONS(1943), - [anon_sym_i8] = ACTIONS(1943), - [anon_sym_u16] = ACTIONS(1943), - [anon_sym_i16] = ACTIONS(1943), - [anon_sym_u32] = ACTIONS(1943), - [anon_sym_i32] = ACTIONS(1943), - [anon_sym_u64] = ACTIONS(1943), - [anon_sym_i64] = ACTIONS(1943), - [anon_sym_u128] = ACTIONS(1943), - [anon_sym_i128] = ACTIONS(1943), - [anon_sym_isize] = ACTIONS(1943), - [anon_sym_usize] = ACTIONS(1943), - [anon_sym_f32] = ACTIONS(1943), - [anon_sym_f64] = ACTIONS(1943), - [anon_sym_bool] = ACTIONS(1943), - [anon_sym_str] = ACTIONS(1943), - [anon_sym_char] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_COLON_COLON] = ACTIONS(1941), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_async] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_default] = ACTIONS(1943), - [anon_sym_enum] = ACTIONS(1943), - [anon_sym_fn] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_impl] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_mod] = ACTIONS(1943), - [anon_sym_pub] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_static] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1943), - [anon_sym_trait] = ACTIONS(1943), - [anon_sym_type] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1943), - [anon_sym_unsafe] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_yield] = ACTIONS(1943), - [anon_sym_move] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1943), - [sym_integer_literal] = ACTIONS(1941), - [aux_sym_string_literal_token1] = ACTIONS(1941), - [sym_char_literal] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1943), - [sym_super] = ACTIONS(1943), - [sym_crate] = ACTIONS(1943), - [sym_metavariable] = ACTIONS(1941), - [sym_raw_string_literal] = ACTIONS(1941), - [sym_float_literal] = ACTIONS(1941), - [sym_block_comment] = ACTIONS(3), + [492] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3357), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(492), + [sym_block_comment] = STATE(492), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, - [517] = { - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_macro_rules_BANG] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_u8] = ACTIONS(1947), - [anon_sym_i8] = ACTIONS(1947), - [anon_sym_u16] = ACTIONS(1947), - [anon_sym_i16] = ACTIONS(1947), - [anon_sym_u32] = ACTIONS(1947), - [anon_sym_i32] = ACTIONS(1947), - [anon_sym_u64] = ACTIONS(1947), - [anon_sym_i64] = ACTIONS(1947), - [anon_sym_u128] = ACTIONS(1947), - [anon_sym_i128] = ACTIONS(1947), - [anon_sym_isize] = ACTIONS(1947), - [anon_sym_usize] = ACTIONS(1947), - [anon_sym_f32] = ACTIONS(1947), - [anon_sym_f64] = ACTIONS(1947), - [anon_sym_bool] = ACTIONS(1947), - [anon_sym_str] = ACTIONS(1947), - [anon_sym_char] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_COLON_COLON] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_async] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [anon_sym_fn] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_impl] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_mod] = ACTIONS(1947), - [anon_sym_pub] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_trait] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1947), - [anon_sym_unsafe] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_yield] = ACTIONS(1947), - [anon_sym_move] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [sym_integer_literal] = ACTIONS(1945), - [aux_sym_string_literal_token1] = ACTIONS(1945), - [sym_char_literal] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1947), - [sym_super] = ACTIONS(1947), - [sym_crate] = ACTIONS(1947), - [sym_metavariable] = ACTIONS(1945), - [sym_raw_string_literal] = ACTIONS(1945), - [sym_float_literal] = ACTIONS(1945), - [sym_block_comment] = ACTIONS(3), - }, - [518] = { - [ts_builtin_sym_end] = ACTIONS(1949), - [sym_identifier] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1949), - [anon_sym_macro_rules_BANG] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1949), - [anon_sym_u8] = ACTIONS(1951), - [anon_sym_i8] = ACTIONS(1951), - [anon_sym_u16] = ACTIONS(1951), - [anon_sym_i16] = ACTIONS(1951), - [anon_sym_u32] = ACTIONS(1951), - [anon_sym_i32] = ACTIONS(1951), - [anon_sym_u64] = ACTIONS(1951), - [anon_sym_i64] = ACTIONS(1951), - [anon_sym_u128] = ACTIONS(1951), - [anon_sym_i128] = ACTIONS(1951), - [anon_sym_isize] = ACTIONS(1951), - [anon_sym_usize] = ACTIONS(1951), - [anon_sym_f32] = ACTIONS(1951), - [anon_sym_f64] = ACTIONS(1951), - [anon_sym_bool] = ACTIONS(1951), - [anon_sym_str] = ACTIONS(1951), - [anon_sym_char] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_COLON_COLON] = ACTIONS(1949), - [anon_sym_BANG] = ACTIONS(1949), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_SQUOTE] = ACTIONS(1951), - [anon_sym_async] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_default] = ACTIONS(1951), - [anon_sym_enum] = ACTIONS(1951), - [anon_sym_fn] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_impl] = ACTIONS(1951), - [anon_sym_let] = ACTIONS(1951), - [anon_sym_loop] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_mod] = ACTIONS(1951), - [anon_sym_pub] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_trait] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_union] = ACTIONS(1951), - [anon_sym_unsafe] = ACTIONS(1951), - [anon_sym_use] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_yield] = ACTIONS(1951), - [anon_sym_move] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1951), - [sym_integer_literal] = ACTIONS(1949), - [aux_sym_string_literal_token1] = ACTIONS(1949), - [sym_char_literal] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1951), - [sym_super] = ACTIONS(1951), - [sym_crate] = ACTIONS(1951), - [sym_metavariable] = ACTIONS(1949), - [sym_raw_string_literal] = ACTIONS(1949), - [sym_float_literal] = ACTIONS(1949), - [sym_block_comment] = ACTIONS(3), - }, - [519] = { - [ts_builtin_sym_end] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_macro_rules_BANG] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_u8] = ACTIONS(1955), - [anon_sym_i8] = ACTIONS(1955), - [anon_sym_u16] = ACTIONS(1955), - [anon_sym_i16] = ACTIONS(1955), - [anon_sym_u32] = ACTIONS(1955), - [anon_sym_i32] = ACTIONS(1955), - [anon_sym_u64] = ACTIONS(1955), - [anon_sym_i64] = ACTIONS(1955), - [anon_sym_u128] = ACTIONS(1955), - [anon_sym_i128] = ACTIONS(1955), - [anon_sym_isize] = ACTIONS(1955), - [anon_sym_usize] = ACTIONS(1955), - [anon_sym_f32] = ACTIONS(1955), - [anon_sym_f64] = ACTIONS(1955), - [anon_sym_bool] = ACTIONS(1955), - [anon_sym_str] = ACTIONS(1955), - [anon_sym_char] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_COLON_COLON] = ACTIONS(1953), - [anon_sym_BANG] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_async] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_default] = ACTIONS(1955), - [anon_sym_enum] = ACTIONS(1955), - [anon_sym_fn] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_impl] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_mod] = ACTIONS(1955), - [anon_sym_pub] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_trait] = ACTIONS(1955), - [anon_sym_type] = ACTIONS(1955), - [anon_sym_union] = ACTIONS(1955), - [anon_sym_unsafe] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_yield] = ACTIONS(1955), - [anon_sym_move] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [sym_integer_literal] = ACTIONS(1953), - [aux_sym_string_literal_token1] = ACTIONS(1953), - [sym_char_literal] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1955), - [sym_super] = ACTIONS(1955), - [sym_crate] = ACTIONS(1955), - [sym_metavariable] = ACTIONS(1953), - [sym_raw_string_literal] = ACTIONS(1953), - [sym_float_literal] = ACTIONS(1953), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { - [ts_builtin_sym_end] = ACTIONS(1957), - [sym_identifier] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_macro_rules_BANG] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_u8] = ACTIONS(1959), - [anon_sym_i8] = ACTIONS(1959), - [anon_sym_u16] = ACTIONS(1959), - [anon_sym_i16] = ACTIONS(1959), - [anon_sym_u32] = ACTIONS(1959), - [anon_sym_i32] = ACTIONS(1959), - [anon_sym_u64] = ACTIONS(1959), - [anon_sym_i64] = ACTIONS(1959), - [anon_sym_u128] = ACTIONS(1959), - [anon_sym_i128] = ACTIONS(1959), - [anon_sym_isize] = ACTIONS(1959), - [anon_sym_usize] = ACTIONS(1959), - [anon_sym_f32] = ACTIONS(1959), - [anon_sym_f64] = ACTIONS(1959), - [anon_sym_bool] = ACTIONS(1959), - [anon_sym_str] = ACTIONS(1959), - [anon_sym_char] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_COLON_COLON] = ACTIONS(1957), - [anon_sym_BANG] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_SQUOTE] = ACTIONS(1959), - [anon_sym_async] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1959), - [anon_sym_fn] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_impl] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_mod] = ACTIONS(1959), - [anon_sym_pub] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_static] = ACTIONS(1959), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_trait] = ACTIONS(1959), - [anon_sym_type] = ACTIONS(1959), - [anon_sym_union] = ACTIONS(1959), - [anon_sym_unsafe] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_yield] = ACTIONS(1959), - [anon_sym_move] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [sym_integer_literal] = ACTIONS(1957), - [aux_sym_string_literal_token1] = ACTIONS(1957), - [sym_char_literal] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1959), - [sym_super] = ACTIONS(1959), - [sym_crate] = ACTIONS(1959), - [sym_metavariable] = ACTIONS(1957), - [sym_raw_string_literal] = ACTIONS(1957), - [sym_float_literal] = ACTIONS(1957), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [ts_builtin_sym_end] = ACTIONS(1961), - [sym_identifier] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_macro_rules_BANG] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_u8] = ACTIONS(1963), - [anon_sym_i8] = ACTIONS(1963), - [anon_sym_u16] = ACTIONS(1963), - [anon_sym_i16] = ACTIONS(1963), - [anon_sym_u32] = ACTIONS(1963), - [anon_sym_i32] = ACTIONS(1963), - [anon_sym_u64] = ACTIONS(1963), - [anon_sym_i64] = ACTIONS(1963), - [anon_sym_u128] = ACTIONS(1963), - [anon_sym_i128] = ACTIONS(1963), - [anon_sym_isize] = ACTIONS(1963), - [anon_sym_usize] = ACTIONS(1963), - [anon_sym_f32] = ACTIONS(1963), - [anon_sym_f64] = ACTIONS(1963), - [anon_sym_bool] = ACTIONS(1963), - [anon_sym_str] = ACTIONS(1963), - [anon_sym_char] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_COLON_COLON] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1963), - [anon_sym_async] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_default] = ACTIONS(1963), - [anon_sym_enum] = ACTIONS(1963), - [anon_sym_fn] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_impl] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_mod] = ACTIONS(1963), - [anon_sym_pub] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [anon_sym_trait] = ACTIONS(1963), - [anon_sym_type] = ACTIONS(1963), - [anon_sym_union] = ACTIONS(1963), - [anon_sym_unsafe] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_yield] = ACTIONS(1963), - [anon_sym_move] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [sym_integer_literal] = ACTIONS(1961), - [aux_sym_string_literal_token1] = ACTIONS(1961), - [sym_char_literal] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1963), - [sym_super] = ACTIONS(1963), - [sym_crate] = ACTIONS(1963), - [sym_metavariable] = ACTIONS(1961), - [sym_raw_string_literal] = ACTIONS(1961), - [sym_float_literal] = ACTIONS(1961), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { - [ts_builtin_sym_end] = ACTIONS(1965), - [sym_identifier] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_macro_rules_BANG] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_u8] = ACTIONS(1967), - [anon_sym_i8] = ACTIONS(1967), - [anon_sym_u16] = ACTIONS(1967), - [anon_sym_i16] = ACTIONS(1967), - [anon_sym_u32] = ACTIONS(1967), - [anon_sym_i32] = ACTIONS(1967), - [anon_sym_u64] = ACTIONS(1967), - [anon_sym_i64] = ACTIONS(1967), - [anon_sym_u128] = ACTIONS(1967), - [anon_sym_i128] = ACTIONS(1967), - [anon_sym_isize] = ACTIONS(1967), - [anon_sym_usize] = ACTIONS(1967), - [anon_sym_f32] = ACTIONS(1967), - [anon_sym_f64] = ACTIONS(1967), - [anon_sym_bool] = ACTIONS(1967), - [anon_sym_str] = ACTIONS(1967), - [anon_sym_char] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_COLON_COLON] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_default] = ACTIONS(1967), - [anon_sym_enum] = ACTIONS(1967), - [anon_sym_fn] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_impl] = ACTIONS(1967), - [anon_sym_let] = ACTIONS(1967), - [anon_sym_loop] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_mod] = ACTIONS(1967), - [anon_sym_pub] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_struct] = ACTIONS(1967), - [anon_sym_trait] = ACTIONS(1967), - [anon_sym_type] = ACTIONS(1967), - [anon_sym_union] = ACTIONS(1967), - [anon_sym_unsafe] = ACTIONS(1967), - [anon_sym_use] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_yield] = ACTIONS(1967), - [anon_sym_move] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1967), - [sym_integer_literal] = ACTIONS(1965), - [aux_sym_string_literal_token1] = ACTIONS(1965), - [sym_char_literal] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1967), - [sym_super] = ACTIONS(1967), - [sym_crate] = ACTIONS(1967), - [sym_metavariable] = ACTIONS(1965), - [sym_raw_string_literal] = ACTIONS(1965), - [sym_float_literal] = ACTIONS(1965), - [sym_block_comment] = ACTIONS(3), - }, - [523] = { - [ts_builtin_sym_end] = ACTIONS(1969), - [sym_identifier] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_macro_rules_BANG] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_u8] = ACTIONS(1971), - [anon_sym_i8] = ACTIONS(1971), - [anon_sym_u16] = ACTIONS(1971), - [anon_sym_i16] = ACTIONS(1971), - [anon_sym_u32] = ACTIONS(1971), - [anon_sym_i32] = ACTIONS(1971), - [anon_sym_u64] = ACTIONS(1971), - [anon_sym_i64] = ACTIONS(1971), - [anon_sym_u128] = ACTIONS(1971), - [anon_sym_i128] = ACTIONS(1971), - [anon_sym_isize] = ACTIONS(1971), - [anon_sym_usize] = ACTIONS(1971), - [anon_sym_f32] = ACTIONS(1971), - [anon_sym_f64] = ACTIONS(1971), - [anon_sym_bool] = ACTIONS(1971), - [anon_sym_str] = ACTIONS(1971), - [anon_sym_char] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_COLON_COLON] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_const] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_default] = ACTIONS(1971), - [anon_sym_enum] = ACTIONS(1971), - [anon_sym_fn] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_impl] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_loop] = ACTIONS(1971), - [anon_sym_match] = ACTIONS(1971), - [anon_sym_mod] = ACTIONS(1971), - [anon_sym_pub] = ACTIONS(1971), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_trait] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_union] = ACTIONS(1971), - [anon_sym_unsafe] = ACTIONS(1971), - [anon_sym_use] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_extern] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_move] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1971), - [sym_integer_literal] = ACTIONS(1969), - [aux_sym_string_literal_token1] = ACTIONS(1969), - [sym_char_literal] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1971), - [sym_super] = ACTIONS(1971), - [sym_crate] = ACTIONS(1971), - [sym_metavariable] = ACTIONS(1969), - [sym_raw_string_literal] = ACTIONS(1969), - [sym_float_literal] = ACTIONS(1969), - [sym_block_comment] = ACTIONS(3), - }, - [524] = { - [ts_builtin_sym_end] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_macro_rules_BANG] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_u8] = ACTIONS(1975), - [anon_sym_i8] = ACTIONS(1975), - [anon_sym_u16] = ACTIONS(1975), - [anon_sym_i16] = ACTIONS(1975), - [anon_sym_u32] = ACTIONS(1975), - [anon_sym_i32] = ACTIONS(1975), - [anon_sym_u64] = ACTIONS(1975), - [anon_sym_i64] = ACTIONS(1975), - [anon_sym_u128] = ACTIONS(1975), - [anon_sym_i128] = ACTIONS(1975), - [anon_sym_isize] = ACTIONS(1975), - [anon_sym_usize] = ACTIONS(1975), - [anon_sym_f32] = ACTIONS(1975), - [anon_sym_f64] = ACTIONS(1975), - [anon_sym_bool] = ACTIONS(1975), - [anon_sym_str] = ACTIONS(1975), - [anon_sym_char] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_COLON_COLON] = ACTIONS(1973), - [anon_sym_BANG] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1975), - [anon_sym_async] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_default] = ACTIONS(1975), - [anon_sym_enum] = ACTIONS(1975), - [anon_sym_fn] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_impl] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_loop] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_mod] = ACTIONS(1975), - [anon_sym_pub] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_trait] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_union] = ACTIONS(1975), - [anon_sym_unsafe] = ACTIONS(1975), - [anon_sym_use] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_move] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1975), - [sym_integer_literal] = ACTIONS(1973), - [aux_sym_string_literal_token1] = ACTIONS(1973), - [sym_char_literal] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1975), - [sym_super] = ACTIONS(1975), - [sym_crate] = ACTIONS(1975), - [sym_metavariable] = ACTIONS(1973), - [sym_raw_string_literal] = ACTIONS(1973), - [sym_float_literal] = ACTIONS(1973), - [sym_block_comment] = ACTIONS(3), - }, - [525] = { - [ts_builtin_sym_end] = ACTIONS(1977), - [sym_identifier] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym_macro_rules_BANG] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_u8] = ACTIONS(1979), - [anon_sym_i8] = ACTIONS(1979), - [anon_sym_u16] = ACTIONS(1979), - [anon_sym_i16] = ACTIONS(1979), - [anon_sym_u32] = ACTIONS(1979), - [anon_sym_i32] = ACTIONS(1979), - [anon_sym_u64] = ACTIONS(1979), - [anon_sym_i64] = ACTIONS(1979), - [anon_sym_u128] = ACTIONS(1979), - [anon_sym_i128] = ACTIONS(1979), - [anon_sym_isize] = ACTIONS(1979), - [anon_sym_usize] = ACTIONS(1979), - [anon_sym_f32] = ACTIONS(1979), - [anon_sym_f64] = ACTIONS(1979), - [anon_sym_bool] = ACTIONS(1979), - [anon_sym_str] = ACTIONS(1979), - [anon_sym_char] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_COLON_COLON] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(1977), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_async] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_default] = ACTIONS(1979), - [anon_sym_enum] = ACTIONS(1979), - [anon_sym_fn] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_impl] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_mod] = ACTIONS(1979), - [anon_sym_pub] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1979), - [anon_sym_struct] = ACTIONS(1979), - [anon_sym_trait] = ACTIONS(1979), - [anon_sym_type] = ACTIONS(1979), - [anon_sym_union] = ACTIONS(1979), - [anon_sym_unsafe] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_yield] = ACTIONS(1979), - [anon_sym_move] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [sym_integer_literal] = ACTIONS(1977), - [aux_sym_string_literal_token1] = ACTIONS(1977), - [sym_char_literal] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1979), - [sym_super] = ACTIONS(1979), - [sym_crate] = ACTIONS(1979), - [sym_metavariable] = ACTIONS(1977), - [sym_raw_string_literal] = ACTIONS(1977), - [sym_float_literal] = ACTIONS(1977), - [sym_block_comment] = ACTIONS(3), - }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_macro_rules_BANG] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_u8] = ACTIONS(1983), - [anon_sym_i8] = ACTIONS(1983), - [anon_sym_u16] = ACTIONS(1983), - [anon_sym_i16] = ACTIONS(1983), - [anon_sym_u32] = ACTIONS(1983), - [anon_sym_i32] = ACTIONS(1983), - [anon_sym_u64] = ACTIONS(1983), - [anon_sym_i64] = ACTIONS(1983), - [anon_sym_u128] = ACTIONS(1983), - [anon_sym_i128] = ACTIONS(1983), - [anon_sym_isize] = ACTIONS(1983), - [anon_sym_usize] = ACTIONS(1983), - [anon_sym_f32] = ACTIONS(1983), - [anon_sym_f64] = ACTIONS(1983), - [anon_sym_bool] = ACTIONS(1983), - [anon_sym_str] = ACTIONS(1983), - [anon_sym_char] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_COLON_COLON] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_SQUOTE] = ACTIONS(1983), - [anon_sym_async] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_default] = ACTIONS(1983), - [anon_sym_enum] = ACTIONS(1983), - [anon_sym_fn] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_impl] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_mod] = ACTIONS(1983), - [anon_sym_pub] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1983), - [anon_sym_struct] = ACTIONS(1983), - [anon_sym_trait] = ACTIONS(1983), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_union] = ACTIONS(1983), - [anon_sym_unsafe] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_yield] = ACTIONS(1983), - [anon_sym_move] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [sym_integer_literal] = ACTIONS(1981), - [aux_sym_string_literal_token1] = ACTIONS(1981), - [sym_char_literal] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1983), - [sym_super] = ACTIONS(1983), - [sym_crate] = ACTIONS(1983), - [sym_metavariable] = ACTIONS(1981), - [sym_raw_string_literal] = ACTIONS(1981), - [sym_float_literal] = ACTIONS(1981), - [sym_block_comment] = ACTIONS(3), - }, - [527] = { - [ts_builtin_sym_end] = ACTIONS(1985), - [sym_identifier] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_macro_rules_BANG] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_u8] = ACTIONS(1987), - [anon_sym_i8] = ACTIONS(1987), - [anon_sym_u16] = ACTIONS(1987), - [anon_sym_i16] = ACTIONS(1987), - [anon_sym_u32] = ACTIONS(1987), - [anon_sym_i32] = ACTIONS(1987), - [anon_sym_u64] = ACTIONS(1987), - [anon_sym_i64] = ACTIONS(1987), - [anon_sym_u128] = ACTIONS(1987), - [anon_sym_i128] = ACTIONS(1987), - [anon_sym_isize] = ACTIONS(1987), - [anon_sym_usize] = ACTIONS(1987), - [anon_sym_f32] = ACTIONS(1987), - [anon_sym_f64] = ACTIONS(1987), - [anon_sym_bool] = ACTIONS(1987), - [anon_sym_str] = ACTIONS(1987), - [anon_sym_char] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_COLON_COLON] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_SQUOTE] = ACTIONS(1987), - [anon_sym_async] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_default] = ACTIONS(1987), - [anon_sym_enum] = ACTIONS(1987), - [anon_sym_fn] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_impl] = ACTIONS(1987), - [anon_sym_let] = ACTIONS(1987), - [anon_sym_loop] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_mod] = ACTIONS(1987), - [anon_sym_pub] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_static] = ACTIONS(1987), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_trait] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_union] = ACTIONS(1987), - [anon_sym_unsafe] = ACTIONS(1987), - [anon_sym_use] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_extern] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_yield] = ACTIONS(1987), - [anon_sym_move] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1987), - [sym_integer_literal] = ACTIONS(1985), - [aux_sym_string_literal_token1] = ACTIONS(1985), - [sym_char_literal] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1987), - [sym_super] = ACTIONS(1987), - [sym_crate] = ACTIONS(1987), - [sym_metavariable] = ACTIONS(1985), - [sym_raw_string_literal] = ACTIONS(1985), - [sym_float_literal] = ACTIONS(1985), - [sym_block_comment] = ACTIONS(3), - }, - [528] = { - [ts_builtin_sym_end] = ACTIONS(1989), - [sym_identifier] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_macro_rules_BANG] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_u8] = ACTIONS(1991), - [anon_sym_i8] = ACTIONS(1991), - [anon_sym_u16] = ACTIONS(1991), - [anon_sym_i16] = ACTIONS(1991), - [anon_sym_u32] = ACTIONS(1991), - [anon_sym_i32] = ACTIONS(1991), - [anon_sym_u64] = ACTIONS(1991), - [anon_sym_i64] = ACTIONS(1991), - [anon_sym_u128] = ACTIONS(1991), - [anon_sym_i128] = ACTIONS(1991), - [anon_sym_isize] = ACTIONS(1991), - [anon_sym_usize] = ACTIONS(1991), - [anon_sym_f32] = ACTIONS(1991), - [anon_sym_f64] = ACTIONS(1991), - [anon_sym_bool] = ACTIONS(1991), - [anon_sym_str] = ACTIONS(1991), - [anon_sym_char] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1989), - [anon_sym_COLON_COLON] = ACTIONS(1989), - [anon_sym_BANG] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SQUOTE] = ACTIONS(1991), - [anon_sym_async] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_default] = ACTIONS(1991), - [anon_sym_enum] = ACTIONS(1991), - [anon_sym_fn] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_impl] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_mod] = ACTIONS(1991), - [anon_sym_pub] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_static] = ACTIONS(1991), - [anon_sym_struct] = ACTIONS(1991), - [anon_sym_trait] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_union] = ACTIONS(1991), - [anon_sym_unsafe] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_yield] = ACTIONS(1991), - [anon_sym_move] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [sym_integer_literal] = ACTIONS(1989), - [aux_sym_string_literal_token1] = ACTIONS(1989), - [sym_char_literal] = ACTIONS(1989), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1991), - [sym_super] = ACTIONS(1991), - [sym_crate] = ACTIONS(1991), - [sym_metavariable] = ACTIONS(1989), - [sym_raw_string_literal] = ACTIONS(1989), - [sym_float_literal] = ACTIONS(1989), - [sym_block_comment] = ACTIONS(3), - }, - [529] = { - [ts_builtin_sym_end] = ACTIONS(1993), - [sym_identifier] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1993), - [anon_sym_macro_rules_BANG] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1993), - [anon_sym_u8] = ACTIONS(1995), - [anon_sym_i8] = ACTIONS(1995), - [anon_sym_u16] = ACTIONS(1995), - [anon_sym_i16] = ACTIONS(1995), - [anon_sym_u32] = ACTIONS(1995), - [anon_sym_i32] = ACTIONS(1995), - [anon_sym_u64] = ACTIONS(1995), - [anon_sym_i64] = ACTIONS(1995), - [anon_sym_u128] = ACTIONS(1995), - [anon_sym_i128] = ACTIONS(1995), - [anon_sym_isize] = ACTIONS(1995), - [anon_sym_usize] = ACTIONS(1995), - [anon_sym_f32] = ACTIONS(1995), - [anon_sym_f64] = ACTIONS(1995), - [anon_sym_bool] = ACTIONS(1995), - [anon_sym_str] = ACTIONS(1995), - [anon_sym_char] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_COLON_COLON] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PIPE] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_default] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_fn] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_impl] = ACTIONS(1995), - [anon_sym_let] = ACTIONS(1995), - [anon_sym_loop] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_mod] = ACTIONS(1995), - [anon_sym_pub] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_struct] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_union] = ACTIONS(1995), - [anon_sym_unsafe] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_extern] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_move] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [sym_integer_literal] = ACTIONS(1993), - [aux_sym_string_literal_token1] = ACTIONS(1993), - [sym_char_literal] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1995), - [sym_super] = ACTIONS(1995), - [sym_crate] = ACTIONS(1995), - [sym_metavariable] = ACTIONS(1993), - [sym_raw_string_literal] = ACTIONS(1993), - [sym_float_literal] = ACTIONS(1993), - [sym_block_comment] = ACTIONS(3), - }, - [530] = { - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_identifier] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_macro_rules_BANG] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_fn] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_impl] = ACTIONS(1999), - [anon_sym_let] = ACTIONS(1999), - [anon_sym_loop] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_mod] = ACTIONS(1999), - [anon_sym_pub] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_union] = ACTIONS(1999), - [anon_sym_unsafe] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_move] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [sym_integer_literal] = ACTIONS(1997), - [aux_sym_string_literal_token1] = ACTIONS(1997), - [sym_char_literal] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1999), - [sym_super] = ACTIONS(1999), - [sym_crate] = ACTIONS(1999), - [sym_metavariable] = ACTIONS(1997), - [sym_raw_string_literal] = ACTIONS(1997), - [sym_float_literal] = ACTIONS(1997), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_macro_rules_BANG] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(2001), - [anon_sym_u8] = ACTIONS(2003), - [anon_sym_i8] = ACTIONS(2003), - [anon_sym_u16] = ACTIONS(2003), - [anon_sym_i16] = ACTIONS(2003), - [anon_sym_u32] = ACTIONS(2003), - [anon_sym_i32] = ACTIONS(2003), - [anon_sym_u64] = ACTIONS(2003), - [anon_sym_i64] = ACTIONS(2003), - [anon_sym_u128] = ACTIONS(2003), - [anon_sym_i128] = ACTIONS(2003), - [anon_sym_isize] = ACTIONS(2003), - [anon_sym_usize] = ACTIONS(2003), - [anon_sym_f32] = ACTIONS(2003), - [anon_sym_f64] = ACTIONS(2003), - [anon_sym_bool] = ACTIONS(2003), - [anon_sym_str] = ACTIONS(2003), - [anon_sym_char] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_COLON_COLON] = ACTIONS(2001), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(2001), - [anon_sym_LT] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(2001), - [anon_sym_SQUOTE] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_default] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_fn] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_impl] = ACTIONS(2003), - [anon_sym_let] = ACTIONS(2003), - [anon_sym_loop] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_mod] = ACTIONS(2003), - [anon_sym_pub] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_union] = ACTIONS(2003), - [anon_sym_unsafe] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_extern] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_move] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [sym_integer_literal] = ACTIONS(2001), - [aux_sym_string_literal_token1] = ACTIONS(2001), - [sym_char_literal] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2003), - [sym_super] = ACTIONS(2003), - [sym_crate] = ACTIONS(2003), - [sym_metavariable] = ACTIONS(2001), - [sym_raw_string_literal] = ACTIONS(2001), - [sym_float_literal] = ACTIONS(2001), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_macro_rules_BANG] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_u8] = ACTIONS(2007), - [anon_sym_i8] = ACTIONS(2007), - [anon_sym_u16] = ACTIONS(2007), - [anon_sym_i16] = ACTIONS(2007), - [anon_sym_u32] = ACTIONS(2007), - [anon_sym_i32] = ACTIONS(2007), - [anon_sym_u64] = ACTIONS(2007), - [anon_sym_i64] = ACTIONS(2007), - [anon_sym_u128] = ACTIONS(2007), - [anon_sym_i128] = ACTIONS(2007), - [anon_sym_isize] = ACTIONS(2007), - [anon_sym_usize] = ACTIONS(2007), - [anon_sym_f32] = ACTIONS(2007), - [anon_sym_f64] = ACTIONS(2007), - [anon_sym_bool] = ACTIONS(2007), - [anon_sym_str] = ACTIONS(2007), - [anon_sym_char] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_COLON_COLON] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_fn] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_impl] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_mod] = ACTIONS(2007), - [anon_sym_pub] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_unsafe] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_move] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [sym_integer_literal] = ACTIONS(2005), - [aux_sym_string_literal_token1] = ACTIONS(2005), - [sym_char_literal] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2007), - [sym_super] = ACTIONS(2007), - [sym_crate] = ACTIONS(2007), - [sym_metavariable] = ACTIONS(2005), - [sym_raw_string_literal] = ACTIONS(2005), - [sym_float_literal] = ACTIONS(2005), - [sym_block_comment] = ACTIONS(3), - }, - [533] = { - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_macro_rules_BANG] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2009), - [anon_sym_u8] = ACTIONS(2011), - [anon_sym_i8] = ACTIONS(2011), - [anon_sym_u16] = ACTIONS(2011), - [anon_sym_i16] = ACTIONS(2011), - [anon_sym_u32] = ACTIONS(2011), - [anon_sym_i32] = ACTIONS(2011), - [anon_sym_u64] = ACTIONS(2011), - [anon_sym_i64] = ACTIONS(2011), - [anon_sym_u128] = ACTIONS(2011), - [anon_sym_i128] = ACTIONS(2011), - [anon_sym_isize] = ACTIONS(2011), - [anon_sym_usize] = ACTIONS(2011), - [anon_sym_f32] = ACTIONS(2011), - [anon_sym_f64] = ACTIONS(2011), - [anon_sym_bool] = ACTIONS(2011), - [anon_sym_str] = ACTIONS(2011), - [anon_sym_char] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_COLON_COLON] = ACTIONS(2009), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2011), - [anon_sym_async] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_default] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_impl] = ACTIONS(2011), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_loop] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_mod] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_static] = ACTIONS(2011), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_trait] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_use] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2011), - [anon_sym_extern] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_yield] = ACTIONS(2011), - [anon_sym_move] = ACTIONS(2011), - [anon_sym_try] = ACTIONS(2011), - [sym_integer_literal] = ACTIONS(2009), - [aux_sym_string_literal_token1] = ACTIONS(2009), - [sym_char_literal] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2011), - [sym_super] = ACTIONS(2011), - [sym_crate] = ACTIONS(2011), - [sym_metavariable] = ACTIONS(2009), - [sym_raw_string_literal] = ACTIONS(2009), - [sym_float_literal] = ACTIONS(2009), - [sym_block_comment] = ACTIONS(3), - }, - [534] = { - [ts_builtin_sym_end] = ACTIONS(2013), - [sym_identifier] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_macro_rules_BANG] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_u8] = ACTIONS(2015), - [anon_sym_i8] = ACTIONS(2015), - [anon_sym_u16] = ACTIONS(2015), - [anon_sym_i16] = ACTIONS(2015), - [anon_sym_u32] = ACTIONS(2015), - [anon_sym_i32] = ACTIONS(2015), - [anon_sym_u64] = ACTIONS(2015), - [anon_sym_i64] = ACTIONS(2015), - [anon_sym_u128] = ACTIONS(2015), - [anon_sym_i128] = ACTIONS(2015), - [anon_sym_isize] = ACTIONS(2015), - [anon_sym_usize] = ACTIONS(2015), - [anon_sym_f32] = ACTIONS(2015), - [anon_sym_f64] = ACTIONS(2015), - [anon_sym_bool] = ACTIONS(2015), - [anon_sym_str] = ACTIONS(2015), - [anon_sym_char] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_COLON_COLON] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_async] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_default] = ACTIONS(2015), - [anon_sym_enum] = ACTIONS(2015), - [anon_sym_fn] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_impl] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_mod] = ACTIONS(2015), - [anon_sym_pub] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2015), - [anon_sym_trait] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2015), - [anon_sym_union] = ACTIONS(2015), - [anon_sym_unsafe] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2015), - [anon_sym_move] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [sym_integer_literal] = ACTIONS(2013), - [aux_sym_string_literal_token1] = ACTIONS(2013), - [sym_char_literal] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2015), - [sym_super] = ACTIONS(2015), - [sym_crate] = ACTIONS(2015), - [sym_metavariable] = ACTIONS(2013), - [sym_raw_string_literal] = ACTIONS(2013), - [sym_float_literal] = ACTIONS(2013), - [sym_block_comment] = ACTIONS(3), - }, - [535] = { - [ts_builtin_sym_end] = ACTIONS(874), - [sym_identifier] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_macro_rules_BANG] = ACTIONS(874), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_u8] = ACTIONS(876), - [anon_sym_i8] = ACTIONS(876), - [anon_sym_u16] = ACTIONS(876), - [anon_sym_i16] = ACTIONS(876), - [anon_sym_u32] = ACTIONS(876), - [anon_sym_i32] = ACTIONS(876), - [anon_sym_u64] = ACTIONS(876), - [anon_sym_i64] = ACTIONS(876), - [anon_sym_u128] = ACTIONS(876), - [anon_sym_i128] = ACTIONS(876), - [anon_sym_isize] = ACTIONS(876), - [anon_sym_usize] = ACTIONS(876), - [anon_sym_f32] = ACTIONS(876), - [anon_sym_f64] = ACTIONS(876), - [anon_sym_bool] = ACTIONS(876), - [anon_sym_str] = ACTIONS(876), - [anon_sym_char] = ACTIONS(876), - [anon_sym_DASH] = ACTIONS(874), - [anon_sym_COLON_COLON] = ACTIONS(874), - [anon_sym_BANG] = ACTIONS(874), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [anon_sym_async] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_const] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_default] = ACTIONS(876), - [anon_sym_enum] = ACTIONS(876), - [anon_sym_fn] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_impl] = ACTIONS(876), - [anon_sym_let] = ACTIONS(876), - [anon_sym_loop] = ACTIONS(876), - [anon_sym_match] = ACTIONS(876), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_pub] = ACTIONS(876), - [anon_sym_return] = ACTIONS(876), - [anon_sym_static] = ACTIONS(876), - [anon_sym_struct] = ACTIONS(876), - [anon_sym_trait] = ACTIONS(876), - [anon_sym_type] = ACTIONS(876), - [anon_sym_union] = ACTIONS(876), - [anon_sym_unsafe] = ACTIONS(876), - [anon_sym_use] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_extern] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(874), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_move] = ACTIONS(876), - [anon_sym_try] = ACTIONS(876), - [sym_integer_literal] = ACTIONS(874), - [aux_sym_string_literal_token1] = ACTIONS(874), - [sym_char_literal] = ACTIONS(874), - [anon_sym_true] = ACTIONS(876), - [anon_sym_false] = ACTIONS(876), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(874), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), - [sym_block_comment] = ACTIONS(3), - }, - [536] = { - [ts_builtin_sym_end] = ACTIONS(2017), - [sym_identifier] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_macro_rules_BANG] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2017), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_COLON_COLON] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2019), - [anon_sym_move] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(2017), - [aux_sym_string_literal_token1] = ACTIONS(2017), - [sym_char_literal] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2017), - [sym_raw_string_literal] = ACTIONS(2017), - [sym_float_literal] = ACTIONS(2017), - [sym_block_comment] = ACTIONS(3), - }, - [537] = { - [ts_builtin_sym_end] = ACTIONS(2021), - [sym_identifier] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_macro_rules_BANG] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_u8] = ACTIONS(2023), - [anon_sym_i8] = ACTIONS(2023), - [anon_sym_u16] = ACTIONS(2023), - [anon_sym_i16] = ACTIONS(2023), - [anon_sym_u32] = ACTIONS(2023), - [anon_sym_i32] = ACTIONS(2023), - [anon_sym_u64] = ACTIONS(2023), - [anon_sym_i64] = ACTIONS(2023), - [anon_sym_u128] = ACTIONS(2023), - [anon_sym_i128] = ACTIONS(2023), - [anon_sym_isize] = ACTIONS(2023), - [anon_sym_usize] = ACTIONS(2023), - [anon_sym_f32] = ACTIONS(2023), - [anon_sym_f64] = ACTIONS(2023), - [anon_sym_bool] = ACTIONS(2023), - [anon_sym_str] = ACTIONS(2023), - [anon_sym_char] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_COLON_COLON] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(2023), - [anon_sym_async] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_default] = ACTIONS(2023), - [anon_sym_enum] = ACTIONS(2023), - [anon_sym_fn] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_impl] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_mod] = ACTIONS(2023), - [anon_sym_pub] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_static] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [anon_sym_trait] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2023), - [anon_sym_union] = ACTIONS(2023), - [anon_sym_unsafe] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2023), - [anon_sym_move] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2023), - [sym_integer_literal] = ACTIONS(2021), - [aux_sym_string_literal_token1] = ACTIONS(2021), - [sym_char_literal] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2023), - [sym_super] = ACTIONS(2023), - [sym_crate] = ACTIONS(2023), - [sym_metavariable] = ACTIONS(2021), - [sym_raw_string_literal] = ACTIONS(2021), - [sym_float_literal] = ACTIONS(2021), - [sym_block_comment] = ACTIONS(3), - }, - [538] = { - [ts_builtin_sym_end] = ACTIONS(2025), - [sym_identifier] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_macro_rules_BANG] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2025), - [anon_sym_u8] = ACTIONS(2027), - [anon_sym_i8] = ACTIONS(2027), - [anon_sym_u16] = ACTIONS(2027), - [anon_sym_i16] = ACTIONS(2027), - [anon_sym_u32] = ACTIONS(2027), - [anon_sym_i32] = ACTIONS(2027), - [anon_sym_u64] = ACTIONS(2027), - [anon_sym_i64] = ACTIONS(2027), - [anon_sym_u128] = ACTIONS(2027), - [anon_sym_i128] = ACTIONS(2027), - [anon_sym_isize] = ACTIONS(2027), - [anon_sym_usize] = ACTIONS(2027), - [anon_sym_f32] = ACTIONS(2027), - [anon_sym_f64] = ACTIONS(2027), - [anon_sym_bool] = ACTIONS(2027), - [anon_sym_str] = ACTIONS(2027), - [anon_sym_char] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_COLON_COLON] = ACTIONS(2025), - [anon_sym_BANG] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SQUOTE] = ACTIONS(2027), - [anon_sym_async] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_default] = ACTIONS(2027), - [anon_sym_enum] = ACTIONS(2027), - [anon_sym_fn] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_impl] = ACTIONS(2027), - [anon_sym_let] = ACTIONS(2027), - [anon_sym_loop] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_mod] = ACTIONS(2027), - [anon_sym_pub] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_static] = ACTIONS(2027), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_trait] = ACTIONS(2027), - [anon_sym_type] = ACTIONS(2027), - [anon_sym_union] = ACTIONS(2027), - [anon_sym_unsafe] = ACTIONS(2027), - [anon_sym_use] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_yield] = ACTIONS(2027), - [anon_sym_move] = ACTIONS(2027), - [anon_sym_try] = ACTIONS(2027), - [sym_integer_literal] = ACTIONS(2025), - [aux_sym_string_literal_token1] = ACTIONS(2025), - [sym_char_literal] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2027), - [anon_sym_false] = ACTIONS(2027), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2027), - [sym_super] = ACTIONS(2027), - [sym_crate] = ACTIONS(2027), - [sym_metavariable] = ACTIONS(2025), - [sym_raw_string_literal] = ACTIONS(2025), - [sym_float_literal] = ACTIONS(2025), - [sym_block_comment] = ACTIONS(3), - }, - [539] = { - [ts_builtin_sym_end] = ACTIONS(880), - [sym_identifier] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(880), - [anon_sym_macro_rules_BANG] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_u8] = ACTIONS(882), - [anon_sym_i8] = ACTIONS(882), - [anon_sym_u16] = ACTIONS(882), - [anon_sym_i16] = ACTIONS(882), - [anon_sym_u32] = ACTIONS(882), - [anon_sym_i32] = ACTIONS(882), - [anon_sym_u64] = ACTIONS(882), - [anon_sym_i64] = ACTIONS(882), - [anon_sym_u128] = ACTIONS(882), - [anon_sym_i128] = ACTIONS(882), - [anon_sym_isize] = ACTIONS(882), - [anon_sym_usize] = ACTIONS(882), - [anon_sym_f32] = ACTIONS(882), - [anon_sym_f64] = ACTIONS(882), - [anon_sym_bool] = ACTIONS(882), - [anon_sym_str] = ACTIONS(882), - [anon_sym_char] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(880), - [anon_sym_POUND] = ACTIONS(880), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(882), - [anon_sym_async] = ACTIONS(882), - [anon_sym_break] = ACTIONS(882), - [anon_sym_const] = ACTIONS(882), - [anon_sym_continue] = ACTIONS(882), - [anon_sym_default] = ACTIONS(882), - [anon_sym_enum] = ACTIONS(882), - [anon_sym_fn] = ACTIONS(882), - [anon_sym_for] = ACTIONS(882), - [anon_sym_if] = ACTIONS(882), - [anon_sym_impl] = ACTIONS(882), - [anon_sym_let] = ACTIONS(882), - [anon_sym_loop] = ACTIONS(882), - [anon_sym_match] = ACTIONS(882), - [anon_sym_mod] = ACTIONS(882), - [anon_sym_pub] = ACTIONS(882), - [anon_sym_return] = ACTIONS(882), - [anon_sym_static] = ACTIONS(882), - [anon_sym_struct] = ACTIONS(882), - [anon_sym_trait] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_union] = ACTIONS(882), - [anon_sym_unsafe] = ACTIONS(882), - [anon_sym_use] = ACTIONS(882), - [anon_sym_while] = ACTIONS(882), - [anon_sym_extern] = ACTIONS(882), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(882), - [anon_sym_move] = ACTIONS(882), - [anon_sym_try] = ACTIONS(882), - [sym_integer_literal] = ACTIONS(880), - [aux_sym_string_literal_token1] = ACTIONS(880), - [sym_char_literal] = ACTIONS(880), - [anon_sym_true] = ACTIONS(882), - [anon_sym_false] = ACTIONS(882), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(882), - [sym_super] = ACTIONS(882), - [sym_crate] = ACTIONS(882), - [sym_metavariable] = ACTIONS(880), - [sym_raw_string_literal] = ACTIONS(880), - [sym_float_literal] = ACTIONS(880), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [ts_builtin_sym_end] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_macro_rules_BANG] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2031), - [anon_sym_i8] = ACTIONS(2031), - [anon_sym_u16] = ACTIONS(2031), - [anon_sym_i16] = ACTIONS(2031), - [anon_sym_u32] = ACTIONS(2031), - [anon_sym_i32] = ACTIONS(2031), - [anon_sym_u64] = ACTIONS(2031), - [anon_sym_i64] = ACTIONS(2031), - [anon_sym_u128] = ACTIONS(2031), - [anon_sym_i128] = ACTIONS(2031), - [anon_sym_isize] = ACTIONS(2031), - [anon_sym_usize] = ACTIONS(2031), - [anon_sym_f32] = ACTIONS(2031), - [anon_sym_f64] = ACTIONS(2031), - [anon_sym_bool] = ACTIONS(2031), - [anon_sym_str] = ACTIONS(2031), - [anon_sym_char] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_COLON_COLON] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_default] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_fn] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_impl] = ACTIONS(2031), - [anon_sym_let] = ACTIONS(2031), - [anon_sym_loop] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2031), - [anon_sym_mod] = ACTIONS(2031), - [anon_sym_pub] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_union] = ACTIONS(2031), - [anon_sym_unsafe] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2029), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_move] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [sym_integer_literal] = ACTIONS(2029), - [aux_sym_string_literal_token1] = ACTIONS(2029), - [sym_char_literal] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2031), - [sym_super] = ACTIONS(2031), - [sym_crate] = ACTIONS(2031), - [sym_metavariable] = ACTIONS(2029), - [sym_raw_string_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), - [sym_block_comment] = ACTIONS(3), + [493] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3306), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(493), + [sym_block_comment] = STATE(493), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, - [541] = { - [ts_builtin_sym_end] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_macro_rules_BANG] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_u8] = ACTIONS(2035), - [anon_sym_i8] = ACTIONS(2035), - [anon_sym_u16] = ACTIONS(2035), - [anon_sym_i16] = ACTIONS(2035), - [anon_sym_u32] = ACTIONS(2035), - [anon_sym_i32] = ACTIONS(2035), - [anon_sym_u64] = ACTIONS(2035), - [anon_sym_i64] = ACTIONS(2035), - [anon_sym_u128] = ACTIONS(2035), - [anon_sym_i128] = ACTIONS(2035), - [anon_sym_isize] = ACTIONS(2035), - [anon_sym_usize] = ACTIONS(2035), - [anon_sym_f32] = ACTIONS(2035), - [anon_sym_f64] = ACTIONS(2035), - [anon_sym_bool] = ACTIONS(2035), - [anon_sym_str] = ACTIONS(2035), - [anon_sym_char] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_COLON_COLON] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_SQUOTE] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_default] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_fn] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_impl] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_mod] = ACTIONS(2035), - [anon_sym_pub] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsafe] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_move] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [sym_integer_literal] = ACTIONS(2033), - [aux_sym_string_literal_token1] = ACTIONS(2033), - [sym_char_literal] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2035), - [sym_super] = ACTIONS(2035), - [sym_crate] = ACTIONS(2035), - [sym_metavariable] = ACTIONS(2033), - [sym_raw_string_literal] = ACTIONS(2033), - [sym_float_literal] = ACTIONS(2033), - [sym_block_comment] = ACTIONS(3), + [494] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2850), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2844), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(3065), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(3065), + [sym__literal] = STATE(3065), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [542] = { - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_macro_rules_BANG] = ACTIONS(2037), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_u8] = ACTIONS(2039), - [anon_sym_i8] = ACTIONS(2039), - [anon_sym_u16] = ACTIONS(2039), - [anon_sym_i16] = ACTIONS(2039), - [anon_sym_u32] = ACTIONS(2039), - [anon_sym_i32] = ACTIONS(2039), - [anon_sym_u64] = ACTIONS(2039), - [anon_sym_i64] = ACTIONS(2039), - [anon_sym_u128] = ACTIONS(2039), - [anon_sym_i128] = ACTIONS(2039), - [anon_sym_isize] = ACTIONS(2039), - [anon_sym_usize] = ACTIONS(2039), - [anon_sym_f32] = ACTIONS(2039), - [anon_sym_f64] = ACTIONS(2039), - [anon_sym_bool] = ACTIONS(2039), - [anon_sym_str] = ACTIONS(2039), - [anon_sym_char] = ACTIONS(2039), - [anon_sym_DASH] = ACTIONS(2037), - [anon_sym_COLON_COLON] = ACTIONS(2037), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_POUND] = ACTIONS(2037), - [anon_sym_LT] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_SQUOTE] = ACTIONS(2039), - [anon_sym_async] = ACTIONS(2039), - [anon_sym_break] = ACTIONS(2039), - [anon_sym_const] = ACTIONS(2039), - [anon_sym_continue] = ACTIONS(2039), - [anon_sym_default] = ACTIONS(2039), - [anon_sym_enum] = ACTIONS(2039), - [anon_sym_fn] = ACTIONS(2039), - [anon_sym_for] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2039), - [anon_sym_impl] = ACTIONS(2039), - [anon_sym_let] = ACTIONS(2039), - [anon_sym_loop] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2039), - [anon_sym_mod] = ACTIONS(2039), - [anon_sym_pub] = ACTIONS(2039), - [anon_sym_return] = ACTIONS(2039), - [anon_sym_static] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2039), - [anon_sym_trait] = ACTIONS(2039), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_union] = ACTIONS(2039), - [anon_sym_unsafe] = ACTIONS(2039), - [anon_sym_use] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [anon_sym_extern] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_yield] = ACTIONS(2039), - [anon_sym_move] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2039), - [sym_integer_literal] = ACTIONS(2037), - [aux_sym_string_literal_token1] = ACTIONS(2037), - [sym_char_literal] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = ACTIONS(2039), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2039), - [sym_super] = ACTIONS(2039), - [sym_crate] = ACTIONS(2039), - [sym_metavariable] = ACTIONS(2037), - [sym_raw_string_literal] = ACTIONS(2037), - [sym_float_literal] = ACTIONS(2037), - [sym_block_comment] = ACTIONS(3), + [495] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_last_match_arm] = STATE(3349), + [sym_match_pattern] = STATE(3242), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [aux_sym_enum_variant_list_repeat1] = STATE(759), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, - [543] = { - [ts_builtin_sym_end] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_macro_rules_BANG] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u128] = ACTIONS(2043), - [anon_sym_i128] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_str] = ACTIONS(2043), - [anon_sym_char] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_default] = ACTIONS(2043), - [anon_sym_enum] = ACTIONS(2043), - [anon_sym_fn] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_impl] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_mod] = ACTIONS(2043), - [anon_sym_pub] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_trait] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2043), - [anon_sym_move] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [sym_integer_literal] = ACTIONS(2041), - [aux_sym_string_literal_token1] = ACTIONS(2041), - [sym_char_literal] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2043), - [sym_super] = ACTIONS(2043), - [sym_crate] = ACTIONS(2043), - [sym_metavariable] = ACTIONS(2041), - [sym_raw_string_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), - [sym_block_comment] = ACTIONS(3), + [496] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2850), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2844), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(3065), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(3065), + [sym__literal] = STATE(3065), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [544] = { - [ts_builtin_sym_end] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_macro_rules_BANG] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_u8] = ACTIONS(2047), - [anon_sym_i8] = ACTIONS(2047), - [anon_sym_u16] = ACTIONS(2047), - [anon_sym_i16] = ACTIONS(2047), - [anon_sym_u32] = ACTIONS(2047), - [anon_sym_i32] = ACTIONS(2047), - [anon_sym_u64] = ACTIONS(2047), - [anon_sym_i64] = ACTIONS(2047), - [anon_sym_u128] = ACTIONS(2047), - [anon_sym_i128] = ACTIONS(2047), - [anon_sym_isize] = ACTIONS(2047), - [anon_sym_usize] = ACTIONS(2047), - [anon_sym_f32] = ACTIONS(2047), - [anon_sym_f64] = ACTIONS(2047), - [anon_sym_bool] = ACTIONS(2047), - [anon_sym_str] = ACTIONS(2047), - [anon_sym_char] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_COLON_COLON] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_async] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_enum] = ACTIONS(2047), - [anon_sym_fn] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_impl] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_mod] = ACTIONS(2047), - [anon_sym_pub] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_static] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2047), - [anon_sym_trait] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2047), - [anon_sym_unsafe] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2047), - [anon_sym_move] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2047), - [sym_integer_literal] = ACTIONS(2045), - [aux_sym_string_literal_token1] = ACTIONS(2045), - [sym_char_literal] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2047), - [sym_super] = ACTIONS(2047), - [sym_crate] = ACTIONS(2047), - [sym_metavariable] = ACTIONS(2045), - [sym_raw_string_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_block_comment] = ACTIONS(3), + [497] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2850), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2844), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(3065), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(3065), + [sym__literal] = STATE(3065), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1632), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [545] = { - [ts_builtin_sym_end] = ACTIONS(2049), - [sym_identifier] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_macro_rules_BANG] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_u8] = ACTIONS(2051), - [anon_sym_i8] = ACTIONS(2051), - [anon_sym_u16] = ACTIONS(2051), - [anon_sym_i16] = ACTIONS(2051), - [anon_sym_u32] = ACTIONS(2051), - [anon_sym_i32] = ACTIONS(2051), - [anon_sym_u64] = ACTIONS(2051), - [anon_sym_i64] = ACTIONS(2051), - [anon_sym_u128] = ACTIONS(2051), - [anon_sym_i128] = ACTIONS(2051), - [anon_sym_isize] = ACTIONS(2051), - [anon_sym_usize] = ACTIONS(2051), - [anon_sym_f32] = ACTIONS(2051), - [anon_sym_f64] = ACTIONS(2051), - [anon_sym_bool] = ACTIONS(2051), - [anon_sym_str] = ACTIONS(2051), - [anon_sym_char] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_COLON_COLON] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2051), - [anon_sym_async] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_default] = ACTIONS(2051), - [anon_sym_enum] = ACTIONS(2051), - [anon_sym_fn] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_impl] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_mod] = ACTIONS(2051), - [anon_sym_pub] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_static] = ACTIONS(2051), - [anon_sym_struct] = ACTIONS(2051), - [anon_sym_trait] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2051), - [anon_sym_union] = ACTIONS(2051), - [anon_sym_unsafe] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2051), - [anon_sym_move] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2051), - [sym_integer_literal] = ACTIONS(2049), - [aux_sym_string_literal_token1] = ACTIONS(2049), - [sym_char_literal] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2051), - [sym_super] = ACTIONS(2051), - [sym_crate] = ACTIONS(2051), - [sym_metavariable] = ACTIONS(2049), - [sym_raw_string_literal] = ACTIONS(2049), - [sym_float_literal] = ACTIONS(2049), - [sym_block_comment] = ACTIONS(3), + [498] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2509), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(2858), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(2858), + [sym__literal] = STATE(2858), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [546] = { - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_macro_rules_BANG] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_u8] = ACTIONS(2055), - [anon_sym_i8] = ACTIONS(2055), - [anon_sym_u16] = ACTIONS(2055), - [anon_sym_i16] = ACTIONS(2055), - [anon_sym_u32] = ACTIONS(2055), - [anon_sym_i32] = ACTIONS(2055), - [anon_sym_u64] = ACTIONS(2055), - [anon_sym_i64] = ACTIONS(2055), - [anon_sym_u128] = ACTIONS(2055), - [anon_sym_i128] = ACTIONS(2055), - [anon_sym_isize] = ACTIONS(2055), - [anon_sym_usize] = ACTIONS(2055), - [anon_sym_f32] = ACTIONS(2055), - [anon_sym_f64] = ACTIONS(2055), - [anon_sym_bool] = ACTIONS(2055), - [anon_sym_str] = ACTIONS(2055), - [anon_sym_char] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_impl] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_mod] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_trait] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_move] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [sym_integer_literal] = ACTIONS(2053), - [aux_sym_string_literal_token1] = ACTIONS(2053), - [sym_char_literal] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_crate] = ACTIONS(2055), - [sym_metavariable] = ACTIONS(2053), - [sym_raw_string_literal] = ACTIONS(2053), - [sym_float_literal] = ACTIONS(2053), - [sym_block_comment] = ACTIONS(3), + [499] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_arm] = STATE(1078), + [sym_match_pattern] = STATE(3322), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), + [aux_sym_enum_variant_list_repeat1] = STATE(674), + [aux_sym_match_block_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_u8] = ACTIONS(1643), + [anon_sym_i8] = ACTIONS(1643), + [anon_sym_u16] = ACTIONS(1643), + [anon_sym_i16] = ACTIONS(1643), + [anon_sym_u32] = ACTIONS(1643), + [anon_sym_i32] = ACTIONS(1643), + [anon_sym_u64] = ACTIONS(1643), + [anon_sym_i64] = ACTIONS(1643), + [anon_sym_u128] = ACTIONS(1643), + [anon_sym_i128] = ACTIONS(1643), + [anon_sym_isize] = ACTIONS(1643), + [anon_sym_usize] = ACTIONS(1643), + [anon_sym_f32] = ACTIONS(1643), + [anon_sym_f64] = ACTIONS(1643), + [anon_sym_bool] = ACTIONS(1643), + [anon_sym_str] = ACTIONS(1643), + [anon_sym_char] = ACTIONS(1643), + [anon_sym__] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(1667), + [anon_sym_default] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1670), + [anon_sym_ref] = ACTIONS(1676), + [sym_mutable_specifier] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1682), + [anon_sym_move] = ACTIONS(1685), + [sym_integer_literal] = ACTIONS(1688), + [aux_sym_string_literal_token1] = ACTIONS(1691), + [sym_char_literal] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1700), + [sym_raw_string_literal] = ACTIONS(1688), + [sym_float_literal] = ACTIONS(1688), }, - [547] = { - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_macro_rules_BANG] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_u8] = ACTIONS(2059), - [anon_sym_i8] = ACTIONS(2059), - [anon_sym_u16] = ACTIONS(2059), - [anon_sym_i16] = ACTIONS(2059), - [anon_sym_u32] = ACTIONS(2059), - [anon_sym_i32] = ACTIONS(2059), - [anon_sym_u64] = ACTIONS(2059), - [anon_sym_i64] = ACTIONS(2059), - [anon_sym_u128] = ACTIONS(2059), - [anon_sym_i128] = ACTIONS(2059), - [anon_sym_isize] = ACTIONS(2059), - [anon_sym_usize] = ACTIONS(2059), - [anon_sym_f32] = ACTIONS(2059), - [anon_sym_f64] = ACTIONS(2059), - [anon_sym_bool] = ACTIONS(2059), - [anon_sym_str] = ACTIONS(2059), - [anon_sym_char] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_COLON_COLON] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_async] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_default] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_impl] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_mod] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_static] = ACTIONS(2059), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_trait] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2059), - [anon_sym_move] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [sym_integer_literal] = ACTIONS(2057), - [aux_sym_string_literal_token1] = ACTIONS(2057), - [sym_char_literal] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2059), - [anon_sym_false] = ACTIONS(2059), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2059), - [sym_super] = ACTIONS(2059), - [sym_crate] = ACTIONS(2059), - [sym_metavariable] = ACTIONS(2057), - [sym_raw_string_literal] = ACTIONS(2057), - [sym_float_literal] = ACTIONS(2057), - [sym_block_comment] = ACTIONS(3), + [500] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2627), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2625), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(2714), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(2714), + [sym__literal] = STATE(2714), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [548] = { - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_macro_rules_BANG] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2061), - [anon_sym_u8] = ACTIONS(2063), - [anon_sym_i8] = ACTIONS(2063), - [anon_sym_u16] = ACTIONS(2063), - [anon_sym_i16] = ACTIONS(2063), - [anon_sym_u32] = ACTIONS(2063), - [anon_sym_i32] = ACTIONS(2063), - [anon_sym_u64] = ACTIONS(2063), - [anon_sym_i64] = ACTIONS(2063), - [anon_sym_u128] = ACTIONS(2063), - [anon_sym_i128] = ACTIONS(2063), - [anon_sym_isize] = ACTIONS(2063), - [anon_sym_usize] = ACTIONS(2063), - [anon_sym_f32] = ACTIONS(2063), - [anon_sym_f64] = ACTIONS(2063), - [anon_sym_bool] = ACTIONS(2063), - [anon_sym_str] = ACTIONS(2063), - [anon_sym_char] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_BANG] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_default] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2063), - [anon_sym_fn] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_impl] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_mod] = ACTIONS(2063), - [anon_sym_pub] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_static] = ACTIONS(2063), - [anon_sym_struct] = ACTIONS(2063), - [anon_sym_trait] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_union] = ACTIONS(2063), - [anon_sym_unsafe] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(2063), - [anon_sym_move] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(2061), - [aux_sym_string_literal_token1] = ACTIONS(2061), - [sym_char_literal] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2061), - [sym_raw_string_literal] = ACTIONS(2061), - [sym_float_literal] = ACTIONS(2061), - [sym_block_comment] = ACTIONS(3), + [501] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2493), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2494), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(2886), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(2886), + [sym__literal] = STATE(2886), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [549] = { - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2065), - [anon_sym_macro_rules_BANG] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_u8] = ACTIONS(2067), - [anon_sym_i8] = ACTIONS(2067), - [anon_sym_u16] = ACTIONS(2067), - [anon_sym_i16] = ACTIONS(2067), - [anon_sym_u32] = ACTIONS(2067), - [anon_sym_i32] = ACTIONS(2067), - [anon_sym_u64] = ACTIONS(2067), - [anon_sym_i64] = ACTIONS(2067), - [anon_sym_u128] = ACTIONS(2067), - [anon_sym_i128] = ACTIONS(2067), - [anon_sym_isize] = ACTIONS(2067), - [anon_sym_usize] = ACTIONS(2067), - [anon_sym_f32] = ACTIONS(2067), - [anon_sym_f64] = ACTIONS(2067), - [anon_sym_bool] = ACTIONS(2067), - [anon_sym_str] = ACTIONS(2067), - [anon_sym_char] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_COLON_COLON] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_impl] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_mod] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_trait] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_move] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [sym_integer_literal] = ACTIONS(2065), - [aux_sym_string_literal_token1] = ACTIONS(2065), - [sym_char_literal] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), - [sym_metavariable] = ACTIONS(2065), - [sym_raw_string_literal] = ACTIONS(2065), - [sym_float_literal] = ACTIONS(2065), - [sym_block_comment] = ACTIONS(3), + [502] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2850), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2844), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_type_binding] = STATE(3065), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_label] = STATE(3481), + [sym_block] = STATE(3065), + [sym__literal] = STATE(3065), + [sym_string_literal] = STATE(3001), + [sym_boolean_literal] = STATE(3001), + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_integer_literal] = ACTIONS(1618), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1618), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + [sym_raw_string_literal] = ACTIONS(1618), + [sym_float_literal] = ACTIONS(1618), }, - [550] = { - [ts_builtin_sym_end] = ACTIONS(2069), - [sym_identifier] = ACTIONS(2071), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_macro_rules_BANG] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_u8] = ACTIONS(2071), - [anon_sym_i8] = ACTIONS(2071), - [anon_sym_u16] = ACTIONS(2071), - [anon_sym_i16] = ACTIONS(2071), - [anon_sym_u32] = ACTIONS(2071), - [anon_sym_i32] = ACTIONS(2071), - [anon_sym_u64] = ACTIONS(2071), - [anon_sym_i64] = ACTIONS(2071), - [anon_sym_u128] = ACTIONS(2071), - [anon_sym_i128] = ACTIONS(2071), - [anon_sym_isize] = ACTIONS(2071), - [anon_sym_usize] = ACTIONS(2071), - [anon_sym_f32] = ACTIONS(2071), - [anon_sym_f64] = ACTIONS(2071), - [anon_sym_bool] = ACTIONS(2071), - [anon_sym_str] = ACTIONS(2071), - [anon_sym_char] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_COLON_COLON] = ACTIONS(2069), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_impl] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_mod] = ACTIONS(2071), - [anon_sym_pub] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_struct] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_union] = ACTIONS(2071), - [anon_sym_unsafe] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_move] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [sym_integer_literal] = ACTIONS(2069), - [aux_sym_string_literal_token1] = ACTIONS(2069), - [sym_char_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2071), - [sym_super] = ACTIONS(2071), - [sym_crate] = ACTIONS(2071), - [sym_metavariable] = ACTIONS(2069), - [sym_raw_string_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_block_comment] = ACTIONS(3), + [503] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym_identifier] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_u8] = ACTIONS(1705), + [anon_sym_i8] = ACTIONS(1705), + [anon_sym_u16] = ACTIONS(1705), + [anon_sym_i16] = ACTIONS(1705), + [anon_sym_u32] = ACTIONS(1705), + [anon_sym_i32] = ACTIONS(1705), + [anon_sym_u64] = ACTIONS(1705), + [anon_sym_i64] = ACTIONS(1705), + [anon_sym_u128] = ACTIONS(1705), + [anon_sym_i128] = ACTIONS(1705), + [anon_sym_isize] = ACTIONS(1705), + [anon_sym_usize] = ACTIONS(1705), + [anon_sym_f32] = ACTIONS(1705), + [anon_sym_f64] = ACTIONS(1705), + [anon_sym_bool] = ACTIONS(1705), + [anon_sym_str] = ACTIONS(1705), + [anon_sym_char] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_COLON_COLON] = ACTIONS(1703), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1705), + [anon_sym_async] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_default] = ACTIONS(1705), + [anon_sym_enum] = ACTIONS(1705), + [anon_sym_fn] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_impl] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_mod] = ACTIONS(1705), + [anon_sym_pub] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1705), + [anon_sym_trait] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1705), + [anon_sym_union] = ACTIONS(1705), + [anon_sym_unsafe] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_yield] = ACTIONS(1705), + [anon_sym_move] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1703), + [aux_sym_string_literal_token1] = ACTIONS(1703), + [sym_char_literal] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1705), + [sym_super] = ACTIONS(1705), + [sym_crate] = ACTIONS(1705), + [sym_metavariable] = ACTIONS(1703), + [sym_raw_string_literal] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1703), }, - [551] = { - [ts_builtin_sym_end] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_macro_rules_BANG] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2075), - [anon_sym_i8] = ACTIONS(2075), - [anon_sym_u16] = ACTIONS(2075), - [anon_sym_i16] = ACTIONS(2075), - [anon_sym_u32] = ACTIONS(2075), - [anon_sym_i32] = ACTIONS(2075), - [anon_sym_u64] = ACTIONS(2075), - [anon_sym_i64] = ACTIONS(2075), - [anon_sym_u128] = ACTIONS(2075), - [anon_sym_i128] = ACTIONS(2075), - [anon_sym_isize] = ACTIONS(2075), - [anon_sym_usize] = ACTIONS(2075), - [anon_sym_f32] = ACTIONS(2075), - [anon_sym_f64] = ACTIONS(2075), - [anon_sym_bool] = ACTIONS(2075), - [anon_sym_str] = ACTIONS(2075), - [anon_sym_char] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_COLON_COLON] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2075), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_default] = ACTIONS(2075), - [anon_sym_enum] = ACTIONS(2075), - [anon_sym_fn] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_impl] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_mod] = ACTIONS(2075), - [anon_sym_pub] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_static] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(2075), - [anon_sym_trait] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2075), - [anon_sym_union] = ACTIONS(2075), - [anon_sym_unsafe] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2075), - [anon_sym_move] = ACTIONS(2075), - [anon_sym_try] = ACTIONS(2075), - [sym_integer_literal] = ACTIONS(2073), - [aux_sym_string_literal_token1] = ACTIONS(2073), - [sym_char_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2075), - [sym_super] = ACTIONS(2075), - [sym_crate] = ACTIONS(2075), - [sym_metavariable] = ACTIONS(2073), - [sym_raw_string_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), - [sym_block_comment] = ACTIONS(3), + [504] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_macro_rules_BANG] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_u8] = ACTIONS(1709), + [anon_sym_i8] = ACTIONS(1709), + [anon_sym_u16] = ACTIONS(1709), + [anon_sym_i16] = ACTIONS(1709), + [anon_sym_u32] = ACTIONS(1709), + [anon_sym_i32] = ACTIONS(1709), + [anon_sym_u64] = ACTIONS(1709), + [anon_sym_i64] = ACTIONS(1709), + [anon_sym_u128] = ACTIONS(1709), + [anon_sym_i128] = ACTIONS(1709), + [anon_sym_isize] = ACTIONS(1709), + [anon_sym_usize] = ACTIONS(1709), + [anon_sym_f32] = ACTIONS(1709), + [anon_sym_f64] = ACTIONS(1709), + [anon_sym_bool] = ACTIONS(1709), + [anon_sym_str] = ACTIONS(1709), + [anon_sym_char] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1709), + [anon_sym_async] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_default] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_impl] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_mod] = ACTIONS(1709), + [anon_sym_pub] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_struct] = ACTIONS(1709), + [anon_sym_trait] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_union] = ACTIONS(1709), + [anon_sym_unsafe] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_yield] = ACTIONS(1709), + [anon_sym_move] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [sym_integer_literal] = ACTIONS(1707), + [aux_sym_string_literal_token1] = ACTIONS(1707), + [sym_char_literal] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1709), + [sym_super] = ACTIONS(1709), + [sym_crate] = ACTIONS(1709), + [sym_metavariable] = ACTIONS(1707), + [sym_raw_string_literal] = ACTIONS(1707), + [sym_float_literal] = ACTIONS(1707), }, - [552] = { - [ts_builtin_sym_end] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2079), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_macro_rules_BANG] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u128] = ACTIONS(2079), - [anon_sym_i128] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_str] = ACTIONS(2079), - [anon_sym_char] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_POUND] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_impl] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_mod] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_move] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [sym_integer_literal] = ACTIONS(2077), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2079), - [sym_super] = ACTIONS(2079), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(2077), - [sym_raw_string_literal] = ACTIONS(2077), - [sym_float_literal] = ACTIONS(2077), - [sym_block_comment] = ACTIONS(3), + [505] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_macro_rules_BANG] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_u8] = ACTIONS(1713), + [anon_sym_i8] = ACTIONS(1713), + [anon_sym_u16] = ACTIONS(1713), + [anon_sym_i16] = ACTIONS(1713), + [anon_sym_u32] = ACTIONS(1713), + [anon_sym_i32] = ACTIONS(1713), + [anon_sym_u64] = ACTIONS(1713), + [anon_sym_i64] = ACTIONS(1713), + [anon_sym_u128] = ACTIONS(1713), + [anon_sym_i128] = ACTIONS(1713), + [anon_sym_isize] = ACTIONS(1713), + [anon_sym_usize] = ACTIONS(1713), + [anon_sym_f32] = ACTIONS(1713), + [anon_sym_f64] = ACTIONS(1713), + [anon_sym_bool] = ACTIONS(1713), + [anon_sym_str] = ACTIONS(1713), + [anon_sym_char] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_COLON_COLON] = ACTIONS(1711), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_SQUOTE] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_impl] = ACTIONS(1713), + [anon_sym_let] = ACTIONS(1713), + [anon_sym_loop] = ACTIONS(1713), + [anon_sym_match] = ACTIONS(1713), + [anon_sym_mod] = ACTIONS(1713), + [anon_sym_pub] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_trait] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [anon_sym_unsafe] = ACTIONS(1713), + [anon_sym_use] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_extern] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_yield] = ACTIONS(1713), + [anon_sym_move] = ACTIONS(1713), + [anon_sym_try] = ACTIONS(1713), + [sym_integer_literal] = ACTIONS(1711), + [aux_sym_string_literal_token1] = ACTIONS(1711), + [sym_char_literal] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1713), + [sym_super] = ACTIONS(1713), + [sym_crate] = ACTIONS(1713), + [sym_metavariable] = ACTIONS(1711), + [sym_raw_string_literal] = ACTIONS(1711), + [sym_float_literal] = ACTIONS(1711), }, - [553] = { - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_macro_rules_BANG] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_u8] = ACTIONS(2083), - [anon_sym_i8] = ACTIONS(2083), - [anon_sym_u16] = ACTIONS(2083), - [anon_sym_i16] = ACTIONS(2083), - [anon_sym_u32] = ACTIONS(2083), - [anon_sym_i32] = ACTIONS(2083), - [anon_sym_u64] = ACTIONS(2083), - [anon_sym_i64] = ACTIONS(2083), - [anon_sym_u128] = ACTIONS(2083), - [anon_sym_i128] = ACTIONS(2083), - [anon_sym_isize] = ACTIONS(2083), - [anon_sym_usize] = ACTIONS(2083), - [anon_sym_f32] = ACTIONS(2083), - [anon_sym_f64] = ACTIONS(2083), - [anon_sym_bool] = ACTIONS(2083), - [anon_sym_str] = ACTIONS(2083), - [anon_sym_char] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_COLON_COLON] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [anon_sym_fn] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_impl] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_loop] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_mod] = ACTIONS(2083), - [anon_sym_pub] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_trait] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_union] = ACTIONS(2083), - [anon_sym_unsafe] = ACTIONS(2083), - [anon_sym_use] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_extern] = ACTIONS(2083), - [anon_sym_DOT_DOT] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_move] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [sym_integer_literal] = ACTIONS(2081), - [aux_sym_string_literal_token1] = ACTIONS(2081), - [sym_char_literal] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2083), - [anon_sym_false] = ACTIONS(2083), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_crate] = ACTIONS(2083), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2081), - [sym_float_literal] = ACTIONS(2081), - [sym_block_comment] = ACTIONS(3), + [506] = { + [sym_empty_statement] = STATE(1426), + [sym_macro_definition] = STATE(1426), + [sym_attribute_item] = STATE(1426), + [sym_inner_attribute_item] = STATE(1426), + [sym_mod_item] = STATE(1426), + [sym_foreign_mod_item] = STATE(1426), + [sym_struct_item] = STATE(1426), + [sym_union_item] = STATE(1426), + [sym_enum_item] = STATE(1426), + [sym_extern_crate_declaration] = STATE(1426), + [sym_const_item] = STATE(1426), + [sym_static_item] = STATE(1426), + [sym_type_item] = STATE(1426), + [sym_function_item] = STATE(1426), + [sym_function_signature_item] = STATE(1426), + [sym_function_modifiers] = STATE(3492), + [sym_impl_item] = STATE(1426), + [sym_trait_item] = STATE(1426), + [sym_associated_type] = STATE(1426), + [sym_let_declaration] = STATE(1426), + [sym_use_declaration] = STATE(1426), + [sym_extern_modifier] = STATE(2121), + [sym_visibility_modifier] = STATE(1931), + [sym_bracketed_type] = STATE(3236), + [sym_generic_type_with_turbofish] = STATE(3261), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3002), + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), + [aux_sym_declaration_list_repeat1] = STATE(551), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_macro_rules_BANG] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u128] = ACTIONS(1723), + [anon_sym_i128] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_str] = ACTIONS(1723), + [anon_sym_char] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1731), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1735), + [anon_sym_impl] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_mod] = ACTIONS(1741), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_trait] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1751), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_crate] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1763), }, - [554] = { - [ts_builtin_sym_end] = ACTIONS(2085), - [sym_identifier] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_macro_rules_BANG] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_u8] = ACTIONS(2087), - [anon_sym_i8] = ACTIONS(2087), - [anon_sym_u16] = ACTIONS(2087), - [anon_sym_i16] = ACTIONS(2087), - [anon_sym_u32] = ACTIONS(2087), - [anon_sym_i32] = ACTIONS(2087), - [anon_sym_u64] = ACTIONS(2087), - [anon_sym_i64] = ACTIONS(2087), - [anon_sym_u128] = ACTIONS(2087), - [anon_sym_i128] = ACTIONS(2087), - [anon_sym_isize] = ACTIONS(2087), - [anon_sym_usize] = ACTIONS(2087), - [anon_sym_f32] = ACTIONS(2087), - [anon_sym_f64] = ACTIONS(2087), - [anon_sym_bool] = ACTIONS(2087), - [anon_sym_str] = ACTIONS(2087), - [anon_sym_char] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_COLON_COLON] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2087), - [anon_sym_async] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [anon_sym_fn] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_impl] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_mod] = ACTIONS(2087), - [anon_sym_pub] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2087), - [anon_sym_trait] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_union] = ACTIONS(2087), - [anon_sym_unsafe] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2087), - [anon_sym_move] = ACTIONS(2087), - [anon_sym_try] = ACTIONS(2087), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2085), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2087), - [sym_super] = ACTIONS(2087), - [sym_crate] = ACTIONS(2087), - [sym_metavariable] = ACTIONS(2085), - [sym_raw_string_literal] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), - [sym_block_comment] = ACTIONS(3), + [507] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), + [ts_builtin_sym_end] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1767), + [anon_sym_SEMI] = ACTIONS(1765), + [anon_sym_macro_rules_BANG] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_u8] = ACTIONS(1767), + [anon_sym_i8] = ACTIONS(1767), + [anon_sym_u16] = ACTIONS(1767), + [anon_sym_i16] = ACTIONS(1767), + [anon_sym_u32] = ACTIONS(1767), + [anon_sym_i32] = ACTIONS(1767), + [anon_sym_u64] = ACTIONS(1767), + [anon_sym_i64] = ACTIONS(1767), + [anon_sym_u128] = ACTIONS(1767), + [anon_sym_i128] = ACTIONS(1767), + [anon_sym_isize] = ACTIONS(1767), + [anon_sym_usize] = ACTIONS(1767), + [anon_sym_f32] = ACTIONS(1767), + [anon_sym_f64] = ACTIONS(1767), + [anon_sym_bool] = ACTIONS(1767), + [anon_sym_str] = ACTIONS(1767), + [anon_sym_char] = ACTIONS(1767), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_COLON_COLON] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(1765), + [anon_sym_SQUOTE] = ACTIONS(1767), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_break] = ACTIONS(1767), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_continue] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1767), + [anon_sym_enum] = ACTIONS(1767), + [anon_sym_fn] = ACTIONS(1767), + [anon_sym_for] = ACTIONS(1767), + [anon_sym_if] = ACTIONS(1767), + [anon_sym_impl] = ACTIONS(1767), + [anon_sym_let] = ACTIONS(1767), + [anon_sym_loop] = ACTIONS(1767), + [anon_sym_match] = ACTIONS(1767), + [anon_sym_mod] = ACTIONS(1767), + [anon_sym_pub] = ACTIONS(1767), + [anon_sym_return] = ACTIONS(1767), + [anon_sym_static] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1767), + [anon_sym_trait] = ACTIONS(1767), + [anon_sym_type] = ACTIONS(1767), + [anon_sym_union] = ACTIONS(1767), + [anon_sym_unsafe] = ACTIONS(1767), + [anon_sym_use] = ACTIONS(1767), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_extern] = ACTIONS(1767), + [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_yield] = ACTIONS(1767), + [anon_sym_move] = ACTIONS(1767), + [anon_sym_try] = ACTIONS(1767), + [sym_integer_literal] = ACTIONS(1765), + [aux_sym_string_literal_token1] = ACTIONS(1765), + [sym_char_literal] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(1767), + [anon_sym_false] = ACTIONS(1767), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1767), + [sym_super] = ACTIONS(1767), + [sym_crate] = ACTIONS(1767), + [sym_metavariable] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), }, - [555] = { - [ts_builtin_sym_end] = ACTIONS(2089), - [sym_identifier] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_macro_rules_BANG] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_COLON_COLON] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2091), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2091), - [anon_sym_move] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2089), - [aux_sym_string_literal_token1] = ACTIONS(2089), - [sym_char_literal] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2089), - [sym_raw_string_literal] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2089), - [sym_block_comment] = ACTIONS(3), + [508] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_macro_rules_BANG] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_u8] = ACTIONS(1771), + [anon_sym_i8] = ACTIONS(1771), + [anon_sym_u16] = ACTIONS(1771), + [anon_sym_i16] = ACTIONS(1771), + [anon_sym_u32] = ACTIONS(1771), + [anon_sym_i32] = ACTIONS(1771), + [anon_sym_u64] = ACTIONS(1771), + [anon_sym_i64] = ACTIONS(1771), + [anon_sym_u128] = ACTIONS(1771), + [anon_sym_i128] = ACTIONS(1771), + [anon_sym_isize] = ACTIONS(1771), + [anon_sym_usize] = ACTIONS(1771), + [anon_sym_f32] = ACTIONS(1771), + [anon_sym_f64] = ACTIONS(1771), + [anon_sym_bool] = ACTIONS(1771), + [anon_sym_str] = ACTIONS(1771), + [anon_sym_char] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_COLON_COLON] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(1769), + [anon_sym_SQUOTE] = ACTIONS(1771), + [anon_sym_async] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_fn] = ACTIONS(1771), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_impl] = ACTIONS(1771), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_loop] = ACTIONS(1771), + [anon_sym_match] = ACTIONS(1771), + [anon_sym_mod] = ACTIONS(1771), + [anon_sym_pub] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1771), + [anon_sym_trait] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_union] = ACTIONS(1771), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_use] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_yield] = ACTIONS(1771), + [anon_sym_move] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1771), + [sym_integer_literal] = ACTIONS(1769), + [aux_sym_string_literal_token1] = ACTIONS(1769), + [sym_char_literal] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1769), + [sym_raw_string_literal] = ACTIONS(1769), + [sym_float_literal] = ACTIONS(1769), }, - [556] = { - [ts_builtin_sym_end] = ACTIONS(2093), - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_macro_rules_BANG] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_u8] = ACTIONS(2095), - [anon_sym_i8] = ACTIONS(2095), - [anon_sym_u16] = ACTIONS(2095), - [anon_sym_i16] = ACTIONS(2095), - [anon_sym_u32] = ACTIONS(2095), - [anon_sym_i32] = ACTIONS(2095), - [anon_sym_u64] = ACTIONS(2095), - [anon_sym_i64] = ACTIONS(2095), - [anon_sym_u128] = ACTIONS(2095), - [anon_sym_i128] = ACTIONS(2095), - [anon_sym_isize] = ACTIONS(2095), - [anon_sym_usize] = ACTIONS(2095), - [anon_sym_f32] = ACTIONS(2095), - [anon_sym_f64] = ACTIONS(2095), - [anon_sym_bool] = ACTIONS(2095), - [anon_sym_str] = ACTIONS(2095), - [anon_sym_char] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_impl] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_mod] = ACTIONS(2095), - [anon_sym_pub] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_trait] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [anon_sym_unsafe] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_DOT_DOT] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2095), - [anon_sym_move] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2095), - [sym_integer_literal] = ACTIONS(2093), - [aux_sym_string_literal_token1] = ACTIONS(2093), - [sym_char_literal] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_crate] = ACTIONS(2095), - [sym_metavariable] = ACTIONS(2093), - [sym_raw_string_literal] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), - [sym_block_comment] = ACTIONS(3), + [509] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1773), + [anon_sym_macro_rules_BANG] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_STAR] = ACTIONS(1773), + [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(1773), + [anon_sym_COLON_COLON] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1773), + [anon_sym_PIPE] = ACTIONS(1773), + [anon_sym_SQUOTE] = ACTIONS(1775), + [anon_sym_async] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_const] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_fn] = ACTIONS(1775), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_impl] = ACTIONS(1775), + [anon_sym_let] = ACTIONS(1775), + [anon_sym_loop] = ACTIONS(1775), + [anon_sym_match] = ACTIONS(1775), + [anon_sym_mod] = ACTIONS(1775), + [anon_sym_pub] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1775), + [anon_sym_struct] = ACTIONS(1775), + [anon_sym_trait] = ACTIONS(1775), + [anon_sym_type] = ACTIONS(1775), + [anon_sym_union] = ACTIONS(1775), + [anon_sym_unsafe] = ACTIONS(1775), + [anon_sym_use] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_extern] = ACTIONS(1775), + [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_yield] = ACTIONS(1775), + [anon_sym_move] = ACTIONS(1775), + [anon_sym_try] = ACTIONS(1775), + [sym_integer_literal] = ACTIONS(1773), + [aux_sym_string_literal_token1] = ACTIONS(1773), + [sym_char_literal] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1775), + [sym_super] = ACTIONS(1775), + [sym_crate] = ACTIONS(1775), + [sym_metavariable] = ACTIONS(1773), + [sym_raw_string_literal] = ACTIONS(1773), + [sym_float_literal] = ACTIONS(1773), }, - [557] = { - [ts_builtin_sym_end] = ACTIONS(2097), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_macro_rules_BANG] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_u8] = ACTIONS(2099), - [anon_sym_i8] = ACTIONS(2099), - [anon_sym_u16] = ACTIONS(2099), - [anon_sym_i16] = ACTIONS(2099), - [anon_sym_u32] = ACTIONS(2099), - [anon_sym_i32] = ACTIONS(2099), - [anon_sym_u64] = ACTIONS(2099), - [anon_sym_i64] = ACTIONS(2099), - [anon_sym_u128] = ACTIONS(2099), - [anon_sym_i128] = ACTIONS(2099), - [anon_sym_isize] = ACTIONS(2099), - [anon_sym_usize] = ACTIONS(2099), - [anon_sym_f32] = ACTIONS(2099), - [anon_sym_f64] = ACTIONS(2099), - [anon_sym_bool] = ACTIONS(2099), - [anon_sym_str] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_COLON_COLON] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_fn] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_impl] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_mod] = ACTIONS(2099), - [anon_sym_pub] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_trait] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_unsafe] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_extern] = ACTIONS(2099), - [anon_sym_DOT_DOT] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2099), - [anon_sym_move] = ACTIONS(2099), - [anon_sym_try] = ACTIONS(2099), - [sym_integer_literal] = ACTIONS(2097), - [aux_sym_string_literal_token1] = ACTIONS(2097), - [sym_char_literal] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2099), - [sym_super] = ACTIONS(2099), - [sym_crate] = ACTIONS(2099), - [sym_metavariable] = ACTIONS(2097), - [sym_raw_string_literal] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), - [sym_block_comment] = ACTIONS(3), + [510] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), + [anon_sym_SEMI] = ACTIONS(1777), + [anon_sym_macro_rules_BANG] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_u8] = ACTIONS(1779), + [anon_sym_i8] = ACTIONS(1779), + [anon_sym_u16] = ACTIONS(1779), + [anon_sym_i16] = ACTIONS(1779), + [anon_sym_u32] = ACTIONS(1779), + [anon_sym_i32] = ACTIONS(1779), + [anon_sym_u64] = ACTIONS(1779), + [anon_sym_i64] = ACTIONS(1779), + [anon_sym_u128] = ACTIONS(1779), + [anon_sym_i128] = ACTIONS(1779), + [anon_sym_isize] = ACTIONS(1779), + [anon_sym_usize] = ACTIONS(1779), + [anon_sym_f32] = ACTIONS(1779), + [anon_sym_f64] = ACTIONS(1779), + [anon_sym_bool] = ACTIONS(1779), + [anon_sym_str] = ACTIONS(1779), + [anon_sym_char] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_COLON_COLON] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1777), + [anon_sym_PIPE] = ACTIONS(1777), + [anon_sym_SQUOTE] = ACTIONS(1779), + [anon_sym_async] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_default] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_fn] = ACTIONS(1779), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_impl] = ACTIONS(1779), + [anon_sym_let] = ACTIONS(1779), + [anon_sym_loop] = ACTIONS(1779), + [anon_sym_match] = ACTIONS(1779), + [anon_sym_mod] = ACTIONS(1779), + [anon_sym_pub] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1779), + [anon_sym_struct] = ACTIONS(1779), + [anon_sym_trait] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1779), + [anon_sym_union] = ACTIONS(1779), + [anon_sym_unsafe] = ACTIONS(1779), + [anon_sym_use] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_DOT_DOT] = ACTIONS(1777), + [anon_sym_yield] = ACTIONS(1779), + [anon_sym_move] = ACTIONS(1779), + [anon_sym_try] = ACTIONS(1779), + [sym_integer_literal] = ACTIONS(1777), + [aux_sym_string_literal_token1] = ACTIONS(1777), + [sym_char_literal] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1779), + [anon_sym_false] = ACTIONS(1779), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1779), + [sym_super] = ACTIONS(1779), + [sym_crate] = ACTIONS(1779), + [sym_metavariable] = ACTIONS(1777), + [sym_raw_string_literal] = ACTIONS(1777), + [sym_float_literal] = ACTIONS(1777), }, - [558] = { - [ts_builtin_sym_end] = ACTIONS(2101), - [sym_identifier] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_macro_rules_BANG] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_u8] = ACTIONS(2103), - [anon_sym_i8] = ACTIONS(2103), - [anon_sym_u16] = ACTIONS(2103), - [anon_sym_i16] = ACTIONS(2103), - [anon_sym_u32] = ACTIONS(2103), - [anon_sym_i32] = ACTIONS(2103), - [anon_sym_u64] = ACTIONS(2103), - [anon_sym_i64] = ACTIONS(2103), - [anon_sym_u128] = ACTIONS(2103), - [anon_sym_i128] = ACTIONS(2103), - [anon_sym_isize] = ACTIONS(2103), - [anon_sym_usize] = ACTIONS(2103), - [anon_sym_f32] = ACTIONS(2103), - [anon_sym_f64] = ACTIONS(2103), - [anon_sym_bool] = ACTIONS(2103), - [anon_sym_str] = ACTIONS(2103), - [anon_sym_char] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_COLON_COLON] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_fn] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_impl] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_loop] = ACTIONS(2103), - [anon_sym_match] = ACTIONS(2103), - [anon_sym_mod] = ACTIONS(2103), - [anon_sym_pub] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_trait] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_unsafe] = ACTIONS(2103), - [anon_sym_use] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_extern] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_move] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [sym_integer_literal] = ACTIONS(2101), - [aux_sym_string_literal_token1] = ACTIONS(2101), - [sym_char_literal] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2103), - [anon_sym_false] = ACTIONS(2103), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_crate] = ACTIONS(2103), - [sym_metavariable] = ACTIONS(2101), - [sym_raw_string_literal] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), - [sym_block_comment] = ACTIONS(3), + [511] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1783), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_macro_rules_BANG] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_u8] = ACTIONS(1783), + [anon_sym_i8] = ACTIONS(1783), + [anon_sym_u16] = ACTIONS(1783), + [anon_sym_i16] = ACTIONS(1783), + [anon_sym_u32] = ACTIONS(1783), + [anon_sym_i32] = ACTIONS(1783), + [anon_sym_u64] = ACTIONS(1783), + [anon_sym_i64] = ACTIONS(1783), + [anon_sym_u128] = ACTIONS(1783), + [anon_sym_i128] = ACTIONS(1783), + [anon_sym_isize] = ACTIONS(1783), + [anon_sym_usize] = ACTIONS(1783), + [anon_sym_f32] = ACTIONS(1783), + [anon_sym_f64] = ACTIONS(1783), + [anon_sym_bool] = ACTIONS(1783), + [anon_sym_str] = ACTIONS(1783), + [anon_sym_char] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_COLON_COLON] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1781), + [anon_sym_POUND] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1781), + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_SQUOTE] = ACTIONS(1783), + [anon_sym_async] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_const] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_default] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_fn] = ACTIONS(1783), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_impl] = ACTIONS(1783), + [anon_sym_let] = ACTIONS(1783), + [anon_sym_loop] = ACTIONS(1783), + [anon_sym_match] = ACTIONS(1783), + [anon_sym_mod] = ACTIONS(1783), + [anon_sym_pub] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_struct] = ACTIONS(1783), + [anon_sym_trait] = ACTIONS(1783), + [anon_sym_type] = ACTIONS(1783), + [anon_sym_union] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1783), + [anon_sym_use] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1783), + [anon_sym_move] = ACTIONS(1783), + [anon_sym_try] = ACTIONS(1783), + [sym_integer_literal] = ACTIONS(1781), + [aux_sym_string_literal_token1] = ACTIONS(1781), + [sym_char_literal] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1783), + [anon_sym_false] = ACTIONS(1783), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1783), + [sym_super] = ACTIONS(1783), + [sym_crate] = ACTIONS(1783), + [sym_metavariable] = ACTIONS(1781), + [sym_raw_string_literal] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1781), }, - [559] = { + [512] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), [ts_builtin_sym_end] = ACTIONS(868), [sym_identifier] = ACTIONS(870), [anon_sym_SEMI] = ACTIONS(868), @@ -76140,2779 +73899,1067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(868), [anon_sym_true] = ACTIONS(870), [anon_sym_false] = ACTIONS(870), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(870), [sym_super] = ACTIONS(870), [sym_crate] = ACTIONS(870), [sym_metavariable] = ACTIONS(868), [sym_raw_string_literal] = ACTIONS(868), [sym_float_literal] = ACTIONS(868), - [sym_block_comment] = ACTIONS(3), - }, - [560] = { - [ts_builtin_sym_end] = ACTIONS(2105), - [sym_identifier] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_macro_rules_BANG] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_u8] = ACTIONS(2107), - [anon_sym_i8] = ACTIONS(2107), - [anon_sym_u16] = ACTIONS(2107), - [anon_sym_i16] = ACTIONS(2107), - [anon_sym_u32] = ACTIONS(2107), - [anon_sym_i32] = ACTIONS(2107), - [anon_sym_u64] = ACTIONS(2107), - [anon_sym_i64] = ACTIONS(2107), - [anon_sym_u128] = ACTIONS(2107), - [anon_sym_i128] = ACTIONS(2107), - [anon_sym_isize] = ACTIONS(2107), - [anon_sym_usize] = ACTIONS(2107), - [anon_sym_f32] = ACTIONS(2107), - [anon_sym_f64] = ACTIONS(2107), - [anon_sym_bool] = ACTIONS(2107), - [anon_sym_str] = ACTIONS(2107), - [anon_sym_char] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_COLON_COLON] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_impl] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_loop] = ACTIONS(2107), - [anon_sym_match] = ACTIONS(2107), - [anon_sym_mod] = ACTIONS(2107), - [anon_sym_pub] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(2107), - [anon_sym_trait] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_union] = ACTIONS(2107), - [anon_sym_unsafe] = ACTIONS(2107), - [anon_sym_use] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [anon_sym_extern] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2107), - [anon_sym_move] = ACTIONS(2107), - [anon_sym_try] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(2105), - [aux_sym_string_literal_token1] = ACTIONS(2105), - [sym_char_literal] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2105), - [sym_raw_string_literal] = ACTIONS(2105), - [sym_float_literal] = ACTIONS(2105), - [sym_block_comment] = ACTIONS(3), - }, - [561] = { - [ts_builtin_sym_end] = ACTIONS(2109), - [sym_identifier] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_macro_rules_BANG] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_u8] = ACTIONS(2111), - [anon_sym_i8] = ACTIONS(2111), - [anon_sym_u16] = ACTIONS(2111), - [anon_sym_i16] = ACTIONS(2111), - [anon_sym_u32] = ACTIONS(2111), - [anon_sym_i32] = ACTIONS(2111), - [anon_sym_u64] = ACTIONS(2111), - [anon_sym_i64] = ACTIONS(2111), - [anon_sym_u128] = ACTIONS(2111), - [anon_sym_i128] = ACTIONS(2111), - [anon_sym_isize] = ACTIONS(2111), - [anon_sym_usize] = ACTIONS(2111), - [anon_sym_f32] = ACTIONS(2111), - [anon_sym_f64] = ACTIONS(2111), - [anon_sym_bool] = ACTIONS(2111), - [anon_sym_str] = ACTIONS(2111), - [anon_sym_char] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_COLON_COLON] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [anon_sym_fn] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_impl] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_loop] = ACTIONS(2111), - [anon_sym_match] = ACTIONS(2111), - [anon_sym_mod] = ACTIONS(2111), - [anon_sym_pub] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(2111), - [anon_sym_trait] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_union] = ACTIONS(2111), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_use] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_extern] = ACTIONS(2111), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_move] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [sym_integer_literal] = ACTIONS(2109), - [aux_sym_string_literal_token1] = ACTIONS(2109), - [sym_char_literal] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2111), - [anon_sym_false] = ACTIONS(2111), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(2109), - [sym_raw_string_literal] = ACTIONS(2109), - [sym_float_literal] = ACTIONS(2109), - [sym_block_comment] = ACTIONS(3), - }, - [562] = { - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_macro_rules_BANG] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2113), - [anon_sym_u8] = ACTIONS(2115), - [anon_sym_i8] = ACTIONS(2115), - [anon_sym_u16] = ACTIONS(2115), - [anon_sym_i16] = ACTIONS(2115), - [anon_sym_u32] = ACTIONS(2115), - [anon_sym_i32] = ACTIONS(2115), - [anon_sym_u64] = ACTIONS(2115), - [anon_sym_i64] = ACTIONS(2115), - [anon_sym_u128] = ACTIONS(2115), - [anon_sym_i128] = ACTIONS(2115), - [anon_sym_isize] = ACTIONS(2115), - [anon_sym_usize] = ACTIONS(2115), - [anon_sym_f32] = ACTIONS(2115), - [anon_sym_f64] = ACTIONS(2115), - [anon_sym_bool] = ACTIONS(2115), - [anon_sym_str] = ACTIONS(2115), - [anon_sym_char] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_COLON_COLON] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_default] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_impl] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_loop] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_mod] = ACTIONS(2115), - [anon_sym_pub] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_trait] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_use] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [anon_sym_extern] = ACTIONS(2115), - [anon_sym_DOT_DOT] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2115), - [anon_sym_move] = ACTIONS(2115), - [anon_sym_try] = ACTIONS(2115), - [sym_integer_literal] = ACTIONS(2113), - [aux_sym_string_literal_token1] = ACTIONS(2113), - [sym_char_literal] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_crate] = ACTIONS(2115), - [sym_metavariable] = ACTIONS(2113), - [sym_raw_string_literal] = ACTIONS(2113), - [sym_float_literal] = ACTIONS(2113), - [sym_block_comment] = ACTIONS(3), - }, - [563] = { - [ts_builtin_sym_end] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_macro_rules_BANG] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_u8] = ACTIONS(2119), - [anon_sym_i8] = ACTIONS(2119), - [anon_sym_u16] = ACTIONS(2119), - [anon_sym_i16] = ACTIONS(2119), - [anon_sym_u32] = ACTIONS(2119), - [anon_sym_i32] = ACTIONS(2119), - [anon_sym_u64] = ACTIONS(2119), - [anon_sym_i64] = ACTIONS(2119), - [anon_sym_u128] = ACTIONS(2119), - [anon_sym_i128] = ACTIONS(2119), - [anon_sym_isize] = ACTIONS(2119), - [anon_sym_usize] = ACTIONS(2119), - [anon_sym_f32] = ACTIONS(2119), - [anon_sym_f64] = ACTIONS(2119), - [anon_sym_bool] = ACTIONS(2119), - [anon_sym_str] = ACTIONS(2119), - [anon_sym_char] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_COLON_COLON] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_impl] = ACTIONS(2119), - [anon_sym_let] = ACTIONS(2119), - [anon_sym_loop] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_mod] = ACTIONS(2119), - [anon_sym_pub] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_trait] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_use] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2119), - [anon_sym_extern] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2119), - [anon_sym_move] = ACTIONS(2119), - [anon_sym_try] = ACTIONS(2119), - [sym_integer_literal] = ACTIONS(2117), - [aux_sym_string_literal_token1] = ACTIONS(2117), - [sym_char_literal] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2119), - [sym_super] = ACTIONS(2119), - [sym_crate] = ACTIONS(2119), - [sym_metavariable] = ACTIONS(2117), - [sym_raw_string_literal] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), - [sym_block_comment] = ACTIONS(3), - }, - [564] = { - [ts_builtin_sym_end] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_macro_rules_BANG] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_u8] = ACTIONS(2123), - [anon_sym_i8] = ACTIONS(2123), - [anon_sym_u16] = ACTIONS(2123), - [anon_sym_i16] = ACTIONS(2123), - [anon_sym_u32] = ACTIONS(2123), - [anon_sym_i32] = ACTIONS(2123), - [anon_sym_u64] = ACTIONS(2123), - [anon_sym_i64] = ACTIONS(2123), - [anon_sym_u128] = ACTIONS(2123), - [anon_sym_i128] = ACTIONS(2123), - [anon_sym_isize] = ACTIONS(2123), - [anon_sym_usize] = ACTIONS(2123), - [anon_sym_f32] = ACTIONS(2123), - [anon_sym_f64] = ACTIONS(2123), - [anon_sym_bool] = ACTIONS(2123), - [anon_sym_str] = ACTIONS(2123), - [anon_sym_char] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_COLON_COLON] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_default] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_fn] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_impl] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_loop] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_mod] = ACTIONS(2123), - [anon_sym_pub] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_static] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_trait] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2123), - [anon_sym_use] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_move] = ACTIONS(2123), - [anon_sym_try] = ACTIONS(2123), - [sym_integer_literal] = ACTIONS(2121), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2123), - [sym_super] = ACTIONS(2123), - [sym_crate] = ACTIONS(2123), - [sym_metavariable] = ACTIONS(2121), - [sym_raw_string_literal] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2121), - [sym_block_comment] = ACTIONS(3), - }, - [565] = { - [ts_builtin_sym_end] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_macro_rules_BANG] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_u8] = ACTIONS(2127), - [anon_sym_i8] = ACTIONS(2127), - [anon_sym_u16] = ACTIONS(2127), - [anon_sym_i16] = ACTIONS(2127), - [anon_sym_u32] = ACTIONS(2127), - [anon_sym_i32] = ACTIONS(2127), - [anon_sym_u64] = ACTIONS(2127), - [anon_sym_i64] = ACTIONS(2127), - [anon_sym_u128] = ACTIONS(2127), - [anon_sym_i128] = ACTIONS(2127), - [anon_sym_isize] = ACTIONS(2127), - [anon_sym_usize] = ACTIONS(2127), - [anon_sym_f32] = ACTIONS(2127), - [anon_sym_f64] = ACTIONS(2127), - [anon_sym_bool] = ACTIONS(2127), - [anon_sym_str] = ACTIONS(2127), - [anon_sym_char] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_COLON_COLON] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_impl] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_loop] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_mod] = ACTIONS(2127), - [anon_sym_pub] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_trait] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_use] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_extern] = ACTIONS(2127), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_move] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [sym_integer_literal] = ACTIONS(2125), - [aux_sym_string_literal_token1] = ACTIONS(2125), - [sym_char_literal] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_crate] = ACTIONS(2127), - [sym_metavariable] = ACTIONS(2125), - [sym_raw_string_literal] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2125), - [sym_block_comment] = ACTIONS(3), - }, - [566] = { - [ts_builtin_sym_end] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_macro_rules_BANG] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2131), - [anon_sym_i8] = ACTIONS(2131), - [anon_sym_u16] = ACTIONS(2131), - [anon_sym_i16] = ACTIONS(2131), - [anon_sym_u32] = ACTIONS(2131), - [anon_sym_i32] = ACTIONS(2131), - [anon_sym_u64] = ACTIONS(2131), - [anon_sym_i64] = ACTIONS(2131), - [anon_sym_u128] = ACTIONS(2131), - [anon_sym_i128] = ACTIONS(2131), - [anon_sym_isize] = ACTIONS(2131), - [anon_sym_usize] = ACTIONS(2131), - [anon_sym_f32] = ACTIONS(2131), - [anon_sym_f64] = ACTIONS(2131), - [anon_sym_bool] = ACTIONS(2131), - [anon_sym_str] = ACTIONS(2131), - [anon_sym_char] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_COLON_COLON] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2131), - [anon_sym_enum] = ACTIONS(2131), - [anon_sym_fn] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_impl] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_mod] = ACTIONS(2131), - [anon_sym_pub] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2131), - [anon_sym_trait] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2131), - [anon_sym_unsafe] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2131), - [anon_sym_move] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [sym_integer_literal] = ACTIONS(2129), - [aux_sym_string_literal_token1] = ACTIONS(2129), - [sym_char_literal] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(2129), - [sym_raw_string_literal] = ACTIONS(2129), - [sym_float_literal] = ACTIONS(2129), - [sym_block_comment] = ACTIONS(3), - }, - [567] = { - [ts_builtin_sym_end] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_macro_rules_BANG] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_u8] = ACTIONS(2135), - [anon_sym_i8] = ACTIONS(2135), - [anon_sym_u16] = ACTIONS(2135), - [anon_sym_i16] = ACTIONS(2135), - [anon_sym_u32] = ACTIONS(2135), - [anon_sym_i32] = ACTIONS(2135), - [anon_sym_u64] = ACTIONS(2135), - [anon_sym_i64] = ACTIONS(2135), - [anon_sym_u128] = ACTIONS(2135), - [anon_sym_i128] = ACTIONS(2135), - [anon_sym_isize] = ACTIONS(2135), - [anon_sym_usize] = ACTIONS(2135), - [anon_sym_f32] = ACTIONS(2135), - [anon_sym_f64] = ACTIONS(2135), - [anon_sym_bool] = ACTIONS(2135), - [anon_sym_str] = ACTIONS(2135), - [anon_sym_char] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [anon_sym_fn] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_impl] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_mod] = ACTIONS(2135), - [anon_sym_pub] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2135), - [anon_sym_trait] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2135), - [anon_sym_unsafe] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2135), - [anon_sym_DOT_DOT] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_move] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [sym_integer_literal] = ACTIONS(2133), - [aux_sym_string_literal_token1] = ACTIONS(2133), - [sym_char_literal] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2133), - [sym_raw_string_literal] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), - [sym_block_comment] = ACTIONS(3), - }, - [568] = { - [ts_builtin_sym_end] = ACTIONS(2137), - [sym_identifier] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_macro_rules_BANG] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_u8] = ACTIONS(2139), - [anon_sym_i8] = ACTIONS(2139), - [anon_sym_u16] = ACTIONS(2139), - [anon_sym_i16] = ACTIONS(2139), - [anon_sym_u32] = ACTIONS(2139), - [anon_sym_i32] = ACTIONS(2139), - [anon_sym_u64] = ACTIONS(2139), - [anon_sym_i64] = ACTIONS(2139), - [anon_sym_u128] = ACTIONS(2139), - [anon_sym_i128] = ACTIONS(2139), - [anon_sym_isize] = ACTIONS(2139), - [anon_sym_usize] = ACTIONS(2139), - [anon_sym_f32] = ACTIONS(2139), - [anon_sym_f64] = ACTIONS(2139), - [anon_sym_bool] = ACTIONS(2139), - [anon_sym_str] = ACTIONS(2139), - [anon_sym_char] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_impl] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_loop] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_mod] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_trait] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_use] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_extern] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_move] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [sym_integer_literal] = ACTIONS(2137), - [aux_sym_string_literal_token1] = ACTIONS(2137), - [sym_char_literal] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_crate] = ACTIONS(2139), - [sym_metavariable] = ACTIONS(2137), - [sym_raw_string_literal] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), - [sym_block_comment] = ACTIONS(3), - }, - [569] = { - [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_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2141), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2143), - [sym_super] = ACTIONS(2143), - [sym_crate] = ACTIONS(2143), - [sym_metavariable] = ACTIONS(2141), - [sym_raw_string_literal] = ACTIONS(2141), - [sym_float_literal] = ACTIONS(2141), - [sym_block_comment] = ACTIONS(3), }, - [570] = { - [ts_builtin_sym_end] = ACTIONS(2145), - [sym_identifier] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_macro_rules_BANG] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_COLON_COLON] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2147), - [anon_sym_move] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2145), - [aux_sym_string_literal_token1] = ACTIONS(2145), - [sym_char_literal] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_metavariable] = ACTIONS(2145), - [sym_raw_string_literal] = ACTIONS(2145), - [sym_float_literal] = ACTIONS(2145), - [sym_block_comment] = ACTIONS(3), + [513] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_macro_rules_BANG] = ACTIONS(1785), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_u8] = ACTIONS(1787), + [anon_sym_i8] = ACTIONS(1787), + [anon_sym_u16] = ACTIONS(1787), + [anon_sym_i16] = ACTIONS(1787), + [anon_sym_u32] = ACTIONS(1787), + [anon_sym_i32] = ACTIONS(1787), + [anon_sym_u64] = ACTIONS(1787), + [anon_sym_i64] = ACTIONS(1787), + [anon_sym_u128] = ACTIONS(1787), + [anon_sym_i128] = ACTIONS(1787), + [anon_sym_isize] = ACTIONS(1787), + [anon_sym_usize] = ACTIONS(1787), + [anon_sym_f32] = ACTIONS(1787), + [anon_sym_f64] = ACTIONS(1787), + [anon_sym_bool] = ACTIONS(1787), + [anon_sym_str] = ACTIONS(1787), + [anon_sym_char] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_COLON_COLON] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1785), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1785), + [anon_sym_SQUOTE] = ACTIONS(1787), + [anon_sym_async] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_fn] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_impl] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_loop] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_mod] = ACTIONS(1787), + [anon_sym_pub] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_struct] = ACTIONS(1787), + [anon_sym_trait] = ACTIONS(1787), + [anon_sym_type] = ACTIONS(1787), + [anon_sym_union] = ACTIONS(1787), + [anon_sym_unsafe] = ACTIONS(1787), + [anon_sym_use] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1785), + [anon_sym_yield] = ACTIONS(1787), + [anon_sym_move] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [sym_integer_literal] = ACTIONS(1785), + [aux_sym_string_literal_token1] = ACTIONS(1785), + [sym_char_literal] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1787), + [sym_super] = ACTIONS(1787), + [sym_crate] = ACTIONS(1787), + [sym_metavariable] = ACTIONS(1785), + [sym_raw_string_literal] = ACTIONS(1785), + [sym_float_literal] = ACTIONS(1785), }, - [571] = { - [ts_builtin_sym_end] = ACTIONS(884), - [sym_identifier] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym_macro_rules_BANG] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(884), - [anon_sym_RBRACE] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_u8] = ACTIONS(886), - [anon_sym_i8] = ACTIONS(886), - [anon_sym_u16] = ACTIONS(886), - [anon_sym_i16] = ACTIONS(886), - [anon_sym_u32] = ACTIONS(886), - [anon_sym_i32] = ACTIONS(886), - [anon_sym_u64] = ACTIONS(886), - [anon_sym_i64] = ACTIONS(886), - [anon_sym_u128] = ACTIONS(886), - [anon_sym_i128] = ACTIONS(886), - [anon_sym_isize] = ACTIONS(886), - [anon_sym_usize] = ACTIONS(886), - [anon_sym_f32] = ACTIONS(886), - [anon_sym_f64] = ACTIONS(886), - [anon_sym_bool] = ACTIONS(886), - [anon_sym_str] = ACTIONS(886), - [anon_sym_char] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_SQUOTE] = ACTIONS(886), - [anon_sym_async] = ACTIONS(886), - [anon_sym_break] = ACTIONS(886), - [anon_sym_const] = ACTIONS(886), - [anon_sym_continue] = ACTIONS(886), - [anon_sym_default] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(886), - [anon_sym_fn] = ACTIONS(886), - [anon_sym_for] = ACTIONS(886), - [anon_sym_if] = ACTIONS(886), - [anon_sym_impl] = ACTIONS(886), - [anon_sym_let] = ACTIONS(886), - [anon_sym_loop] = ACTIONS(886), - [anon_sym_match] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(886), - [anon_sym_pub] = ACTIONS(886), - [anon_sym_return] = ACTIONS(886), - [anon_sym_static] = ACTIONS(886), - [anon_sym_struct] = ACTIONS(886), - [anon_sym_trait] = ACTIONS(886), - [anon_sym_type] = ACTIONS(886), - [anon_sym_union] = ACTIONS(886), - [anon_sym_unsafe] = ACTIONS(886), - [anon_sym_use] = ACTIONS(886), - [anon_sym_while] = ACTIONS(886), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_DOT_DOT] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(886), - [anon_sym_move] = ACTIONS(886), - [anon_sym_try] = ACTIONS(886), - [sym_integer_literal] = ACTIONS(884), - [aux_sym_string_literal_token1] = ACTIONS(884), - [sym_char_literal] = ACTIONS(884), - [anon_sym_true] = ACTIONS(886), - [anon_sym_false] = ACTIONS(886), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(886), - [sym_super] = ACTIONS(886), - [sym_crate] = ACTIONS(886), - [sym_metavariable] = ACTIONS(884), - [sym_raw_string_literal] = ACTIONS(884), - [sym_float_literal] = ACTIONS(884), - [sym_block_comment] = ACTIONS(3), + [514] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), + [ts_builtin_sym_end] = ACTIONS(1789), + [sym_identifier] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_macro_rules_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1789), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_LBRACK] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_u8] = ACTIONS(1791), + [anon_sym_i8] = ACTIONS(1791), + [anon_sym_u16] = ACTIONS(1791), + [anon_sym_i16] = ACTIONS(1791), + [anon_sym_u32] = ACTIONS(1791), + [anon_sym_i32] = ACTIONS(1791), + [anon_sym_u64] = ACTIONS(1791), + [anon_sym_i64] = ACTIONS(1791), + [anon_sym_u128] = ACTIONS(1791), + [anon_sym_i128] = ACTIONS(1791), + [anon_sym_isize] = ACTIONS(1791), + [anon_sym_usize] = ACTIONS(1791), + [anon_sym_f32] = ACTIONS(1791), + [anon_sym_f64] = ACTIONS(1791), + [anon_sym_bool] = ACTIONS(1791), + [anon_sym_str] = ACTIONS(1791), + [anon_sym_char] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_COLON_COLON] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_POUND] = ACTIONS(1789), + [anon_sym_LT] = ACTIONS(1789), + [anon_sym_PIPE] = ACTIONS(1789), + [anon_sym_SQUOTE] = ACTIONS(1791), + [anon_sym_async] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_fn] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_impl] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_loop] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_mod] = ACTIONS(1791), + [anon_sym_pub] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_trait] = ACTIONS(1791), + [anon_sym_type] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_use] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_DOT_DOT] = ACTIONS(1789), + [anon_sym_yield] = ACTIONS(1791), + [anon_sym_move] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [sym_integer_literal] = ACTIONS(1789), + [aux_sym_string_literal_token1] = ACTIONS(1789), + [sym_char_literal] = ACTIONS(1789), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1791), + [sym_super] = ACTIONS(1791), + [sym_crate] = ACTIONS(1791), + [sym_metavariable] = ACTIONS(1789), + [sym_raw_string_literal] = ACTIONS(1789), + [sym_float_literal] = ACTIONS(1789), }, - [572] = { - [ts_builtin_sym_end] = ACTIONS(2149), - [sym_identifier] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_macro_rules_BANG] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_u8] = ACTIONS(2151), - [anon_sym_i8] = ACTIONS(2151), - [anon_sym_u16] = ACTIONS(2151), - [anon_sym_i16] = ACTIONS(2151), - [anon_sym_u32] = ACTIONS(2151), - [anon_sym_i32] = ACTIONS(2151), - [anon_sym_u64] = ACTIONS(2151), - [anon_sym_i64] = ACTIONS(2151), - [anon_sym_u128] = ACTIONS(2151), - [anon_sym_i128] = ACTIONS(2151), - [anon_sym_isize] = ACTIONS(2151), - [anon_sym_usize] = ACTIONS(2151), - [anon_sym_f32] = ACTIONS(2151), - [anon_sym_f64] = ACTIONS(2151), - [anon_sym_bool] = ACTIONS(2151), - [anon_sym_str] = ACTIONS(2151), - [anon_sym_char] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_impl] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_mod] = ACTIONS(2151), - [anon_sym_pub] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_trait] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_DOT_DOT] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_move] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [sym_integer_literal] = ACTIONS(2149), - [aux_sym_string_literal_token1] = ACTIONS(2149), - [sym_char_literal] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2151), - [anon_sym_false] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_crate] = ACTIONS(2151), - [sym_metavariable] = ACTIONS(2149), - [sym_raw_string_literal] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2149), - [sym_block_comment] = ACTIONS(3), + [515] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_identifier] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_macro_rules_BANG] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u128] = ACTIONS(880), + [anon_sym_i128] = ACTIONS(880), + [anon_sym_isize] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_f32] = ACTIONS(880), + [anon_sym_f64] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_str] = ACTIONS(880), + [anon_sym_char] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(878), + [anon_sym_AMP] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(878), + [anon_sym_LT] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(880), + [anon_sym_break] = ACTIONS(880), + [anon_sym_const] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_enum] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_impl] = ACTIONS(880), + [anon_sym_let] = ACTIONS(880), + [anon_sym_loop] = ACTIONS(880), + [anon_sym_match] = ACTIONS(880), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_pub] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_static] = ACTIONS(880), + [anon_sym_struct] = ACTIONS(880), + [anon_sym_trait] = ACTIONS(880), + [anon_sym_type] = ACTIONS(880), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(880), + [anon_sym_use] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_extern] = ACTIONS(880), + [anon_sym_DOT_DOT] = ACTIONS(878), + [anon_sym_yield] = ACTIONS(880), + [anon_sym_move] = ACTIONS(880), + [anon_sym_try] = ACTIONS(880), + [sym_integer_literal] = ACTIONS(878), + [aux_sym_string_literal_token1] = ACTIONS(878), + [sym_char_literal] = ACTIONS(878), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(880), + [sym_super] = ACTIONS(880), + [sym_crate] = ACTIONS(880), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(878), + [sym_float_literal] = ACTIONS(878), }, - [573] = { - [ts_builtin_sym_end] = ACTIONS(2153), - [sym_identifier] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2153), - [anon_sym_macro_rules_BANG] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u128] = ACTIONS(2155), - [anon_sym_i128] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_str] = ACTIONS(2155), - [anon_sym_char] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_default] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_impl] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_mod] = ACTIONS(2155), - [anon_sym_pub] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_static] = ACTIONS(2155), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_trait] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_move] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [sym_integer_literal] = ACTIONS(2153), - [aux_sym_string_literal_token1] = ACTIONS(2153), - [sym_char_literal] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2155), - [sym_super] = ACTIONS(2155), - [sym_crate] = ACTIONS(2155), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), - [sym_block_comment] = ACTIONS(3), + [516] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), + [ts_builtin_sym_end] = ACTIONS(1793), + [sym_identifier] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1793), + [anon_sym_macro_rules_BANG] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1793), + [anon_sym_STAR] = ACTIONS(1793), + [anon_sym_u8] = ACTIONS(1795), + [anon_sym_i8] = ACTIONS(1795), + [anon_sym_u16] = ACTIONS(1795), + [anon_sym_i16] = ACTIONS(1795), + [anon_sym_u32] = ACTIONS(1795), + [anon_sym_i32] = ACTIONS(1795), + [anon_sym_u64] = ACTIONS(1795), + [anon_sym_i64] = ACTIONS(1795), + [anon_sym_u128] = ACTIONS(1795), + [anon_sym_i128] = ACTIONS(1795), + [anon_sym_isize] = ACTIONS(1795), + [anon_sym_usize] = ACTIONS(1795), + [anon_sym_f32] = ACTIONS(1795), + [anon_sym_f64] = ACTIONS(1795), + [anon_sym_bool] = ACTIONS(1795), + [anon_sym_str] = ACTIONS(1795), + [anon_sym_char] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1793), + [anon_sym_COLON_COLON] = ACTIONS(1793), + [anon_sym_BANG] = ACTIONS(1793), + [anon_sym_AMP] = ACTIONS(1793), + [anon_sym_POUND] = ACTIONS(1793), + [anon_sym_LT] = ACTIONS(1793), + [anon_sym_PIPE] = ACTIONS(1793), + [anon_sym_SQUOTE] = ACTIONS(1795), + [anon_sym_async] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1795), + [anon_sym_enum] = ACTIONS(1795), + [anon_sym_fn] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_impl] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_loop] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_mod] = ACTIONS(1795), + [anon_sym_pub] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_static] = ACTIONS(1795), + [anon_sym_struct] = ACTIONS(1795), + [anon_sym_trait] = ACTIONS(1795), + [anon_sym_type] = ACTIONS(1795), + [anon_sym_union] = ACTIONS(1795), + [anon_sym_unsafe] = ACTIONS(1795), + [anon_sym_use] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_extern] = ACTIONS(1795), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_yield] = ACTIONS(1795), + [anon_sym_move] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [sym_integer_literal] = ACTIONS(1793), + [aux_sym_string_literal_token1] = ACTIONS(1793), + [sym_char_literal] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1795), + [sym_super] = ACTIONS(1795), + [sym_crate] = ACTIONS(1795), + [sym_metavariable] = ACTIONS(1793), + [sym_raw_string_literal] = ACTIONS(1793), + [sym_float_literal] = ACTIONS(1793), }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2157), - [anon_sym_macro_rules_BANG] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2159), - [anon_sym_i8] = ACTIONS(2159), - [anon_sym_u16] = ACTIONS(2159), - [anon_sym_i16] = ACTIONS(2159), - [anon_sym_u32] = ACTIONS(2159), - [anon_sym_i32] = ACTIONS(2159), - [anon_sym_u64] = ACTIONS(2159), - [anon_sym_i64] = ACTIONS(2159), - [anon_sym_u128] = ACTIONS(2159), - [anon_sym_i128] = ACTIONS(2159), - [anon_sym_isize] = ACTIONS(2159), - [anon_sym_usize] = ACTIONS(2159), - [anon_sym_f32] = ACTIONS(2159), - [anon_sym_f64] = ACTIONS(2159), - [anon_sym_bool] = ACTIONS(2159), - [anon_sym_str] = ACTIONS(2159), - [anon_sym_char] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_COLON_COLON] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_impl] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_mod] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_trait] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_move] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2157), - [aux_sym_string_literal_token1] = ACTIONS(2157), - [sym_char_literal] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2159), - [anon_sym_false] = ACTIONS(2159), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_crate] = ACTIONS(2159), - [sym_metavariable] = ACTIONS(2157), - [sym_raw_string_literal] = ACTIONS(2157), - [sym_float_literal] = ACTIONS(2157), - [sym_block_comment] = ACTIONS(3), + [517] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_macro_rules_BANG] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_u8] = ACTIONS(1799), + [anon_sym_i8] = ACTIONS(1799), + [anon_sym_u16] = ACTIONS(1799), + [anon_sym_i16] = ACTIONS(1799), + [anon_sym_u32] = ACTIONS(1799), + [anon_sym_i32] = ACTIONS(1799), + [anon_sym_u64] = ACTIONS(1799), + [anon_sym_i64] = ACTIONS(1799), + [anon_sym_u128] = ACTIONS(1799), + [anon_sym_i128] = ACTIONS(1799), + [anon_sym_isize] = ACTIONS(1799), + [anon_sym_usize] = ACTIONS(1799), + [anon_sym_f32] = ACTIONS(1799), + [anon_sym_f64] = ACTIONS(1799), + [anon_sym_bool] = ACTIONS(1799), + [anon_sym_str] = ACTIONS(1799), + [anon_sym_char] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1797), + [anon_sym_COLON_COLON] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1797), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1799), + [anon_sym_async] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_fn] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_impl] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_mod] = ACTIONS(1799), + [anon_sym_pub] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_trait] = ACTIONS(1799), + [anon_sym_type] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_unsafe] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1799), + [anon_sym_move] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [sym_integer_literal] = ACTIONS(1797), + [aux_sym_string_literal_token1] = ACTIONS(1797), + [sym_char_literal] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1799), + [sym_super] = ACTIONS(1799), + [sym_crate] = ACTIONS(1799), + [sym_metavariable] = ACTIONS(1797), + [sym_raw_string_literal] = ACTIONS(1797), + [sym_float_literal] = ACTIONS(1797), }, - [575] = { - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2161), - [anon_sym_macro_rules_BANG] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_u8] = ACTIONS(2163), - [anon_sym_i8] = ACTIONS(2163), - [anon_sym_u16] = ACTIONS(2163), - [anon_sym_i16] = ACTIONS(2163), - [anon_sym_u32] = ACTIONS(2163), - [anon_sym_i32] = ACTIONS(2163), - [anon_sym_u64] = ACTIONS(2163), - [anon_sym_i64] = ACTIONS(2163), - [anon_sym_u128] = ACTIONS(2163), - [anon_sym_i128] = ACTIONS(2163), - [anon_sym_isize] = ACTIONS(2163), - [anon_sym_usize] = ACTIONS(2163), - [anon_sym_f32] = ACTIONS(2163), - [anon_sym_f64] = ACTIONS(2163), - [anon_sym_bool] = ACTIONS(2163), - [anon_sym_str] = ACTIONS(2163), - [anon_sym_char] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_COLON_COLON] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_impl] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_loop] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_mod] = ACTIONS(2163), - [anon_sym_pub] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_trait] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_use] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_move] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [sym_integer_literal] = ACTIONS(2161), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_crate] = ACTIONS(2163), - [sym_metavariable] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2161), - [sym_float_literal] = ACTIONS(2161), - [sym_block_comment] = ACTIONS(3), + [518] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_macro_rules_BANG] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_u8] = ACTIONS(1803), + [anon_sym_i8] = ACTIONS(1803), + [anon_sym_u16] = ACTIONS(1803), + [anon_sym_i16] = ACTIONS(1803), + [anon_sym_u32] = ACTIONS(1803), + [anon_sym_i32] = ACTIONS(1803), + [anon_sym_u64] = ACTIONS(1803), + [anon_sym_i64] = ACTIONS(1803), + [anon_sym_u128] = ACTIONS(1803), + [anon_sym_i128] = ACTIONS(1803), + [anon_sym_isize] = ACTIONS(1803), + [anon_sym_usize] = ACTIONS(1803), + [anon_sym_f32] = ACTIONS(1803), + [anon_sym_f64] = ACTIONS(1803), + [anon_sym_bool] = ACTIONS(1803), + [anon_sym_str] = ACTIONS(1803), + [anon_sym_char] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1801), + [anon_sym_COLON_COLON] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_POUND] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_SQUOTE] = ACTIONS(1803), + [anon_sym_async] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_fn] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_impl] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_mod] = ACTIONS(1803), + [anon_sym_pub] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_struct] = ACTIONS(1803), + [anon_sym_trait] = ACTIONS(1803), + [anon_sym_type] = ACTIONS(1803), + [anon_sym_union] = ACTIONS(1803), + [anon_sym_unsafe] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1801), + [anon_sym_yield] = ACTIONS(1803), + [anon_sym_move] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [sym_integer_literal] = ACTIONS(1801), + [aux_sym_string_literal_token1] = ACTIONS(1801), + [sym_char_literal] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1803), + [sym_super] = ACTIONS(1803), + [sym_crate] = ACTIONS(1803), + [sym_metavariable] = ACTIONS(1801), + [sym_raw_string_literal] = ACTIONS(1801), + [sym_float_literal] = ACTIONS(1801), }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_macro_rules_BANG] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_u8] = ACTIONS(2167), - [anon_sym_i8] = ACTIONS(2167), - [anon_sym_u16] = ACTIONS(2167), - [anon_sym_i16] = ACTIONS(2167), - [anon_sym_u32] = ACTIONS(2167), - [anon_sym_i32] = ACTIONS(2167), - [anon_sym_u64] = ACTIONS(2167), - [anon_sym_i64] = ACTIONS(2167), - [anon_sym_u128] = ACTIONS(2167), - [anon_sym_i128] = ACTIONS(2167), - [anon_sym_isize] = ACTIONS(2167), - [anon_sym_usize] = ACTIONS(2167), - [anon_sym_f32] = ACTIONS(2167), - [anon_sym_f64] = ACTIONS(2167), - [anon_sym_bool] = ACTIONS(2167), - [anon_sym_str] = ACTIONS(2167), - [anon_sym_char] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_COLON_COLON] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_impl] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_loop] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_mod] = ACTIONS(2167), - [anon_sym_pub] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_trait] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_use] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2167), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_move] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [sym_integer_literal] = ACTIONS(2165), - [aux_sym_string_literal_token1] = ACTIONS(2165), - [sym_char_literal] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_crate] = ACTIONS(2167), - [sym_metavariable] = ACTIONS(2165), - [sym_raw_string_literal] = ACTIONS(2165), - [sym_float_literal] = ACTIONS(2165), - [sym_block_comment] = ACTIONS(3), + [519] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), + [ts_builtin_sym_end] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_macro_rules_BANG] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_u8] = ACTIONS(1807), + [anon_sym_i8] = ACTIONS(1807), + [anon_sym_u16] = ACTIONS(1807), + [anon_sym_i16] = ACTIONS(1807), + [anon_sym_u32] = ACTIONS(1807), + [anon_sym_i32] = ACTIONS(1807), + [anon_sym_u64] = ACTIONS(1807), + [anon_sym_i64] = ACTIONS(1807), + [anon_sym_u128] = ACTIONS(1807), + [anon_sym_i128] = ACTIONS(1807), + [anon_sym_isize] = ACTIONS(1807), + [anon_sym_usize] = ACTIONS(1807), + [anon_sym_f32] = ACTIONS(1807), + [anon_sym_f64] = ACTIONS(1807), + [anon_sym_bool] = ACTIONS(1807), + [anon_sym_str] = ACTIONS(1807), + [anon_sym_char] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1805), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1805), + [anon_sym_POUND] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_PIPE] = ACTIONS(1805), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_async] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_const] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [anon_sym_fn] = ACTIONS(1807), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_impl] = ACTIONS(1807), + [anon_sym_let] = ACTIONS(1807), + [anon_sym_loop] = ACTIONS(1807), + [anon_sym_match] = ACTIONS(1807), + [anon_sym_mod] = ACTIONS(1807), + [anon_sym_pub] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1807), + [anon_sym_trait] = ACTIONS(1807), + [anon_sym_type] = ACTIONS(1807), + [anon_sym_union] = ACTIONS(1807), + [anon_sym_unsafe] = ACTIONS(1807), + [anon_sym_use] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1807), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_yield] = ACTIONS(1807), + [anon_sym_move] = ACTIONS(1807), + [anon_sym_try] = ACTIONS(1807), + [sym_integer_literal] = ACTIONS(1805), + [aux_sym_string_literal_token1] = ACTIONS(1805), + [sym_char_literal] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(1807), + [anon_sym_false] = ACTIONS(1807), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1807), + [sym_super] = ACTIONS(1807), + [sym_crate] = ACTIONS(1807), + [sym_metavariable] = ACTIONS(1805), + [sym_raw_string_literal] = ACTIONS(1805), + [sym_float_literal] = ACTIONS(1805), }, - [577] = { - [ts_builtin_sym_end] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_macro_rules_BANG] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(2171), - [anon_sym_i8] = ACTIONS(2171), - [anon_sym_u16] = ACTIONS(2171), - [anon_sym_i16] = ACTIONS(2171), - [anon_sym_u32] = ACTIONS(2171), - [anon_sym_i32] = ACTIONS(2171), - [anon_sym_u64] = ACTIONS(2171), - [anon_sym_i64] = ACTIONS(2171), - [anon_sym_u128] = ACTIONS(2171), - [anon_sym_i128] = ACTIONS(2171), - [anon_sym_isize] = ACTIONS(2171), - [anon_sym_usize] = ACTIONS(2171), - [anon_sym_f32] = ACTIONS(2171), - [anon_sym_f64] = ACTIONS(2171), - [anon_sym_bool] = ACTIONS(2171), - [anon_sym_str] = ACTIONS(2171), - [anon_sym_char] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_async] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_mod] = ACTIONS(2171), - [anon_sym_pub] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_trait] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_DOT_DOT] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2171), - [anon_sym_move] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2171), - [sym_integer_literal] = ACTIONS(2169), - [aux_sym_string_literal_token1] = ACTIONS(2169), - [sym_char_literal] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(2171), - [anon_sym_false] = ACTIONS(2171), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2171), - [sym_super] = ACTIONS(2171), - [sym_crate] = ACTIONS(2171), - [sym_metavariable] = ACTIONS(2169), - [sym_raw_string_literal] = ACTIONS(2169), - [sym_float_literal] = ACTIONS(2169), - [sym_block_comment] = ACTIONS(3), + [520] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_macro_rules_BANG] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_u8] = ACTIONS(1811), + [anon_sym_i8] = ACTIONS(1811), + [anon_sym_u16] = ACTIONS(1811), + [anon_sym_i16] = ACTIONS(1811), + [anon_sym_u32] = ACTIONS(1811), + [anon_sym_i32] = ACTIONS(1811), + [anon_sym_u64] = ACTIONS(1811), + [anon_sym_i64] = ACTIONS(1811), + [anon_sym_u128] = ACTIONS(1811), + [anon_sym_i128] = ACTIONS(1811), + [anon_sym_isize] = ACTIONS(1811), + [anon_sym_usize] = ACTIONS(1811), + [anon_sym_f32] = ACTIONS(1811), + [anon_sym_f64] = ACTIONS(1811), + [anon_sym_bool] = ACTIONS(1811), + [anon_sym_str] = ACTIONS(1811), + [anon_sym_char] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_SQUOTE] = ACTIONS(1811), + [anon_sym_async] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_fn] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_impl] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_loop] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_mod] = ACTIONS(1811), + [anon_sym_pub] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_struct] = ACTIONS(1811), + [anon_sym_trait] = ACTIONS(1811), + [anon_sym_type] = ACTIONS(1811), + [anon_sym_union] = ACTIONS(1811), + [anon_sym_unsafe] = ACTIONS(1811), + [anon_sym_use] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1809), + [anon_sym_yield] = ACTIONS(1811), + [anon_sym_move] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [sym_integer_literal] = ACTIONS(1809), + [aux_sym_string_literal_token1] = ACTIONS(1809), + [sym_char_literal] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1811), + [sym_super] = ACTIONS(1811), + [sym_crate] = ACTIONS(1811), + [sym_metavariable] = ACTIONS(1809), + [sym_raw_string_literal] = ACTIONS(1809), + [sym_float_literal] = ACTIONS(1809), }, - [578] = { - [ts_builtin_sym_end] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_macro_rules_BANG] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_u8] = ACTIONS(2175), - [anon_sym_i8] = ACTIONS(2175), - [anon_sym_u16] = ACTIONS(2175), - [anon_sym_i16] = ACTIONS(2175), - [anon_sym_u32] = ACTIONS(2175), - [anon_sym_i32] = ACTIONS(2175), - [anon_sym_u64] = ACTIONS(2175), - [anon_sym_i64] = ACTIONS(2175), - [anon_sym_u128] = ACTIONS(2175), - [anon_sym_i128] = ACTIONS(2175), - [anon_sym_isize] = ACTIONS(2175), - [anon_sym_usize] = ACTIONS(2175), - [anon_sym_f32] = ACTIONS(2175), - [anon_sym_f64] = ACTIONS(2175), - [anon_sym_bool] = ACTIONS(2175), - [anon_sym_str] = ACTIONS(2175), - [anon_sym_char] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_impl] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_mod] = ACTIONS(2175), - [anon_sym_pub] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_trait] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_move] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2173), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_crate] = ACTIONS(2175), - [sym_metavariable] = ACTIONS(2173), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), + [521] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_macro_rules_BANG] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1813), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_u8] = ACTIONS(1815), + [anon_sym_i8] = ACTIONS(1815), + [anon_sym_u16] = ACTIONS(1815), + [anon_sym_i16] = ACTIONS(1815), + [anon_sym_u32] = ACTIONS(1815), + [anon_sym_i32] = ACTIONS(1815), + [anon_sym_u64] = ACTIONS(1815), + [anon_sym_i64] = ACTIONS(1815), + [anon_sym_u128] = ACTIONS(1815), + [anon_sym_i128] = ACTIONS(1815), + [anon_sym_isize] = ACTIONS(1815), + [anon_sym_usize] = ACTIONS(1815), + [anon_sym_f32] = ACTIONS(1815), + [anon_sym_f64] = ACTIONS(1815), + [anon_sym_bool] = ACTIONS(1815), + [anon_sym_str] = ACTIONS(1815), + [anon_sym_char] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_COLON_COLON] = ACTIONS(1813), + [anon_sym_BANG] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_POUND] = ACTIONS(1813), + [anon_sym_LT] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_SQUOTE] = ACTIONS(1815), + [anon_sym_async] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_enum] = ACTIONS(1815), + [anon_sym_fn] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_impl] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_loop] = ACTIONS(1815), + [anon_sym_match] = ACTIONS(1815), + [anon_sym_mod] = ACTIONS(1815), + [anon_sym_pub] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_static] = ACTIONS(1815), + [anon_sym_struct] = ACTIONS(1815), + [anon_sym_trait] = ACTIONS(1815), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_union] = ACTIONS(1815), + [anon_sym_unsafe] = ACTIONS(1815), + [anon_sym_use] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(1815), + [anon_sym_DOT_DOT] = ACTIONS(1813), + [anon_sym_yield] = ACTIONS(1815), + [anon_sym_move] = ACTIONS(1815), + [anon_sym_try] = ACTIONS(1815), + [sym_integer_literal] = ACTIONS(1813), + [aux_sym_string_literal_token1] = ACTIONS(1813), + [sym_char_literal] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1815), + [anon_sym_false] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1815), + [sym_super] = ACTIONS(1815), + [sym_crate] = ACTIONS(1815), + [sym_metavariable] = ACTIONS(1813), + [sym_raw_string_literal] = ACTIONS(1813), + [sym_float_literal] = ACTIONS(1813), }, - [579] = { - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2177), - [anon_sym_macro_rules_BANG] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_u8] = ACTIONS(2179), - [anon_sym_i8] = ACTIONS(2179), - [anon_sym_u16] = ACTIONS(2179), - [anon_sym_i16] = ACTIONS(2179), - [anon_sym_u32] = ACTIONS(2179), - [anon_sym_i32] = ACTIONS(2179), - [anon_sym_u64] = ACTIONS(2179), - [anon_sym_i64] = ACTIONS(2179), - [anon_sym_u128] = ACTIONS(2179), - [anon_sym_i128] = ACTIONS(2179), - [anon_sym_isize] = ACTIONS(2179), - [anon_sym_usize] = ACTIONS(2179), - [anon_sym_f32] = ACTIONS(2179), - [anon_sym_f64] = ACTIONS(2179), - [anon_sym_bool] = ACTIONS(2179), - [anon_sym_str] = ACTIONS(2179), - [anon_sym_char] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_impl] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_loop] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_mod] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_static] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_trait] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_use] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2179), - [anon_sym_DOT_DOT] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2179), - [anon_sym_move] = ACTIONS(2179), - [anon_sym_try] = ACTIONS(2179), - [sym_integer_literal] = ACTIONS(2177), - [aux_sym_string_literal_token1] = ACTIONS(2177), - [sym_char_literal] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(2179), - [anon_sym_false] = ACTIONS(2179), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2179), - [sym_super] = ACTIONS(2179), - [sym_crate] = ACTIONS(2179), - [sym_metavariable] = ACTIONS(2177), - [sym_raw_string_literal] = ACTIONS(2177), - [sym_float_literal] = ACTIONS(2177), - [sym_block_comment] = ACTIONS(3), + [522] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(1817), + [sym_identifier] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_macro_rules_BANG] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1817), + [anon_sym_u8] = ACTIONS(1819), + [anon_sym_i8] = ACTIONS(1819), + [anon_sym_u16] = ACTIONS(1819), + [anon_sym_i16] = ACTIONS(1819), + [anon_sym_u32] = ACTIONS(1819), + [anon_sym_i32] = ACTIONS(1819), + [anon_sym_u64] = ACTIONS(1819), + [anon_sym_i64] = ACTIONS(1819), + [anon_sym_u128] = ACTIONS(1819), + [anon_sym_i128] = ACTIONS(1819), + [anon_sym_isize] = ACTIONS(1819), + [anon_sym_usize] = ACTIONS(1819), + [anon_sym_f32] = ACTIONS(1819), + [anon_sym_f64] = ACTIONS(1819), + [anon_sym_bool] = ACTIONS(1819), + [anon_sym_str] = ACTIONS(1819), + [anon_sym_char] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(1817), + [anon_sym_COLON_COLON] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1817), + [anon_sym_AMP] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(1817), + [anon_sym_LT] = ACTIONS(1817), + [anon_sym_PIPE] = ACTIONS(1817), + [anon_sym_SQUOTE] = ACTIONS(1819), + [anon_sym_async] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_default] = ACTIONS(1819), + [anon_sym_enum] = ACTIONS(1819), + [anon_sym_fn] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_impl] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_mod] = ACTIONS(1819), + [anon_sym_pub] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1819), + [anon_sym_struct] = ACTIONS(1819), + [anon_sym_trait] = ACTIONS(1819), + [anon_sym_type] = ACTIONS(1819), + [anon_sym_union] = ACTIONS(1819), + [anon_sym_unsafe] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1819), + [anon_sym_move] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1819), + [sym_integer_literal] = ACTIONS(1817), + [aux_sym_string_literal_token1] = ACTIONS(1817), + [sym_char_literal] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1819), + [sym_super] = ACTIONS(1819), + [sym_crate] = ACTIONS(1819), + [sym_metavariable] = ACTIONS(1817), + [sym_raw_string_literal] = ACTIONS(1817), + [sym_float_literal] = ACTIONS(1817), }, - [580] = { - [ts_builtin_sym_end] = ACTIONS(2181), - [sym_identifier] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_macro_rules_BANG] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_u8] = ACTIONS(2183), - [anon_sym_i8] = ACTIONS(2183), - [anon_sym_u16] = ACTIONS(2183), - [anon_sym_i16] = ACTIONS(2183), - [anon_sym_u32] = ACTIONS(2183), - [anon_sym_i32] = ACTIONS(2183), - [anon_sym_u64] = ACTIONS(2183), - [anon_sym_i64] = ACTIONS(2183), - [anon_sym_u128] = ACTIONS(2183), - [anon_sym_i128] = ACTIONS(2183), - [anon_sym_isize] = ACTIONS(2183), - [anon_sym_usize] = ACTIONS(2183), - [anon_sym_f32] = ACTIONS(2183), - [anon_sym_f64] = ACTIONS(2183), - [anon_sym_bool] = ACTIONS(2183), - [anon_sym_str] = ACTIONS(2183), - [anon_sym_char] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_impl] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_mod] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_trait] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_DOT_DOT] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_move] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [sym_integer_literal] = ACTIONS(2181), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_crate] = ACTIONS(2183), - [sym_metavariable] = ACTIONS(2181), - [sym_raw_string_literal] = ACTIONS(2181), - [sym_float_literal] = ACTIONS(2181), - [sym_block_comment] = ACTIONS(3), + [523] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_macro_rules_BANG] = ACTIONS(1821), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_u8] = ACTIONS(1823), + [anon_sym_i8] = ACTIONS(1823), + [anon_sym_u16] = ACTIONS(1823), + [anon_sym_i16] = ACTIONS(1823), + [anon_sym_u32] = ACTIONS(1823), + [anon_sym_i32] = ACTIONS(1823), + [anon_sym_u64] = ACTIONS(1823), + [anon_sym_i64] = ACTIONS(1823), + [anon_sym_u128] = ACTIONS(1823), + [anon_sym_i128] = ACTIONS(1823), + [anon_sym_isize] = ACTIONS(1823), + [anon_sym_usize] = ACTIONS(1823), + [anon_sym_f32] = ACTIONS(1823), + [anon_sym_f64] = ACTIONS(1823), + [anon_sym_bool] = ACTIONS(1823), + [anon_sym_str] = ACTIONS(1823), + [anon_sym_char] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1821), + [anon_sym_COLON_COLON] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_POUND] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1821), + [anon_sym_PIPE] = ACTIONS(1821), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_async] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_fn] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_impl] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_loop] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_mod] = ACTIONS(1823), + [anon_sym_pub] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_struct] = ACTIONS(1823), + [anon_sym_trait] = ACTIONS(1823), + [anon_sym_type] = ACTIONS(1823), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_unsafe] = ACTIONS(1823), + [anon_sym_use] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1821), + [anon_sym_yield] = ACTIONS(1823), + [anon_sym_move] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [sym_integer_literal] = ACTIONS(1821), + [aux_sym_string_literal_token1] = ACTIONS(1821), + [sym_char_literal] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_crate] = ACTIONS(1823), + [sym_metavariable] = ACTIONS(1821), + [sym_raw_string_literal] = ACTIONS(1821), + [sym_float_literal] = ACTIONS(1821), }, - [581] = { - [sym_empty_statement] = STATE(595), - [sym_macro_definition] = STATE(595), - [sym_attribute_item] = STATE(595), - [sym_inner_attribute_item] = STATE(595), - [sym_mod_item] = STATE(595), - [sym_foreign_mod_item] = STATE(595), - [sym_struct_item] = STATE(595), - [sym_union_item] = STATE(595), - [sym_enum_item] = STATE(595), - [sym_extern_crate_declaration] = STATE(595), - [sym_const_item] = STATE(595), - [sym_static_item] = STATE(595), - [sym_type_item] = STATE(595), - [sym_function_item] = STATE(595), - [sym_function_signature_item] = STATE(595), - [sym_function_modifiers] = STATE(3451), - [sym_impl_item] = STATE(595), - [sym_trait_item] = STATE(595), - [sym_associated_type] = STATE(595), - [sym_let_declaration] = STATE(595), - [sym_use_declaration] = STATE(595), - [sym_extern_modifier] = STATE(2079), - [sym_visibility_modifier] = STATE(1907), - [sym_bracketed_type] = STATE(3198), - [sym_generic_type_with_turbofish] = STATE(3220), - [sym_macro_invocation] = STATE(595), - [sym_scoped_identifier] = STATE(3036), - [aux_sym_declaration_list_repeat1] = STATE(595), - [aux_sym_function_modifiers_repeat1] = STATE(2180), + [524] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), + [ts_builtin_sym_end] = ACTIONS(1825), [sym_identifier] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_u8] = ACTIONS(1835), - [anon_sym_i8] = ACTIONS(1835), - [anon_sym_u16] = ACTIONS(1835), - [anon_sym_i16] = ACTIONS(1835), - [anon_sym_u32] = ACTIONS(1835), - [anon_sym_i32] = ACTIONS(1835), - [anon_sym_u64] = ACTIONS(1835), - [anon_sym_i64] = ACTIONS(1835), - [anon_sym_u128] = ACTIONS(1835), - [anon_sym_i128] = ACTIONS(1835), - [anon_sym_isize] = ACTIONS(1835), - [anon_sym_usize] = ACTIONS(1835), - [anon_sym_f32] = ACTIONS(1835), - [anon_sym_f64] = ACTIONS(1835), - [anon_sym_bool] = ACTIONS(1835), - [anon_sym_str] = ACTIONS(1835), - [anon_sym_char] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1847), - [anon_sym_impl] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_mod] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_trait] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_unsafe] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1869), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_crate] = ACTIONS(1873), - [sym_metavariable] = ACTIONS(1875), - [sym_block_comment] = ACTIONS(3), - }, - [582] = { - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_macro_rules_BANG] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2189), - [anon_sym_i8] = ACTIONS(2189), - [anon_sym_u16] = ACTIONS(2189), - [anon_sym_i16] = ACTIONS(2189), - [anon_sym_u32] = ACTIONS(2189), - [anon_sym_i32] = ACTIONS(2189), - [anon_sym_u64] = ACTIONS(2189), - [anon_sym_i64] = ACTIONS(2189), - [anon_sym_u128] = ACTIONS(2189), - [anon_sym_i128] = ACTIONS(2189), - [anon_sym_isize] = ACTIONS(2189), - [anon_sym_usize] = ACTIONS(2189), - [anon_sym_f32] = ACTIONS(2189), - [anon_sym_f64] = ACTIONS(2189), - [anon_sym_bool] = ACTIONS(2189), - [anon_sym_str] = ACTIONS(2189), - [anon_sym_char] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_POUND] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2187), - [anon_sym_PIPE] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_impl] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_loop] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_mod] = ACTIONS(2189), - [anon_sym_pub] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_extern] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_move] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_crate] = ACTIONS(2189), - [sym_metavariable] = ACTIONS(2187), - [sym_raw_string_literal] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), - [sym_block_comment] = ACTIONS(3), - }, - [583] = { - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_macro_rules_BANG] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2193), - [anon_sym_i8] = ACTIONS(2193), - [anon_sym_u16] = ACTIONS(2193), - [anon_sym_i16] = ACTIONS(2193), - [anon_sym_u32] = ACTIONS(2193), - [anon_sym_i32] = ACTIONS(2193), - [anon_sym_u64] = ACTIONS(2193), - [anon_sym_i64] = ACTIONS(2193), - [anon_sym_u128] = ACTIONS(2193), - [anon_sym_i128] = ACTIONS(2193), - [anon_sym_isize] = ACTIONS(2193), - [anon_sym_usize] = ACTIONS(2193), - [anon_sym_f32] = ACTIONS(2193), - [anon_sym_f64] = ACTIONS(2193), - [anon_sym_bool] = ACTIONS(2193), - [anon_sym_str] = ACTIONS(2193), - [anon_sym_char] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_COLON_COLON] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_POUND] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_impl] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_loop] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_mod] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_extern] = ACTIONS(2193), - [anon_sym_DOT_DOT] = ACTIONS(2191), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_move] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [sym_integer_literal] = ACTIONS(2191), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_crate] = ACTIONS(2193), - [sym_metavariable] = ACTIONS(2191), - [sym_raw_string_literal] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2191), - [sym_block_comment] = ACTIONS(3), - }, - [584] = { - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_macro_rules_BANG] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_u8] = ACTIONS(2197), - [anon_sym_i8] = ACTIONS(2197), - [anon_sym_u16] = ACTIONS(2197), - [anon_sym_i16] = ACTIONS(2197), - [anon_sym_u32] = ACTIONS(2197), - [anon_sym_i32] = ACTIONS(2197), - [anon_sym_u64] = ACTIONS(2197), - [anon_sym_i64] = ACTIONS(2197), - [anon_sym_u128] = ACTIONS(2197), - [anon_sym_i128] = ACTIONS(2197), - [anon_sym_isize] = ACTIONS(2197), - [anon_sym_usize] = ACTIONS(2197), - [anon_sym_f32] = ACTIONS(2197), - [anon_sym_f64] = ACTIONS(2197), - [anon_sym_bool] = ACTIONS(2197), - [anon_sym_str] = ACTIONS(2197), - [anon_sym_char] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_COLON_COLON] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_POUND] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_impl] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_mod] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_DOT_DOT] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_move] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2195), - [aux_sym_string_literal_token1] = ACTIONS(2195), - [sym_char_literal] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2195), - [sym_raw_string_literal] = ACTIONS(2195), - [sym_float_literal] = ACTIONS(2195), - [sym_block_comment] = ACTIONS(3), - }, - [585] = { - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_macro_rules_BANG] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2201), - [anon_sym_i8] = ACTIONS(2201), - [anon_sym_u16] = ACTIONS(2201), - [anon_sym_i16] = ACTIONS(2201), - [anon_sym_u32] = ACTIONS(2201), - [anon_sym_i32] = ACTIONS(2201), - [anon_sym_u64] = ACTIONS(2201), - [anon_sym_i64] = ACTIONS(2201), - [anon_sym_u128] = ACTIONS(2201), - [anon_sym_i128] = ACTIONS(2201), - [anon_sym_isize] = ACTIONS(2201), - [anon_sym_usize] = ACTIONS(2201), - [anon_sym_f32] = ACTIONS(2201), - [anon_sym_f64] = ACTIONS(2201), - [anon_sym_bool] = ACTIONS(2201), - [anon_sym_str] = ACTIONS(2201), - [anon_sym_char] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_COLON_COLON] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_impl] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_mod] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_DOT_DOT] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_move] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2199), - [aux_sym_string_literal_token1] = ACTIONS(2199), - [sym_char_literal] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_metavariable] = ACTIONS(2199), - [sym_raw_string_literal] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2199), - [sym_block_comment] = ACTIONS(3), - }, - [586] = { - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_macro_rules_BANG] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_u8] = ACTIONS(2205), - [anon_sym_i8] = ACTIONS(2205), - [anon_sym_u16] = ACTIONS(2205), - [anon_sym_i16] = ACTIONS(2205), - [anon_sym_u32] = ACTIONS(2205), - [anon_sym_i32] = ACTIONS(2205), - [anon_sym_u64] = ACTIONS(2205), - [anon_sym_i64] = ACTIONS(2205), - [anon_sym_u128] = ACTIONS(2205), - [anon_sym_i128] = ACTIONS(2205), - [anon_sym_isize] = ACTIONS(2205), - [anon_sym_usize] = ACTIONS(2205), - [anon_sym_f32] = ACTIONS(2205), - [anon_sym_f64] = ACTIONS(2205), - [anon_sym_bool] = ACTIONS(2205), - [anon_sym_str] = ACTIONS(2205), - [anon_sym_char] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_COLON_COLON] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_impl] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_loop] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_mod] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_extern] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_move] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2203), - [aux_sym_string_literal_token1] = ACTIONS(2203), - [sym_char_literal] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_crate] = ACTIONS(2205), - [sym_metavariable] = ACTIONS(2203), - [sym_raw_string_literal] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2203), - [sym_block_comment] = ACTIONS(3), - }, - [587] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_macro_rules_BANG] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2209), - [anon_sym_i8] = ACTIONS(2209), - [anon_sym_u16] = ACTIONS(2209), - [anon_sym_i16] = ACTIONS(2209), - [anon_sym_u32] = ACTIONS(2209), - [anon_sym_i32] = ACTIONS(2209), - [anon_sym_u64] = ACTIONS(2209), - [anon_sym_i64] = ACTIONS(2209), - [anon_sym_u128] = ACTIONS(2209), - [anon_sym_i128] = ACTIONS(2209), - [anon_sym_isize] = ACTIONS(2209), - [anon_sym_usize] = ACTIONS(2209), - [anon_sym_f32] = ACTIONS(2209), - [anon_sym_f64] = ACTIONS(2209), - [anon_sym_bool] = ACTIONS(2209), - [anon_sym_str] = ACTIONS(2209), - [anon_sym_char] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_COLON_COLON] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_POUND] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_impl] = ACTIONS(2209), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_loop] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_mod] = ACTIONS(2209), - [anon_sym_pub] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_extern] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_move] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(2207), - [aux_sym_string_literal_token1] = ACTIONS(2207), - [sym_char_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2209), - [sym_super] = ACTIONS(2209), - [sym_crate] = ACTIONS(2209), - [sym_metavariable] = ACTIONS(2207), - [sym_raw_string_literal] = ACTIONS(2207), - [sym_float_literal] = ACTIONS(2207), - [sym_block_comment] = ACTIONS(3), - }, - [588] = { - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_macro_rules_BANG] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2213), - [anon_sym_i8] = ACTIONS(2213), - [anon_sym_u16] = ACTIONS(2213), - [anon_sym_i16] = ACTIONS(2213), - [anon_sym_u32] = ACTIONS(2213), - [anon_sym_i32] = ACTIONS(2213), - [anon_sym_u64] = ACTIONS(2213), - [anon_sym_i64] = ACTIONS(2213), - [anon_sym_u128] = ACTIONS(2213), - [anon_sym_i128] = ACTIONS(2213), - [anon_sym_isize] = ACTIONS(2213), - [anon_sym_usize] = ACTIONS(2213), - [anon_sym_f32] = ACTIONS(2213), - [anon_sym_f64] = ACTIONS(2213), - [anon_sym_bool] = ACTIONS(2213), - [anon_sym_str] = ACTIONS(2213), - [anon_sym_char] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_COLON_COLON] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_POUND] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_impl] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_loop] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_mod] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_extern] = ACTIONS(2213), - [anon_sym_DOT_DOT] = ACTIONS(2211), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_move] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [sym_integer_literal] = ACTIONS(2211), - [aux_sym_string_literal_token1] = ACTIONS(2211), - [sym_char_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_crate] = ACTIONS(2213), - [sym_metavariable] = ACTIONS(2211), - [sym_raw_string_literal] = ACTIONS(2211), - [sym_float_literal] = ACTIONS(2211), - [sym_block_comment] = ACTIONS(3), - }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_macro_rules_BANG] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_u8] = ACTIONS(2217), - [anon_sym_i8] = ACTIONS(2217), - [anon_sym_u16] = ACTIONS(2217), - [anon_sym_i16] = ACTIONS(2217), - [anon_sym_u32] = ACTIONS(2217), - [anon_sym_i32] = ACTIONS(2217), - [anon_sym_u64] = ACTIONS(2217), - [anon_sym_i64] = ACTIONS(2217), - [anon_sym_u128] = ACTIONS(2217), - [anon_sym_i128] = ACTIONS(2217), - [anon_sym_isize] = ACTIONS(2217), - [anon_sym_usize] = ACTIONS(2217), - [anon_sym_f32] = ACTIONS(2217), - [anon_sym_f64] = ACTIONS(2217), - [anon_sym_bool] = ACTIONS(2217), - [anon_sym_str] = ACTIONS(2217), - [anon_sym_char] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_POUND] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_impl] = ACTIONS(2217), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_loop] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_mod] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_extern] = ACTIONS(2217), - [anon_sym_DOT_DOT] = ACTIONS(2215), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_move] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2215), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), - [sym_metavariable] = ACTIONS(2215), - [sym_raw_string_literal] = ACTIONS(2215), - [sym_float_literal] = ACTIONS(2215), - [sym_block_comment] = ACTIONS(3), - }, - [590] = { - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_macro_rules_BANG] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(2221), - [anon_sym_i8] = ACTIONS(2221), - [anon_sym_u16] = ACTIONS(2221), - [anon_sym_i16] = ACTIONS(2221), - [anon_sym_u32] = ACTIONS(2221), - [anon_sym_i32] = ACTIONS(2221), - [anon_sym_u64] = ACTIONS(2221), - [anon_sym_i64] = ACTIONS(2221), - [anon_sym_u128] = ACTIONS(2221), - [anon_sym_i128] = ACTIONS(2221), - [anon_sym_isize] = ACTIONS(2221), - [anon_sym_usize] = ACTIONS(2221), - [anon_sym_f32] = ACTIONS(2221), - [anon_sym_f64] = ACTIONS(2221), - [anon_sym_bool] = ACTIONS(2221), - [anon_sym_str] = ACTIONS(2221), - [anon_sym_char] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_COLON_COLON] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_mod] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(2221), - [anon_sym_DOT_DOT] = ACTIONS(2219), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_move] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2219), - [aux_sym_string_literal_token1] = ACTIONS(2219), - [sym_char_literal] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_metavariable] = ACTIONS(2219), - [sym_raw_string_literal] = ACTIONS(2219), - [sym_float_literal] = ACTIONS(2219), - [sym_block_comment] = ACTIONS(3), - }, - [591] = { - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_macro_rules_BANG] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_u8] = ACTIONS(2225), - [anon_sym_i8] = ACTIONS(2225), - [anon_sym_u16] = ACTIONS(2225), - [anon_sym_i16] = ACTIONS(2225), - [anon_sym_u32] = ACTIONS(2225), - [anon_sym_i32] = ACTIONS(2225), - [anon_sym_u64] = ACTIONS(2225), - [anon_sym_i64] = ACTIONS(2225), - [anon_sym_u128] = ACTIONS(2225), - [anon_sym_i128] = ACTIONS(2225), - [anon_sym_isize] = ACTIONS(2225), - [anon_sym_usize] = ACTIONS(2225), - [anon_sym_f32] = ACTIONS(2225), - [anon_sym_f64] = ACTIONS(2225), - [anon_sym_bool] = ACTIONS(2225), - [anon_sym_str] = ACTIONS(2225), - [anon_sym_char] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_COLON_COLON] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_impl] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_loop] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_mod] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_extern] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_move] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2223), - [aux_sym_string_literal_token1] = ACTIONS(2223), - [sym_char_literal] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_metavariable] = ACTIONS(2223), - [sym_raw_string_literal] = ACTIONS(2223), - [sym_float_literal] = ACTIONS(2223), - [sym_block_comment] = ACTIONS(3), - }, - [592] = { - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_macro_rules_BANG] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u128] = ACTIONS(2229), - [anon_sym_i128] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_str] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_COLON_COLON] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_impl] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_mod] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_DOT_DOT] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_move] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2227), - [aux_sym_string_literal_token1] = ACTIONS(2227), - [sym_char_literal] = ACTIONS(2227), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), - [sym_metavariable] = ACTIONS(2227), - [sym_raw_string_literal] = ACTIONS(2227), - [sym_float_literal] = ACTIONS(2227), - [sym_block_comment] = ACTIONS(3), - }, - [593] = { - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_macro_rules_BANG] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_u8] = ACTIONS(2233), - [anon_sym_i8] = ACTIONS(2233), - [anon_sym_u16] = ACTIONS(2233), - [anon_sym_i16] = ACTIONS(2233), - [anon_sym_u32] = ACTIONS(2233), - [anon_sym_i32] = ACTIONS(2233), - [anon_sym_u64] = ACTIONS(2233), - [anon_sym_i64] = ACTIONS(2233), - [anon_sym_u128] = ACTIONS(2233), - [anon_sym_i128] = ACTIONS(2233), - [anon_sym_isize] = ACTIONS(2233), - [anon_sym_usize] = ACTIONS(2233), - [anon_sym_f32] = ACTIONS(2233), - [anon_sym_f64] = ACTIONS(2233), - [anon_sym_bool] = ACTIONS(2233), - [anon_sym_str] = ACTIONS(2233), - [anon_sym_char] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_COLON_COLON] = ACTIONS(2231), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_POUND] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_impl] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_mod] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_extern] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_move] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [sym_integer_literal] = ACTIONS(2231), - [aux_sym_string_literal_token1] = ACTIONS(2231), - [sym_char_literal] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_crate] = ACTIONS(2233), - [sym_metavariable] = ACTIONS(2231), - [sym_raw_string_literal] = ACTIONS(2231), - [sym_float_literal] = ACTIONS(2231), - [sym_block_comment] = ACTIONS(3), - }, - [594] = { - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_macro_rules_BANG] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_STAR] = ACTIONS(2235), - [anon_sym_u8] = ACTIONS(2237), - [anon_sym_i8] = ACTIONS(2237), - [anon_sym_u16] = ACTIONS(2237), - [anon_sym_i16] = ACTIONS(2237), - [anon_sym_u32] = ACTIONS(2237), - [anon_sym_i32] = ACTIONS(2237), - [anon_sym_u64] = ACTIONS(2237), - [anon_sym_i64] = ACTIONS(2237), - [anon_sym_u128] = ACTIONS(2237), - [anon_sym_i128] = ACTIONS(2237), - [anon_sym_isize] = ACTIONS(2237), - [anon_sym_usize] = ACTIONS(2237), - [anon_sym_f32] = ACTIONS(2237), - [anon_sym_f64] = ACTIONS(2237), - [anon_sym_bool] = ACTIONS(2237), - [anon_sym_str] = ACTIONS(2237), - [anon_sym_char] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_COLON_COLON] = ACTIONS(2235), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_AMP] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(2235), - [anon_sym_PIPE] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_impl] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_mod] = ACTIONS(2237), - [anon_sym_pub] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_union] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_DOT_DOT] = ACTIONS(2235), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_move] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [sym_integer_literal] = ACTIONS(2235), - [aux_sym_string_literal_token1] = ACTIONS(2235), - [sym_char_literal] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_crate] = ACTIONS(2237), - [sym_metavariable] = ACTIONS(2235), - [sym_raw_string_literal] = ACTIONS(2235), - [sym_float_literal] = ACTIONS(2235), - [sym_block_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_macro_rules_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_u8] = ACTIONS(1827), + [anon_sym_i8] = ACTIONS(1827), + [anon_sym_u16] = ACTIONS(1827), + [anon_sym_i16] = ACTIONS(1827), + [anon_sym_u32] = ACTIONS(1827), + [anon_sym_i32] = ACTIONS(1827), + [anon_sym_u64] = ACTIONS(1827), + [anon_sym_i64] = ACTIONS(1827), + [anon_sym_u128] = ACTIONS(1827), + [anon_sym_i128] = ACTIONS(1827), + [anon_sym_isize] = ACTIONS(1827), + [anon_sym_usize] = ACTIONS(1827), + [anon_sym_f32] = ACTIONS(1827), + [anon_sym_f64] = ACTIONS(1827), + [anon_sym_bool] = ACTIONS(1827), + [anon_sym_str] = ACTIONS(1827), + [anon_sym_char] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_POUND] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1825), + [anon_sym_PIPE] = ACTIONS(1825), + [anon_sym_SQUOTE] = ACTIONS(1827), + [anon_sym_async] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_fn] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_impl] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_loop] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_mod] = ACTIONS(1827), + [anon_sym_pub] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_struct] = ACTIONS(1827), + [anon_sym_trait] = ACTIONS(1827), + [anon_sym_type] = ACTIONS(1827), + [anon_sym_union] = ACTIONS(1827), + [anon_sym_unsafe] = ACTIONS(1827), + [anon_sym_use] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1827), + [anon_sym_move] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [sym_integer_literal] = ACTIONS(1825), + [aux_sym_string_literal_token1] = ACTIONS(1825), + [sym_char_literal] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1827), + [sym_super] = ACTIONS(1827), + [sym_crate] = ACTIONS(1827), + [sym_metavariable] = ACTIONS(1825), + [sym_raw_string_literal] = ACTIONS(1825), + [sym_float_literal] = ACTIONS(1825), }, - [595] = { - [sym_empty_statement] = STATE(709), - [sym_macro_definition] = STATE(709), - [sym_attribute_item] = STATE(709), - [sym_inner_attribute_item] = STATE(709), - [sym_mod_item] = STATE(709), - [sym_foreign_mod_item] = STATE(709), - [sym_struct_item] = STATE(709), - [sym_union_item] = STATE(709), - [sym_enum_item] = STATE(709), - [sym_extern_crate_declaration] = STATE(709), - [sym_const_item] = STATE(709), - [sym_static_item] = STATE(709), - [sym_type_item] = STATE(709), - [sym_function_item] = STATE(709), - [sym_function_signature_item] = STATE(709), - [sym_function_modifiers] = STATE(3451), - [sym_impl_item] = STATE(709), - [sym_trait_item] = STATE(709), - [sym_associated_type] = STATE(709), - [sym_let_declaration] = STATE(709), - [sym_use_declaration] = STATE(709), - [sym_extern_modifier] = STATE(2079), - [sym_visibility_modifier] = STATE(1907), - [sym_bracketed_type] = STATE(3198), - [sym_generic_type_with_turbofish] = STATE(3220), - [sym_macro_invocation] = STATE(709), - [sym_scoped_identifier] = STATE(3036), - [aux_sym_declaration_list_repeat1] = STATE(709), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1827), + [525] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1831), [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_macro_rules_BANG] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_u8] = ACTIONS(1831), + [anon_sym_i8] = ACTIONS(1831), + [anon_sym_u16] = ACTIONS(1831), + [anon_sym_i16] = ACTIONS(1831), + [anon_sym_u32] = ACTIONS(1831), + [anon_sym_i32] = ACTIONS(1831), + [anon_sym_u64] = ACTIONS(1831), + [anon_sym_i64] = ACTIONS(1831), + [anon_sym_u128] = ACTIONS(1831), + [anon_sym_i128] = ACTIONS(1831), + [anon_sym_isize] = ACTIONS(1831), + [anon_sym_usize] = ACTIONS(1831), + [anon_sym_f32] = ACTIONS(1831), + [anon_sym_f64] = ACTIONS(1831), + [anon_sym_bool] = ACTIONS(1831), + [anon_sym_str] = ACTIONS(1831), + [anon_sym_char] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1829), + [anon_sym_COLON_COLON] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_async] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_fn] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_impl] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_mod] = ACTIONS(1831), + [anon_sym_pub] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_struct] = ACTIONS(1831), + [anon_sym_trait] = ACTIONS(1831), + [anon_sym_type] = ACTIONS(1831), + [anon_sym_union] = ACTIONS(1831), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1829), + [anon_sym_yield] = ACTIONS(1831), + [anon_sym_move] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [sym_integer_literal] = ACTIONS(1829), + [aux_sym_string_literal_token1] = ACTIONS(1829), + [sym_char_literal] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1831), + [sym_super] = ACTIONS(1831), + [sym_crate] = ACTIONS(1831), + [sym_metavariable] = ACTIONS(1829), + [sym_raw_string_literal] = ACTIONS(1829), + [sym_float_literal] = ACTIONS(1829), + }, + [526] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_macro_rules_BANG] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(1833), [anon_sym_u8] = ACTIONS(1835), [anon_sym_i8] = ACTIONS(1835), [anon_sym_u16] = ACTIONS(1835), @@ -78930,9238 +74977,17820 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1835), [anon_sym_str] = ACTIONS(1835), [anon_sym_char] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1833), + [anon_sym_COLON_COLON] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1833), + [anon_sym_POUND] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_SQUOTE] = ACTIONS(1835), + [anon_sym_async] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_fn] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_impl] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_mod] = ACTIONS(1835), + [anon_sym_pub] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_trait] = ACTIONS(1835), + [anon_sym_type] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1835), + [anon_sym_unsafe] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1833), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_move] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [sym_integer_literal] = ACTIONS(1833), + [aux_sym_string_literal_token1] = ACTIONS(1833), + [sym_char_literal] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1835), + [sym_super] = ACTIONS(1835), + [sym_crate] = ACTIONS(1835), + [sym_metavariable] = ACTIONS(1833), + [sym_raw_string_literal] = ACTIONS(1833), + [sym_float_literal] = ACTIONS(1833), + }, + [527] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_identifier] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_macro_rules_BANG] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_STAR] = ACTIONS(1837), + [anon_sym_u8] = ACTIONS(1839), + [anon_sym_i8] = ACTIONS(1839), + [anon_sym_u16] = ACTIONS(1839), + [anon_sym_i16] = ACTIONS(1839), + [anon_sym_u32] = ACTIONS(1839), + [anon_sym_i32] = ACTIONS(1839), + [anon_sym_u64] = ACTIONS(1839), + [anon_sym_i64] = ACTIONS(1839), + [anon_sym_u128] = ACTIONS(1839), + [anon_sym_i128] = ACTIONS(1839), + [anon_sym_isize] = ACTIONS(1839), + [anon_sym_usize] = ACTIONS(1839), + [anon_sym_f32] = ACTIONS(1839), + [anon_sym_f64] = ACTIONS(1839), + [anon_sym_bool] = ACTIONS(1839), + [anon_sym_str] = ACTIONS(1839), + [anon_sym_char] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1837), [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(1837), + [anon_sym_POUND] = ACTIONS(1837), + [anon_sym_LT] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_SQUOTE] = ACTIONS(1839), + [anon_sym_async] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_default] = ACTIONS(1839), + [anon_sym_enum] = ACTIONS(1839), + [anon_sym_fn] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_impl] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_mod] = ACTIONS(1839), + [anon_sym_pub] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_static] = ACTIONS(1839), + [anon_sym_struct] = ACTIONS(1839), + [anon_sym_trait] = ACTIONS(1839), + [anon_sym_type] = ACTIONS(1839), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_unsafe] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1839), + [anon_sym_move] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [sym_integer_literal] = ACTIONS(1837), + [aux_sym_string_literal_token1] = ACTIONS(1837), + [sym_char_literal] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1839), + [sym_super] = ACTIONS(1839), + [sym_crate] = ACTIONS(1839), + [sym_metavariable] = ACTIONS(1837), + [sym_raw_string_literal] = ACTIONS(1837), + [sym_float_literal] = ACTIONS(1837), + }, + [528] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym_identifier] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_macro_rules_BANG] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_u8] = ACTIONS(1843), + [anon_sym_i8] = ACTIONS(1843), + [anon_sym_u16] = ACTIONS(1843), + [anon_sym_i16] = ACTIONS(1843), + [anon_sym_u32] = ACTIONS(1843), + [anon_sym_i32] = ACTIONS(1843), + [anon_sym_u64] = ACTIONS(1843), + [anon_sym_i64] = ACTIONS(1843), + [anon_sym_u128] = ACTIONS(1843), + [anon_sym_i128] = ACTIONS(1843), + [anon_sym_isize] = ACTIONS(1843), + [anon_sym_usize] = ACTIONS(1843), + [anon_sym_f32] = ACTIONS(1843), + [anon_sym_f64] = ACTIONS(1843), + [anon_sym_bool] = ACTIONS(1843), + [anon_sym_str] = ACTIONS(1843), + [anon_sym_char] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_COLON_COLON] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1843), + [anon_sym_async] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), [anon_sym_default] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1845), + [anon_sym_enum] = ACTIONS(1843), + [anon_sym_fn] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_impl] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_mod] = ACTIONS(1843), + [anon_sym_pub] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_static] = ACTIONS(1843), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_trait] = ACTIONS(1843), + [anon_sym_type] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1843), + [anon_sym_unsafe] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1843), + [anon_sym_move] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [sym_integer_literal] = ACTIONS(1841), + [aux_sym_string_literal_token1] = ACTIONS(1841), + [sym_char_literal] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1843), + [sym_super] = ACTIONS(1843), + [sym_crate] = ACTIONS(1843), + [sym_metavariable] = ACTIONS(1841), + [sym_raw_string_literal] = ACTIONS(1841), + [sym_float_literal] = ACTIONS(1841), + }, + [529] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym_identifier] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_macro_rules_BANG] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_u8] = ACTIONS(1847), + [anon_sym_i8] = ACTIONS(1847), + [anon_sym_u16] = ACTIONS(1847), + [anon_sym_i16] = ACTIONS(1847), + [anon_sym_u32] = ACTIONS(1847), + [anon_sym_i32] = ACTIONS(1847), + [anon_sym_u64] = ACTIONS(1847), + [anon_sym_i64] = ACTIONS(1847), + [anon_sym_u128] = ACTIONS(1847), + [anon_sym_i128] = ACTIONS(1847), + [anon_sym_isize] = ACTIONS(1847), + [anon_sym_usize] = ACTIONS(1847), + [anon_sym_f32] = ACTIONS(1847), + [anon_sym_f64] = ACTIONS(1847), + [anon_sym_bool] = ACTIONS(1847), + [anon_sym_str] = ACTIONS(1847), + [anon_sym_char] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_COLON_COLON] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_SQUOTE] = ACTIONS(1847), + [anon_sym_async] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), [anon_sym_fn] = ACTIONS(1847), - [anon_sym_impl] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_impl] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_mod] = ACTIONS(1847), + [anon_sym_pub] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1847), + [anon_sym_trait] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1847), + [anon_sym_union] = ACTIONS(1847), + [anon_sym_unsafe] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1845), + [anon_sym_yield] = ACTIONS(1847), + [anon_sym_move] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [sym_integer_literal] = ACTIONS(1845), + [aux_sym_string_literal_token1] = ACTIONS(1845), + [sym_char_literal] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1847), + [sym_super] = ACTIONS(1847), + [sym_crate] = ACTIONS(1847), + [sym_metavariable] = ACTIONS(1845), + [sym_raw_string_literal] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1845), + }, + [530] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_macro_rules_BANG] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_u8] = ACTIONS(1851), + [anon_sym_i8] = ACTIONS(1851), + [anon_sym_u16] = ACTIONS(1851), + [anon_sym_i16] = ACTIONS(1851), + [anon_sym_u32] = ACTIONS(1851), + [anon_sym_i32] = ACTIONS(1851), + [anon_sym_u64] = ACTIONS(1851), + [anon_sym_i64] = ACTIONS(1851), + [anon_sym_u128] = ACTIONS(1851), + [anon_sym_i128] = ACTIONS(1851), + [anon_sym_isize] = ACTIONS(1851), + [anon_sym_usize] = ACTIONS(1851), + [anon_sym_f32] = ACTIONS(1851), + [anon_sym_f64] = ACTIONS(1851), + [anon_sym_bool] = ACTIONS(1851), + [anon_sym_str] = ACTIONS(1851), + [anon_sym_char] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_async] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_fn] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_impl] = ACTIONS(1851), [anon_sym_let] = ACTIONS(1851), - [anon_sym_mod] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_mod] = ACTIONS(1851), + [anon_sym_pub] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_struct] = ACTIONS(1851), + [anon_sym_trait] = ACTIONS(1851), + [anon_sym_type] = ACTIONS(1851), + [anon_sym_union] = ACTIONS(1851), + [anon_sym_unsafe] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1849), + [anon_sym_yield] = ACTIONS(1851), + [anon_sym_move] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [sym_integer_literal] = ACTIONS(1849), + [aux_sym_string_literal_token1] = ACTIONS(1849), + [sym_char_literal] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1851), + [sym_super] = ACTIONS(1851), + [sym_crate] = ACTIONS(1851), + [sym_metavariable] = ACTIONS(1849), + [sym_raw_string_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + }, + [531] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1855), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_macro_rules_BANG] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_u8] = ACTIONS(1855), + [anon_sym_i8] = ACTIONS(1855), + [anon_sym_u16] = ACTIONS(1855), + [anon_sym_i16] = ACTIONS(1855), + [anon_sym_u32] = ACTIONS(1855), + [anon_sym_i32] = ACTIONS(1855), + [anon_sym_u64] = ACTIONS(1855), + [anon_sym_i64] = ACTIONS(1855), + [anon_sym_u128] = ACTIONS(1855), + [anon_sym_i128] = ACTIONS(1855), + [anon_sym_isize] = ACTIONS(1855), + [anon_sym_usize] = ACTIONS(1855), + [anon_sym_f32] = ACTIONS(1855), + [anon_sym_f64] = ACTIONS(1855), + [anon_sym_bool] = ACTIONS(1855), + [anon_sym_str] = ACTIONS(1855), + [anon_sym_char] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_COLON_COLON] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_SQUOTE] = ACTIONS(1855), + [anon_sym_async] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_fn] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_impl] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_mod] = ACTIONS(1855), + [anon_sym_pub] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), [anon_sym_static] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1857), + [anon_sym_struct] = ACTIONS(1855), + [anon_sym_trait] = ACTIONS(1855), + [anon_sym_type] = ACTIONS(1855), + [anon_sym_union] = ACTIONS(1855), + [anon_sym_unsafe] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_yield] = ACTIONS(1855), + [anon_sym_move] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [sym_integer_literal] = ACTIONS(1853), + [aux_sym_string_literal_token1] = ACTIONS(1853), + [sym_char_literal] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1855), + [sym_super] = ACTIONS(1855), + [sym_crate] = ACTIONS(1855), + [sym_metavariable] = ACTIONS(1853), + [sym_raw_string_literal] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1853), + }, + [532] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_macro_rules_BANG] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_u8] = ACTIONS(1859), + [anon_sym_i8] = ACTIONS(1859), + [anon_sym_u16] = ACTIONS(1859), + [anon_sym_i16] = ACTIONS(1859), + [anon_sym_u32] = ACTIONS(1859), + [anon_sym_i32] = ACTIONS(1859), + [anon_sym_u64] = ACTIONS(1859), + [anon_sym_i64] = ACTIONS(1859), + [anon_sym_u128] = ACTIONS(1859), + [anon_sym_i128] = ACTIONS(1859), + [anon_sym_isize] = ACTIONS(1859), + [anon_sym_usize] = ACTIONS(1859), + [anon_sym_f32] = ACTIONS(1859), + [anon_sym_f64] = ACTIONS(1859), + [anon_sym_bool] = ACTIONS(1859), + [anon_sym_str] = ACTIONS(1859), + [anon_sym_char] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_COLON_COLON] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_POUND] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1859), + [anon_sym_async] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_fn] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_impl] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_mod] = ACTIONS(1859), + [anon_sym_pub] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_struct] = ACTIONS(1859), [anon_sym_trait] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_unsafe] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_DOT_DOT] = ACTIONS(1857), + [anon_sym_yield] = ACTIONS(1859), + [anon_sym_move] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [sym_integer_literal] = ACTIONS(1857), + [aux_sym_string_literal_token1] = ACTIONS(1857), + [sym_char_literal] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1859), + [sym_super] = ACTIONS(1859), + [sym_crate] = ACTIONS(1859), + [sym_metavariable] = ACTIONS(1857), + [sym_raw_string_literal] = ACTIONS(1857), + [sym_float_literal] = ACTIONS(1857), + }, + [533] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_macro_rules_BANG] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_u8] = ACTIONS(1863), + [anon_sym_i8] = ACTIONS(1863), + [anon_sym_u16] = ACTIONS(1863), + [anon_sym_i16] = ACTIONS(1863), + [anon_sym_u32] = ACTIONS(1863), + [anon_sym_i32] = ACTIONS(1863), + [anon_sym_u64] = ACTIONS(1863), + [anon_sym_i64] = ACTIONS(1863), + [anon_sym_u128] = ACTIONS(1863), + [anon_sym_i128] = ACTIONS(1863), + [anon_sym_isize] = ACTIONS(1863), + [anon_sym_usize] = ACTIONS(1863), + [anon_sym_f32] = ACTIONS(1863), + [anon_sym_f64] = ACTIONS(1863), + [anon_sym_bool] = ACTIONS(1863), + [anon_sym_str] = ACTIONS(1863), + [anon_sym_char] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1861), + [anon_sym_COLON_COLON] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_SQUOTE] = ACTIONS(1863), + [anon_sym_async] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_fn] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_impl] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_mod] = ACTIONS(1863), + [anon_sym_pub] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1863), + [anon_sym_trait] = ACTIONS(1863), + [anon_sym_type] = ACTIONS(1863), [anon_sym_union] = ACTIONS(1863), - [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1863), + [anon_sym_move] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [sym_integer_literal] = ACTIONS(1861), + [aux_sym_string_literal_token1] = ACTIONS(1861), + [sym_char_literal] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1863), + [sym_super] = ACTIONS(1863), + [sym_crate] = ACTIONS(1863), + [sym_metavariable] = ACTIONS(1861), + [sym_raw_string_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1861), + }, + [534] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), + [ts_builtin_sym_end] = ACTIONS(1865), + [sym_identifier] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_macro_rules_BANG] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_u8] = ACTIONS(1867), + [anon_sym_i8] = ACTIONS(1867), + [anon_sym_u16] = ACTIONS(1867), + [anon_sym_i16] = ACTIONS(1867), + [anon_sym_u32] = ACTIONS(1867), + [anon_sym_i32] = ACTIONS(1867), + [anon_sym_u64] = ACTIONS(1867), + [anon_sym_i64] = ACTIONS(1867), + [anon_sym_u128] = ACTIONS(1867), + [anon_sym_i128] = ACTIONS(1867), + [anon_sym_isize] = ACTIONS(1867), + [anon_sym_usize] = ACTIONS(1867), + [anon_sym_f32] = ACTIONS(1867), + [anon_sym_f64] = ACTIONS(1867), + [anon_sym_bool] = ACTIONS(1867), + [anon_sym_str] = ACTIONS(1867), + [anon_sym_char] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_COLON_COLON] = ACTIONS(1865), + [anon_sym_BANG] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_SQUOTE] = ACTIONS(1867), + [anon_sym_async] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [anon_sym_fn] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_impl] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_mod] = ACTIONS(1867), + [anon_sym_pub] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_static] = ACTIONS(1867), + [anon_sym_struct] = ACTIONS(1867), + [anon_sym_trait] = ACTIONS(1867), + [anon_sym_type] = ACTIONS(1867), + [anon_sym_union] = ACTIONS(1867), + [anon_sym_unsafe] = ACTIONS(1867), [anon_sym_use] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1869), - [sym_line_comment] = ACTIONS(3), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1865), + [anon_sym_yield] = ACTIONS(1867), + [anon_sym_move] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [sym_integer_literal] = ACTIONS(1865), + [aux_sym_string_literal_token1] = ACTIONS(1865), + [sym_char_literal] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1867), + [sym_super] = ACTIONS(1867), + [sym_crate] = ACTIONS(1867), + [sym_metavariable] = ACTIONS(1865), + [sym_raw_string_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1865), + }, + [535] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_macro_rules_BANG] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_u8] = ACTIONS(1871), + [anon_sym_i8] = ACTIONS(1871), + [anon_sym_u16] = ACTIONS(1871), + [anon_sym_i16] = ACTIONS(1871), + [anon_sym_u32] = ACTIONS(1871), + [anon_sym_i32] = ACTIONS(1871), + [anon_sym_u64] = ACTIONS(1871), + [anon_sym_i64] = ACTIONS(1871), + [anon_sym_u128] = ACTIONS(1871), + [anon_sym_i128] = ACTIONS(1871), + [anon_sym_isize] = ACTIONS(1871), + [anon_sym_usize] = ACTIONS(1871), + [anon_sym_f32] = ACTIONS(1871), + [anon_sym_f64] = ACTIONS(1871), + [anon_sym_bool] = ACTIONS(1871), + [anon_sym_str] = ACTIONS(1871), + [anon_sym_char] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_COLON_COLON] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1871), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_impl] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_mod] = ACTIONS(1871), + [anon_sym_pub] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(1871), + [anon_sym_trait] = ACTIONS(1871), + [anon_sym_type] = ACTIONS(1871), + [anon_sym_union] = ACTIONS(1871), + [anon_sym_unsafe] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1869), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_move] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [sym_integer_literal] = ACTIONS(1869), + [aux_sym_string_literal_token1] = ACTIONS(1869), + [sym_char_literal] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(1871), [sym_super] = ACTIONS(1871), - [sym_crate] = ACTIONS(1873), - [sym_metavariable] = ACTIONS(1875), - [sym_block_comment] = ACTIONS(3), - }, - [596] = { - [ts_builtin_sym_end] = ACTIONS(2241), - [sym_identifier] = ACTIONS(2243), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_macro_rules_BANG] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2241), - [anon_sym_u8] = ACTIONS(2243), - [anon_sym_i8] = ACTIONS(2243), - [anon_sym_u16] = ACTIONS(2243), - [anon_sym_i16] = ACTIONS(2243), - [anon_sym_u32] = ACTIONS(2243), - [anon_sym_i32] = ACTIONS(2243), - [anon_sym_u64] = ACTIONS(2243), - [anon_sym_i64] = ACTIONS(2243), - [anon_sym_u128] = ACTIONS(2243), - [anon_sym_i128] = ACTIONS(2243), - [anon_sym_isize] = ACTIONS(2243), - [anon_sym_usize] = ACTIONS(2243), - [anon_sym_f32] = ACTIONS(2243), - [anon_sym_f64] = ACTIONS(2243), - [anon_sym_bool] = ACTIONS(2243), - [anon_sym_str] = ACTIONS(2243), - [anon_sym_char] = ACTIONS(2243), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_COLON_COLON] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_POUND] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2243), - [anon_sym_async] = ACTIONS(2243), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_const] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_default] = ACTIONS(2243), - [anon_sym_enum] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_impl] = ACTIONS(2243), - [anon_sym_let] = ACTIONS(2243), - [anon_sym_loop] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_mod] = ACTIONS(2243), - [anon_sym_pub] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_static] = ACTIONS(2243), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_trait] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2243), - [anon_sym_union] = ACTIONS(2243), - [anon_sym_unsafe] = ACTIONS(2243), - [anon_sym_use] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [anon_sym_extern] = ACTIONS(2243), - [anon_sym_DOT_DOT] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2243), - [anon_sym_move] = ACTIONS(2243), - [anon_sym_try] = ACTIONS(2243), - [sym_integer_literal] = ACTIONS(2241), - [aux_sym_string_literal_token1] = ACTIONS(2241), - [sym_char_literal] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2243), - [sym_super] = ACTIONS(2243), - [sym_crate] = ACTIONS(2243), - [sym_metavariable] = ACTIONS(2241), - [sym_raw_string_literal] = ACTIONS(2241), - [sym_float_literal] = ACTIONS(2241), - [sym_block_comment] = ACTIONS(3), - }, - [597] = { - [ts_builtin_sym_end] = ACTIONS(2245), - [sym_identifier] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_macro_rules_BANG] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_STAR] = ACTIONS(2245), - [anon_sym_u8] = ACTIONS(2247), - [anon_sym_i8] = ACTIONS(2247), - [anon_sym_u16] = ACTIONS(2247), - [anon_sym_i16] = ACTIONS(2247), - [anon_sym_u32] = ACTIONS(2247), - [anon_sym_i32] = ACTIONS(2247), - [anon_sym_u64] = ACTIONS(2247), - [anon_sym_i64] = ACTIONS(2247), - [anon_sym_u128] = ACTIONS(2247), - [anon_sym_i128] = ACTIONS(2247), - [anon_sym_isize] = ACTIONS(2247), - [anon_sym_usize] = ACTIONS(2247), - [anon_sym_f32] = ACTIONS(2247), - [anon_sym_f64] = ACTIONS(2247), - [anon_sym_bool] = ACTIONS(2247), - [anon_sym_str] = ACTIONS(2247), - [anon_sym_char] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_COLON_COLON] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2247), - [anon_sym_async] = ACTIONS(2247), - [anon_sym_break] = ACTIONS(2247), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_continue] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2247), - [anon_sym_enum] = ACTIONS(2247), - [anon_sym_fn] = ACTIONS(2247), - [anon_sym_for] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(2247), - [anon_sym_impl] = ACTIONS(2247), - [anon_sym_let] = ACTIONS(2247), - [anon_sym_loop] = ACTIONS(2247), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_mod] = ACTIONS(2247), - [anon_sym_pub] = ACTIONS(2247), - [anon_sym_return] = ACTIONS(2247), - [anon_sym_static] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2247), - [anon_sym_trait] = ACTIONS(2247), - [anon_sym_type] = ACTIONS(2247), - [anon_sym_union] = ACTIONS(2247), - [anon_sym_unsafe] = ACTIONS(2247), - [anon_sym_use] = ACTIONS(2247), - [anon_sym_while] = ACTIONS(2247), - [anon_sym_extern] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2247), - [anon_sym_move] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2247), - [sym_integer_literal] = ACTIONS(2245), - [aux_sym_string_literal_token1] = ACTIONS(2245), - [sym_char_literal] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2247), - [anon_sym_false] = ACTIONS(2247), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2247), - [sym_super] = ACTIONS(2247), - [sym_crate] = ACTIONS(2247), - [sym_metavariable] = ACTIONS(2245), - [sym_raw_string_literal] = ACTIONS(2245), - [sym_float_literal] = ACTIONS(2245), - [sym_block_comment] = ACTIONS(3), - }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_identifier] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2249), - [anon_sym_macro_rules_BANG] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2249), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2251), - [anon_sym_i8] = ACTIONS(2251), - [anon_sym_u16] = ACTIONS(2251), - [anon_sym_i16] = ACTIONS(2251), - [anon_sym_u32] = ACTIONS(2251), - [anon_sym_i32] = ACTIONS(2251), - [anon_sym_u64] = ACTIONS(2251), - [anon_sym_i64] = ACTIONS(2251), - [anon_sym_u128] = ACTIONS(2251), - [anon_sym_i128] = ACTIONS(2251), - [anon_sym_isize] = ACTIONS(2251), - [anon_sym_usize] = ACTIONS(2251), - [anon_sym_f32] = ACTIONS(2251), - [anon_sym_f64] = ACTIONS(2251), - [anon_sym_bool] = ACTIONS(2251), - [anon_sym_str] = ACTIONS(2251), - [anon_sym_char] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_COLON_COLON] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_POUND] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_fn] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_impl] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_loop] = ACTIONS(2251), - [anon_sym_match] = ACTIONS(2251), - [anon_sym_mod] = ACTIONS(2251), - [anon_sym_pub] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_struct] = ACTIONS(2251), - [anon_sym_trait] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_union] = ACTIONS(2251), - [anon_sym_unsafe] = ACTIONS(2251), - [anon_sym_use] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_extern] = ACTIONS(2251), - [anon_sym_DOT_DOT] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_move] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [sym_integer_literal] = ACTIONS(2249), - [aux_sym_string_literal_token1] = ACTIONS(2249), - [sym_char_literal] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(2251), - [anon_sym_false] = ACTIONS(2251), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_crate] = ACTIONS(2251), - [sym_metavariable] = ACTIONS(2249), - [sym_raw_string_literal] = ACTIONS(2249), - [sym_float_literal] = ACTIONS(2249), - [sym_block_comment] = ACTIONS(3), + [sym_crate] = ACTIONS(1871), + [sym_metavariable] = ACTIONS(1869), + [sym_raw_string_literal] = ACTIONS(1869), + [sym_float_literal] = ACTIONS(1869), }, - [599] = { - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_macro_rules_BANG] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_u8] = ACTIONS(2255), - [anon_sym_i8] = ACTIONS(2255), - [anon_sym_u16] = ACTIONS(2255), - [anon_sym_i16] = ACTIONS(2255), - [anon_sym_u32] = ACTIONS(2255), - [anon_sym_i32] = ACTIONS(2255), - [anon_sym_u64] = ACTIONS(2255), - [anon_sym_i64] = ACTIONS(2255), - [anon_sym_u128] = ACTIONS(2255), - [anon_sym_i128] = ACTIONS(2255), - [anon_sym_isize] = ACTIONS(2255), - [anon_sym_usize] = ACTIONS(2255), - [anon_sym_f32] = ACTIONS(2255), - [anon_sym_f64] = ACTIONS(2255), - [anon_sym_bool] = ACTIONS(2255), - [anon_sym_str] = ACTIONS(2255), - [anon_sym_char] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_COLON_COLON] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_fn] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_loop] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_mod] = ACTIONS(2255), - [anon_sym_pub] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_trait] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_unsafe] = ACTIONS(2255), - [anon_sym_use] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_extern] = ACTIONS(2255), - [anon_sym_DOT_DOT] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_move] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2255), - [sym_integer_literal] = ACTIONS(2253), - [aux_sym_string_literal_token1] = ACTIONS(2253), - [sym_char_literal] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2255), - [anon_sym_false] = ACTIONS(2255), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_crate] = ACTIONS(2255), - [sym_metavariable] = ACTIONS(2253), - [sym_raw_string_literal] = ACTIONS(2253), - [sym_float_literal] = ACTIONS(2253), - [sym_block_comment] = ACTIONS(3), + [536] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_macro_rules_BANG] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_u8] = ACTIONS(1875), + [anon_sym_i8] = ACTIONS(1875), + [anon_sym_u16] = ACTIONS(1875), + [anon_sym_i16] = ACTIONS(1875), + [anon_sym_u32] = ACTIONS(1875), + [anon_sym_i32] = ACTIONS(1875), + [anon_sym_u64] = ACTIONS(1875), + [anon_sym_i64] = ACTIONS(1875), + [anon_sym_u128] = ACTIONS(1875), + [anon_sym_i128] = ACTIONS(1875), + [anon_sym_isize] = ACTIONS(1875), + [anon_sym_usize] = ACTIONS(1875), + [anon_sym_f32] = ACTIONS(1875), + [anon_sym_f64] = ACTIONS(1875), + [anon_sym_bool] = ACTIONS(1875), + [anon_sym_str] = ACTIONS(1875), + [anon_sym_char] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1873), + [anon_sym_COLON_COLON] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1873), + [anon_sym_POUND] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1875), + [anon_sym_async] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_fn] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_impl] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_mod] = ACTIONS(1875), + [anon_sym_pub] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1875), + [anon_sym_trait] = ACTIONS(1875), + [anon_sym_type] = ACTIONS(1875), + [anon_sym_union] = ACTIONS(1875), + [anon_sym_unsafe] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1873), + [anon_sym_yield] = ACTIONS(1875), + [anon_sym_move] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [sym_integer_literal] = ACTIONS(1873), + [aux_sym_string_literal_token1] = ACTIONS(1873), + [sym_char_literal] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1875), + [sym_super] = ACTIONS(1875), + [sym_crate] = ACTIONS(1875), + [sym_metavariable] = ACTIONS(1873), + [sym_raw_string_literal] = ACTIONS(1873), + [sym_float_literal] = ACTIONS(1873), }, - [600] = { - [ts_builtin_sym_end] = ACTIONS(888), - [sym_identifier] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(888), - [anon_sym_macro_rules_BANG] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(888), - [anon_sym_LBRACE] = ACTIONS(888), - [anon_sym_RBRACE] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_u8] = ACTIONS(890), - [anon_sym_i8] = ACTIONS(890), - [anon_sym_u16] = ACTIONS(890), - [anon_sym_i16] = ACTIONS(890), - [anon_sym_u32] = ACTIONS(890), - [anon_sym_i32] = ACTIONS(890), - [anon_sym_u64] = ACTIONS(890), - [anon_sym_i64] = ACTIONS(890), - [anon_sym_u128] = ACTIONS(890), - [anon_sym_i128] = ACTIONS(890), - [anon_sym_isize] = ACTIONS(890), - [anon_sym_usize] = ACTIONS(890), - [anon_sym_f32] = ACTIONS(890), - [anon_sym_f64] = ACTIONS(890), - [anon_sym_bool] = ACTIONS(890), - [anon_sym_str] = ACTIONS(890), - [anon_sym_char] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_COLON_COLON] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_POUND] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_PIPE] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(890), - [anon_sym_async] = ACTIONS(890), - [anon_sym_break] = ACTIONS(890), - [anon_sym_const] = ACTIONS(890), - [anon_sym_continue] = ACTIONS(890), - [anon_sym_default] = ACTIONS(890), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_for] = ACTIONS(890), - [anon_sym_if] = ACTIONS(890), - [anon_sym_impl] = ACTIONS(890), - [anon_sym_let] = ACTIONS(890), - [anon_sym_loop] = ACTIONS(890), - [anon_sym_match] = ACTIONS(890), - [anon_sym_mod] = ACTIONS(890), - [anon_sym_pub] = ACTIONS(890), - [anon_sym_return] = ACTIONS(890), - [anon_sym_static] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(890), - [anon_sym_trait] = ACTIONS(890), - [anon_sym_type] = ACTIONS(890), - [anon_sym_union] = ACTIONS(890), - [anon_sym_unsafe] = ACTIONS(890), - [anon_sym_use] = ACTIONS(890), - [anon_sym_while] = ACTIONS(890), - [anon_sym_extern] = ACTIONS(890), - [anon_sym_DOT_DOT] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(890), - [anon_sym_move] = ACTIONS(890), - [anon_sym_try] = ACTIONS(890), - [sym_integer_literal] = ACTIONS(888), - [aux_sym_string_literal_token1] = ACTIONS(888), - [sym_char_literal] = ACTIONS(888), - [anon_sym_true] = ACTIONS(890), - [anon_sym_false] = ACTIONS(890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(890), - [sym_super] = ACTIONS(890), - [sym_crate] = ACTIONS(890), - [sym_metavariable] = ACTIONS(888), - [sym_raw_string_literal] = ACTIONS(888), - [sym_float_literal] = ACTIONS(888), - [sym_block_comment] = ACTIONS(3), - }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(2257), - [sym_identifier] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_macro_rules_BANG] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_u8] = ACTIONS(2259), - [anon_sym_i8] = ACTIONS(2259), - [anon_sym_u16] = ACTIONS(2259), - [anon_sym_i16] = ACTIONS(2259), - [anon_sym_u32] = ACTIONS(2259), - [anon_sym_i32] = ACTIONS(2259), - [anon_sym_u64] = ACTIONS(2259), - [anon_sym_i64] = ACTIONS(2259), - [anon_sym_u128] = ACTIONS(2259), - [anon_sym_i128] = ACTIONS(2259), - [anon_sym_isize] = ACTIONS(2259), - [anon_sym_usize] = ACTIONS(2259), - [anon_sym_f32] = ACTIONS(2259), - [anon_sym_f64] = ACTIONS(2259), - [anon_sym_bool] = ACTIONS(2259), - [anon_sym_str] = ACTIONS(2259), - [anon_sym_char] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_COLON_COLON] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_POUND] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_async] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_const] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2259), - [anon_sym_enum] = ACTIONS(2259), - [anon_sym_fn] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_impl] = ACTIONS(2259), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_loop] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_mod] = ACTIONS(2259), - [anon_sym_pub] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_static] = ACTIONS(2259), - [anon_sym_struct] = ACTIONS(2259), - [anon_sym_trait] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2259), - [anon_sym_union] = ACTIONS(2259), - [anon_sym_unsafe] = ACTIONS(2259), - [anon_sym_use] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_extern] = ACTIONS(2259), - [anon_sym_DOT_DOT] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_move] = ACTIONS(2259), - [anon_sym_try] = ACTIONS(2259), - [sym_integer_literal] = ACTIONS(2257), - [aux_sym_string_literal_token1] = ACTIONS(2257), - [sym_char_literal] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2259), - [sym_super] = ACTIONS(2259), - [sym_crate] = ACTIONS(2259), - [sym_metavariable] = ACTIONS(2257), - [sym_raw_string_literal] = ACTIONS(2257), - [sym_float_literal] = ACTIONS(2257), - [sym_block_comment] = ACTIONS(3), - }, - [602] = { - [ts_builtin_sym_end] = ACTIONS(2261), - [sym_identifier] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2261), - [anon_sym_macro_rules_BANG] = ACTIONS(2261), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_u8] = ACTIONS(2263), - [anon_sym_i8] = ACTIONS(2263), - [anon_sym_u16] = ACTIONS(2263), - [anon_sym_i16] = ACTIONS(2263), - [anon_sym_u32] = ACTIONS(2263), - [anon_sym_i32] = ACTIONS(2263), - [anon_sym_u64] = ACTIONS(2263), - [anon_sym_i64] = ACTIONS(2263), - [anon_sym_u128] = ACTIONS(2263), - [anon_sym_i128] = ACTIONS(2263), - [anon_sym_isize] = ACTIONS(2263), - [anon_sym_usize] = ACTIONS(2263), - [anon_sym_f32] = ACTIONS(2263), - [anon_sym_f64] = ACTIONS(2263), - [anon_sym_bool] = ACTIONS(2263), - [anon_sym_str] = ACTIONS(2263), - [anon_sym_char] = ACTIONS(2263), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_COLON_COLON] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(2261), - [anon_sym_LT] = ACTIONS(2261), - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2263), - [anon_sym_async] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_default] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_fn] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_impl] = ACTIONS(2263), - [anon_sym_let] = ACTIONS(2263), - [anon_sym_loop] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_mod] = ACTIONS(2263), - [anon_sym_pub] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_trait] = ACTIONS(2263), - [anon_sym_type] = ACTIONS(2263), - [anon_sym_union] = ACTIONS(2263), - [anon_sym_unsafe] = ACTIONS(2263), - [anon_sym_use] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym_DOT_DOT] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2263), - [anon_sym_move] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [sym_integer_literal] = ACTIONS(2261), - [aux_sym_string_literal_token1] = ACTIONS(2261), - [sym_char_literal] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2263), - [sym_super] = ACTIONS(2263), - [sym_crate] = ACTIONS(2263), - [sym_metavariable] = ACTIONS(2261), - [sym_raw_string_literal] = ACTIONS(2261), - [sym_float_literal] = ACTIONS(2261), - [sym_block_comment] = ACTIONS(3), - }, - [603] = { - [ts_builtin_sym_end] = ACTIONS(2265), - [sym_identifier] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_macro_rules_BANG] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u128] = ACTIONS(2267), - [anon_sym_i128] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_str] = ACTIONS(2267), - [anon_sym_char] = ACTIONS(2267), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_COLON_COLON] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(2265), - [anon_sym_LT] = ACTIONS(2265), - [anon_sym_PIPE] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2267), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_const] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2267), - [anon_sym_enum] = ACTIONS(2267), - [anon_sym_fn] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_impl] = ACTIONS(2267), - [anon_sym_let] = ACTIONS(2267), - [anon_sym_loop] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_mod] = ACTIONS(2267), - [anon_sym_pub] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_union] = ACTIONS(2267), - [anon_sym_unsafe] = ACTIONS(2267), - [anon_sym_use] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_extern] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2267), - [anon_sym_move] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2267), - [sym_integer_literal] = ACTIONS(2265), - [aux_sym_string_literal_token1] = ACTIONS(2265), - [sym_char_literal] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2267), - [sym_super] = ACTIONS(2267), - [sym_crate] = ACTIONS(2267), - [sym_metavariable] = ACTIONS(2265), - [sym_raw_string_literal] = ACTIONS(2265), - [sym_float_literal] = ACTIONS(2265), - [sym_block_comment] = ACTIONS(3), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(2269), - [sym_identifier] = ACTIONS(2271), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_macro_rules_BANG] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_COLON_COLON] = ACTIONS(2269), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(2269), - [anon_sym_LT] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2271), - [anon_sym_move] = ACTIONS(2271), - [anon_sym_try] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2269), - [aux_sym_string_literal_token1] = ACTIONS(2269), - [sym_char_literal] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_metavariable] = ACTIONS(2269), - [sym_raw_string_literal] = ACTIONS(2269), - [sym_float_literal] = ACTIONS(2269), - [sym_block_comment] = ACTIONS(3), - }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(2273), - [sym_identifier] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2273), - [anon_sym_macro_rules_BANG] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_STAR] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2275), - [anon_sym_i8] = ACTIONS(2275), - [anon_sym_u16] = ACTIONS(2275), - [anon_sym_i16] = ACTIONS(2275), - [anon_sym_u32] = ACTIONS(2275), - [anon_sym_i32] = ACTIONS(2275), - [anon_sym_u64] = ACTIONS(2275), - [anon_sym_i64] = ACTIONS(2275), - [anon_sym_u128] = ACTIONS(2275), - [anon_sym_i128] = ACTIONS(2275), - [anon_sym_isize] = ACTIONS(2275), - [anon_sym_usize] = ACTIONS(2275), - [anon_sym_f32] = ACTIONS(2275), - [anon_sym_f64] = ACTIONS(2275), - [anon_sym_bool] = ACTIONS(2275), - [anon_sym_str] = ACTIONS(2275), - [anon_sym_char] = ACTIONS(2275), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_COLON_COLON] = ACTIONS(2273), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_POUND] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2273), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_SQUOTE] = ACTIONS(2275), - [anon_sym_async] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_default] = ACTIONS(2275), - [anon_sym_enum] = ACTIONS(2275), - [anon_sym_fn] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_impl] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_mod] = ACTIONS(2275), - [anon_sym_pub] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_static] = ACTIONS(2275), - [anon_sym_struct] = ACTIONS(2275), - [anon_sym_trait] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2275), - [anon_sym_union] = ACTIONS(2275), - [anon_sym_unsafe] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2275), - [anon_sym_DOT_DOT] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2275), - [anon_sym_move] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2275), - [sym_integer_literal] = ACTIONS(2273), - [aux_sym_string_literal_token1] = ACTIONS(2273), - [sym_char_literal] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2275), - [sym_super] = ACTIONS(2275), - [sym_crate] = ACTIONS(2275), - [sym_metavariable] = ACTIONS(2273), - [sym_raw_string_literal] = ACTIONS(2273), - [sym_float_literal] = ACTIONS(2273), - [sym_block_comment] = ACTIONS(3), - }, - [606] = { - [ts_builtin_sym_end] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_macro_rules_BANG] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_u8] = ACTIONS(2279), - [anon_sym_i8] = ACTIONS(2279), - [anon_sym_u16] = ACTIONS(2279), - [anon_sym_i16] = ACTIONS(2279), - [anon_sym_u32] = ACTIONS(2279), - [anon_sym_i32] = ACTIONS(2279), - [anon_sym_u64] = ACTIONS(2279), - [anon_sym_i64] = ACTIONS(2279), - [anon_sym_u128] = ACTIONS(2279), - [anon_sym_i128] = ACTIONS(2279), - [anon_sym_isize] = ACTIONS(2279), - [anon_sym_usize] = ACTIONS(2279), - [anon_sym_f32] = ACTIONS(2279), - [anon_sym_f64] = ACTIONS(2279), - [anon_sym_bool] = ACTIONS(2279), - [anon_sym_str] = ACTIONS(2279), - [anon_sym_char] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_COLON_COLON] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_POUND] = ACTIONS(2277), - [anon_sym_LT] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2279), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_fn] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_impl] = ACTIONS(2279), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_loop] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_mod] = ACTIONS(2279), - [anon_sym_pub] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_trait] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_unsafe] = ACTIONS(2279), - [anon_sym_use] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_extern] = ACTIONS(2279), - [anon_sym_DOT_DOT] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2279), - [anon_sym_move] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2279), - [sym_integer_literal] = ACTIONS(2277), - [aux_sym_string_literal_token1] = ACTIONS(2277), - [sym_char_literal] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2279), - [sym_metavariable] = ACTIONS(2277), - [sym_raw_string_literal] = ACTIONS(2277), - [sym_float_literal] = ACTIONS(2277), - [sym_block_comment] = ACTIONS(3), - }, - [607] = { - [ts_builtin_sym_end] = ACTIONS(2281), - [sym_identifier] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_macro_rules_BANG] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2281), - [anon_sym_u8] = ACTIONS(2283), - [anon_sym_i8] = ACTIONS(2283), - [anon_sym_u16] = ACTIONS(2283), - [anon_sym_i16] = ACTIONS(2283), - [anon_sym_u32] = ACTIONS(2283), - [anon_sym_i32] = ACTIONS(2283), - [anon_sym_u64] = ACTIONS(2283), - [anon_sym_i64] = ACTIONS(2283), - [anon_sym_u128] = ACTIONS(2283), - [anon_sym_i128] = ACTIONS(2283), - [anon_sym_isize] = ACTIONS(2283), - [anon_sym_usize] = ACTIONS(2283), - [anon_sym_f32] = ACTIONS(2283), - [anon_sym_f64] = ACTIONS(2283), - [anon_sym_bool] = ACTIONS(2283), - [anon_sym_str] = ACTIONS(2283), - [anon_sym_char] = ACTIONS(2283), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_COLON_COLON] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_POUND] = ACTIONS(2281), - [anon_sym_LT] = ACTIONS(2281), - [anon_sym_PIPE] = ACTIONS(2281), - [anon_sym_SQUOTE] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_enum] = ACTIONS(2283), - [anon_sym_fn] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_impl] = ACTIONS(2283), - [anon_sym_let] = ACTIONS(2283), - [anon_sym_loop] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_mod] = ACTIONS(2283), - [anon_sym_pub] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2283), - [anon_sym_trait] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_unsafe] = ACTIONS(2283), - [anon_sym_use] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [anon_sym_extern] = ACTIONS(2283), - [anon_sym_DOT_DOT] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2283), - [anon_sym_move] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2283), - [sym_integer_literal] = ACTIONS(2281), - [aux_sym_string_literal_token1] = ACTIONS(2281), - [sym_char_literal] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2283), - [anon_sym_false] = ACTIONS(2283), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2283), - [sym_super] = ACTIONS(2283), - [sym_crate] = ACTIONS(2283), - [sym_metavariable] = ACTIONS(2281), - [sym_raw_string_literal] = ACTIONS(2281), - [sym_float_literal] = ACTIONS(2281), - [sym_block_comment] = ACTIONS(3), - }, - [608] = { - [ts_builtin_sym_end] = ACTIONS(2285), - [sym_identifier] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_macro_rules_BANG] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_u8] = ACTIONS(2287), - [anon_sym_i8] = ACTIONS(2287), - [anon_sym_u16] = ACTIONS(2287), - [anon_sym_i16] = ACTIONS(2287), - [anon_sym_u32] = ACTIONS(2287), - [anon_sym_i32] = ACTIONS(2287), - [anon_sym_u64] = ACTIONS(2287), - [anon_sym_i64] = ACTIONS(2287), - [anon_sym_u128] = ACTIONS(2287), - [anon_sym_i128] = ACTIONS(2287), - [anon_sym_isize] = ACTIONS(2287), - [anon_sym_usize] = ACTIONS(2287), - [anon_sym_f32] = ACTIONS(2287), - [anon_sym_f64] = ACTIONS(2287), - [anon_sym_bool] = ACTIONS(2287), - [anon_sym_str] = ACTIONS(2287), - [anon_sym_char] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_COLON_COLON] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_fn] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_impl] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_mod] = ACTIONS(2287), - [anon_sym_pub] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_trait] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_unsafe] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_DOT_DOT] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_move] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [sym_integer_literal] = ACTIONS(2285), - [aux_sym_string_literal_token1] = ACTIONS(2285), - [sym_char_literal] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_crate] = ACTIONS(2287), - [sym_metavariable] = ACTIONS(2285), - [sym_raw_string_literal] = ACTIONS(2285), - [sym_float_literal] = ACTIONS(2285), - [sym_block_comment] = ACTIONS(3), - }, - [609] = { - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_macro_rules_BANG] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_u8] = ACTIONS(2291), - [anon_sym_i8] = ACTIONS(2291), - [anon_sym_u16] = ACTIONS(2291), - [anon_sym_i16] = ACTIONS(2291), - [anon_sym_u32] = ACTIONS(2291), - [anon_sym_i32] = ACTIONS(2291), - [anon_sym_u64] = ACTIONS(2291), - [anon_sym_i64] = ACTIONS(2291), - [anon_sym_u128] = ACTIONS(2291), - [anon_sym_i128] = ACTIONS(2291), - [anon_sym_isize] = ACTIONS(2291), - [anon_sym_usize] = ACTIONS(2291), - [anon_sym_f32] = ACTIONS(2291), - [anon_sym_f64] = ACTIONS(2291), - [anon_sym_bool] = ACTIONS(2291), - [anon_sym_str] = ACTIONS(2291), - [anon_sym_char] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_fn] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_impl] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_mod] = ACTIONS(2291), - [anon_sym_pub] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_trait] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_unsafe] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2291), - [anon_sym_move] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2289), - [aux_sym_string_literal_token1] = ACTIONS(2289), - [sym_char_literal] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2291), - [sym_super] = ACTIONS(2291), - [sym_crate] = ACTIONS(2291), - [sym_metavariable] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2289), - [sym_float_literal] = ACTIONS(2289), - [sym_block_comment] = ACTIONS(3), - }, - [610] = { - [ts_builtin_sym_end] = ACTIONS(2293), - [sym_identifier] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_extern] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2295), - [anon_sym_move] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2293), - [aux_sym_string_literal_token1] = ACTIONS(2293), - [sym_char_literal] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2293), - [sym_raw_string_literal] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2293), - [sym_block_comment] = ACTIONS(3), - }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_macro_rules_BANG] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_COLON_COLON] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_default] = ACTIONS(2299), - [anon_sym_enum] = ACTIONS(2299), - [anon_sym_fn] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_impl] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_mod] = ACTIONS(2299), - [anon_sym_pub] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(2299), - [anon_sym_trait] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_union] = ACTIONS(2299), - [anon_sym_unsafe] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2299), - [anon_sym_move] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [sym_integer_literal] = ACTIONS(2297), - [aux_sym_string_literal_token1] = ACTIONS(2297), - [sym_char_literal] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2299), - [sym_super] = ACTIONS(2299), - [sym_crate] = ACTIONS(2299), - [sym_metavariable] = ACTIONS(2297), - [sym_raw_string_literal] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), - [sym_block_comment] = ACTIONS(3), - }, - [612] = { - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_macro_rules_BANG] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_STAR] = ACTIONS(2301), - [anon_sym_u8] = ACTIONS(2303), - [anon_sym_i8] = ACTIONS(2303), - [anon_sym_u16] = ACTIONS(2303), - [anon_sym_i16] = ACTIONS(2303), - [anon_sym_u32] = ACTIONS(2303), - [anon_sym_i32] = ACTIONS(2303), - [anon_sym_u64] = ACTIONS(2303), - [anon_sym_i64] = ACTIONS(2303), - [anon_sym_u128] = ACTIONS(2303), - [anon_sym_i128] = ACTIONS(2303), - [anon_sym_isize] = ACTIONS(2303), - [anon_sym_usize] = ACTIONS(2303), - [anon_sym_f32] = ACTIONS(2303), - [anon_sym_f64] = ACTIONS(2303), - [anon_sym_bool] = ACTIONS(2303), - [anon_sym_str] = ACTIONS(2303), - [anon_sym_char] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_default] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_impl] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_mod] = ACTIONS(2303), - [anon_sym_pub] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_static] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_trait] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_union] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_DOT_DOT] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2303), - [anon_sym_move] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2303), - [sym_integer_literal] = ACTIONS(2301), - [aux_sym_string_literal_token1] = ACTIONS(2301), - [sym_char_literal] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2303), - [anon_sym_false] = ACTIONS(2303), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2303), - [sym_super] = ACTIONS(2303), - [sym_crate] = ACTIONS(2303), - [sym_metavariable] = ACTIONS(2301), - [sym_raw_string_literal] = ACTIONS(2301), - [sym_float_literal] = ACTIONS(2301), - [sym_block_comment] = ACTIONS(3), - }, - [613] = { - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_macro_rules_BANG] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_u8] = ACTIONS(2307), - [anon_sym_i8] = ACTIONS(2307), - [anon_sym_u16] = ACTIONS(2307), - [anon_sym_i16] = ACTIONS(2307), - [anon_sym_u32] = ACTIONS(2307), - [anon_sym_i32] = ACTIONS(2307), - [anon_sym_u64] = ACTIONS(2307), - [anon_sym_i64] = ACTIONS(2307), - [anon_sym_u128] = ACTIONS(2307), - [anon_sym_i128] = ACTIONS(2307), - [anon_sym_isize] = ACTIONS(2307), - [anon_sym_usize] = ACTIONS(2307), - [anon_sym_f32] = ACTIONS(2307), - [anon_sym_f64] = ACTIONS(2307), - [anon_sym_bool] = ACTIONS(2307), - [anon_sym_str] = ACTIONS(2307), - [anon_sym_char] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2307), - [anon_sym_fn] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_impl] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_loop] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_mod] = ACTIONS(2307), - [anon_sym_pub] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_trait] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_union] = ACTIONS(2307), - [anon_sym_unsafe] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_extern] = ACTIONS(2307), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_move] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2307), - [sym_integer_literal] = ACTIONS(2305), - [aux_sym_string_literal_token1] = ACTIONS(2305), - [sym_char_literal] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2307), - [sym_super] = ACTIONS(2307), - [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(2305), - [sym_raw_string_literal] = ACTIONS(2305), - [sym_float_literal] = ACTIONS(2305), - [sym_block_comment] = ACTIONS(3), - }, - [614] = { - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_identifier] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_macro_rules_BANG] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_u8] = ACTIONS(2311), - [anon_sym_i8] = ACTIONS(2311), - [anon_sym_u16] = ACTIONS(2311), - [anon_sym_i16] = ACTIONS(2311), - [anon_sym_u32] = ACTIONS(2311), - [anon_sym_i32] = ACTIONS(2311), - [anon_sym_u64] = ACTIONS(2311), - [anon_sym_i64] = ACTIONS(2311), - [anon_sym_u128] = ACTIONS(2311), - [anon_sym_i128] = ACTIONS(2311), - [anon_sym_isize] = ACTIONS(2311), - [anon_sym_usize] = ACTIONS(2311), - [anon_sym_f32] = ACTIONS(2311), - [anon_sym_f64] = ACTIONS(2311), - [anon_sym_bool] = ACTIONS(2311), - [anon_sym_str] = ACTIONS(2311), - [anon_sym_char] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2311), - [anon_sym_async] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_default] = ACTIONS(2311), - [anon_sym_enum] = ACTIONS(2311), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_impl] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_mod] = ACTIONS(2311), - [anon_sym_pub] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_static] = ACTIONS(2311), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_trait] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2311), - [anon_sym_union] = ACTIONS(2311), - [anon_sym_unsafe] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_DOT_DOT] = ACTIONS(2309), - [anon_sym_yield] = ACTIONS(2311), - [anon_sym_move] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2311), - [sym_integer_literal] = ACTIONS(2309), - [aux_sym_string_literal_token1] = ACTIONS(2309), - [sym_char_literal] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2311), - [sym_super] = ACTIONS(2311), - [sym_crate] = ACTIONS(2311), - [sym_metavariable] = ACTIONS(2309), - [sym_raw_string_literal] = ACTIONS(2309), - [sym_float_literal] = ACTIONS(2309), - [sym_block_comment] = ACTIONS(3), - }, - [615] = { - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_macro_rules_BANG] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(2313), - [anon_sym_u8] = ACTIONS(2315), - [anon_sym_i8] = ACTIONS(2315), - [anon_sym_u16] = ACTIONS(2315), - [anon_sym_i16] = ACTIONS(2315), - [anon_sym_u32] = ACTIONS(2315), - [anon_sym_i32] = ACTIONS(2315), - [anon_sym_u64] = ACTIONS(2315), - [anon_sym_i64] = ACTIONS(2315), - [anon_sym_u128] = ACTIONS(2315), - [anon_sym_i128] = ACTIONS(2315), - [anon_sym_isize] = ACTIONS(2315), - [anon_sym_usize] = ACTIONS(2315), - [anon_sym_f32] = ACTIONS(2315), - [anon_sym_f64] = ACTIONS(2315), - [anon_sym_bool] = ACTIONS(2315), - [anon_sym_str] = ACTIONS(2315), - [anon_sym_char] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2315), - [anon_sym_async] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_default] = ACTIONS(2315), - [anon_sym_enum] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_loop] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_mod] = ACTIONS(2315), - [anon_sym_pub] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_static] = ACTIONS(2315), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_trait] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_use] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_extern] = ACTIONS(2315), - [anon_sym_DOT_DOT] = ACTIONS(2313), - [anon_sym_yield] = ACTIONS(2315), - [anon_sym_move] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2315), - [sym_integer_literal] = ACTIONS(2313), - [aux_sym_string_literal_token1] = ACTIONS(2313), - [sym_char_literal] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2315), - [sym_super] = ACTIONS(2315), - [sym_crate] = ACTIONS(2315), - [sym_metavariable] = ACTIONS(2313), - [sym_raw_string_literal] = ACTIONS(2313), - [sym_float_literal] = ACTIONS(2313), - [sym_block_comment] = ACTIONS(3), - }, - [616] = { - [ts_builtin_sym_end] = ACTIONS(2317), - [sym_identifier] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2317), - [anon_sym_macro_rules_BANG] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_u8] = ACTIONS(2319), - [anon_sym_i8] = ACTIONS(2319), - [anon_sym_u16] = ACTIONS(2319), - [anon_sym_i16] = ACTIONS(2319), - [anon_sym_u32] = ACTIONS(2319), - [anon_sym_i32] = ACTIONS(2319), - [anon_sym_u64] = ACTIONS(2319), - [anon_sym_i64] = ACTIONS(2319), - [anon_sym_u128] = ACTIONS(2319), - [anon_sym_i128] = ACTIONS(2319), - [anon_sym_isize] = ACTIONS(2319), - [anon_sym_usize] = ACTIONS(2319), - [anon_sym_f32] = ACTIONS(2319), - [anon_sym_f64] = ACTIONS(2319), - [anon_sym_bool] = ACTIONS(2319), - [anon_sym_str] = ACTIONS(2319), - [anon_sym_char] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2317), - [anon_sym_AMP] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_enum] = ACTIONS(2319), - [anon_sym_fn] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_impl] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_loop] = ACTIONS(2319), - [anon_sym_match] = ACTIONS(2319), - [anon_sym_mod] = ACTIONS(2319), - [anon_sym_pub] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_struct] = ACTIONS(2319), - [anon_sym_trait] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2319), - [anon_sym_union] = ACTIONS(2319), - [anon_sym_unsafe] = ACTIONS(2319), - [anon_sym_use] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_extern] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2317), - [anon_sym_yield] = ACTIONS(2319), - [anon_sym_move] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2319), - [sym_integer_literal] = ACTIONS(2317), - [aux_sym_string_literal_token1] = ACTIONS(2317), - [sym_char_literal] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2319), - [sym_super] = ACTIONS(2319), - [sym_crate] = ACTIONS(2319), - [sym_metavariable] = ACTIONS(2317), - [sym_raw_string_literal] = ACTIONS(2317), - [sym_float_literal] = ACTIONS(2317), - [sym_block_comment] = ACTIONS(3), - }, - [617] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_identifier] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_macro_rules_BANG] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_STAR] = ACTIONS(2321), - [anon_sym_u8] = ACTIONS(2323), - [anon_sym_i8] = ACTIONS(2323), - [anon_sym_u16] = ACTIONS(2323), - [anon_sym_i16] = ACTIONS(2323), - [anon_sym_u32] = ACTIONS(2323), - [anon_sym_i32] = ACTIONS(2323), - [anon_sym_u64] = ACTIONS(2323), - [anon_sym_i64] = ACTIONS(2323), - [anon_sym_u128] = ACTIONS(2323), - [anon_sym_i128] = ACTIONS(2323), - [anon_sym_isize] = ACTIONS(2323), - [anon_sym_usize] = ACTIONS(2323), - [anon_sym_f32] = ACTIONS(2323), - [anon_sym_f64] = ACTIONS(2323), - [anon_sym_bool] = ACTIONS(2323), - [anon_sym_str] = ACTIONS(2323), - [anon_sym_char] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_COLON_COLON] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_break] = ACTIONS(2323), - [anon_sym_const] = ACTIONS(2323), - [anon_sym_continue] = ACTIONS(2323), - [anon_sym_default] = ACTIONS(2323), - [anon_sym_enum] = ACTIONS(2323), - [anon_sym_fn] = ACTIONS(2323), - [anon_sym_for] = ACTIONS(2323), - [anon_sym_if] = ACTIONS(2323), - [anon_sym_impl] = ACTIONS(2323), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_loop] = ACTIONS(2323), - [anon_sym_match] = ACTIONS(2323), - [anon_sym_mod] = ACTIONS(2323), - [anon_sym_pub] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_union] = ACTIONS(2323), - [anon_sym_unsafe] = ACTIONS(2323), - [anon_sym_use] = ACTIONS(2323), - [anon_sym_while] = ACTIONS(2323), - [anon_sym_extern] = ACTIONS(2323), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_yield] = ACTIONS(2323), - [anon_sym_move] = ACTIONS(2323), - [anon_sym_try] = ACTIONS(2323), - [sym_integer_literal] = ACTIONS(2321), - [aux_sym_string_literal_token1] = ACTIONS(2321), - [sym_char_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2323), - [sym_super] = ACTIONS(2323), - [sym_crate] = ACTIONS(2323), - [sym_metavariable] = ACTIONS(2321), - [sym_raw_string_literal] = ACTIONS(2321), - [sym_float_literal] = ACTIONS(2321), - [sym_block_comment] = ACTIONS(3), - }, - [618] = { - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_macro_rules_BANG] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_u8] = ACTIONS(2327), - [anon_sym_i8] = ACTIONS(2327), - [anon_sym_u16] = ACTIONS(2327), - [anon_sym_i16] = ACTIONS(2327), - [anon_sym_u32] = ACTIONS(2327), - [anon_sym_i32] = ACTIONS(2327), - [anon_sym_u64] = ACTIONS(2327), - [anon_sym_i64] = ACTIONS(2327), - [anon_sym_u128] = ACTIONS(2327), - [anon_sym_i128] = ACTIONS(2327), - [anon_sym_isize] = ACTIONS(2327), - [anon_sym_usize] = ACTIONS(2327), - [anon_sym_f32] = ACTIONS(2327), - [anon_sym_f64] = ACTIONS(2327), - [anon_sym_bool] = ACTIONS(2327), - [anon_sym_str] = ACTIONS(2327), - [anon_sym_char] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_COLON_COLON] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_async] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_default] = ACTIONS(2327), - [anon_sym_enum] = ACTIONS(2327), - [anon_sym_fn] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_impl] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_loop] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_mod] = ACTIONS(2327), - [anon_sym_pub] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_static] = ACTIONS(2327), - [anon_sym_struct] = ACTIONS(2327), - [anon_sym_trait] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2327), - [anon_sym_unsafe] = ACTIONS(2327), - [anon_sym_use] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_extern] = ACTIONS(2327), - [anon_sym_DOT_DOT] = ACTIONS(2325), - [anon_sym_yield] = ACTIONS(2327), - [anon_sym_move] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2327), - [sym_integer_literal] = ACTIONS(2325), - [aux_sym_string_literal_token1] = ACTIONS(2325), - [sym_char_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2327), - [sym_super] = ACTIONS(2327), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(2325), - [sym_raw_string_literal] = ACTIONS(2325), - [sym_float_literal] = ACTIONS(2325), - [sym_block_comment] = ACTIONS(3), - }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2329), - [anon_sym_macro_rules_BANG] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2329), - [anon_sym_u8] = ACTIONS(2331), - [anon_sym_i8] = ACTIONS(2331), - [anon_sym_u16] = ACTIONS(2331), - [anon_sym_i16] = ACTIONS(2331), - [anon_sym_u32] = ACTIONS(2331), - [anon_sym_i32] = ACTIONS(2331), - [anon_sym_u64] = ACTIONS(2331), - [anon_sym_i64] = ACTIONS(2331), - [anon_sym_u128] = ACTIONS(2331), - [anon_sym_i128] = ACTIONS(2331), - [anon_sym_isize] = ACTIONS(2331), - [anon_sym_usize] = ACTIONS(2331), - [anon_sym_f32] = ACTIONS(2331), - [anon_sym_f64] = ACTIONS(2331), - [anon_sym_bool] = ACTIONS(2331), - [anon_sym_str] = ACTIONS(2331), - [anon_sym_char] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_async] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_default] = ACTIONS(2331), - [anon_sym_enum] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_impl] = ACTIONS(2331), - [anon_sym_let] = ACTIONS(2331), - [anon_sym_loop] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_mod] = ACTIONS(2331), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_static] = ACTIONS(2331), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_trait] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_extern] = ACTIONS(2331), - [anon_sym_DOT_DOT] = ACTIONS(2329), - [anon_sym_yield] = ACTIONS(2331), - [anon_sym_move] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2331), - [sym_integer_literal] = ACTIONS(2329), - [aux_sym_string_literal_token1] = ACTIONS(2329), - [sym_char_literal] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2331), - [sym_super] = ACTIONS(2331), - [sym_crate] = ACTIONS(2331), - [sym_metavariable] = ACTIONS(2329), - [sym_raw_string_literal] = ACTIONS(2329), - [sym_float_literal] = ACTIONS(2329), - [sym_block_comment] = ACTIONS(3), - }, - [620] = { - [ts_builtin_sym_end] = ACTIONS(2333), - [sym_identifier] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_macro_rules_BANG] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_STAR] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2335), - [anon_sym_i8] = ACTIONS(2335), - [anon_sym_u16] = ACTIONS(2335), - [anon_sym_i16] = ACTIONS(2335), - [anon_sym_u32] = ACTIONS(2335), - [anon_sym_i32] = ACTIONS(2335), - [anon_sym_u64] = ACTIONS(2335), - [anon_sym_i64] = ACTIONS(2335), - [anon_sym_u128] = ACTIONS(2335), - [anon_sym_i128] = ACTIONS(2335), - [anon_sym_isize] = ACTIONS(2335), - [anon_sym_usize] = ACTIONS(2335), - [anon_sym_f32] = ACTIONS(2335), - [anon_sym_f64] = ACTIONS(2335), - [anon_sym_bool] = ACTIONS(2335), - [anon_sym_str] = ACTIONS(2335), - [anon_sym_char] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_default] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_impl] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_mod] = ACTIONS(2335), - [anon_sym_pub] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_trait] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_union] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_DOT_DOT] = ACTIONS(2333), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_move] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [sym_integer_literal] = ACTIONS(2333), - [aux_sym_string_literal_token1] = ACTIONS(2333), - [sym_char_literal] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2335), - [sym_super] = ACTIONS(2335), - [sym_crate] = ACTIONS(2335), - [sym_metavariable] = ACTIONS(2333), - [sym_raw_string_literal] = ACTIONS(2333), - [sym_float_literal] = ACTIONS(2333), - [sym_block_comment] = ACTIONS(3), - }, - [621] = { - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_macro_rules_BANG] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_u8] = ACTIONS(2339), - [anon_sym_i8] = ACTIONS(2339), - [anon_sym_u16] = ACTIONS(2339), - [anon_sym_i16] = ACTIONS(2339), - [anon_sym_u32] = ACTIONS(2339), - [anon_sym_i32] = ACTIONS(2339), - [anon_sym_u64] = ACTIONS(2339), - [anon_sym_i64] = ACTIONS(2339), - [anon_sym_u128] = ACTIONS(2339), - [anon_sym_i128] = ACTIONS(2339), - [anon_sym_isize] = ACTIONS(2339), - [anon_sym_usize] = ACTIONS(2339), - [anon_sym_f32] = ACTIONS(2339), - [anon_sym_f64] = ACTIONS(2339), - [anon_sym_bool] = ACTIONS(2339), - [anon_sym_str] = ACTIONS(2339), - [anon_sym_char] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_SQUOTE] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_default] = ACTIONS(2339), - [anon_sym_enum] = ACTIONS(2339), - [anon_sym_fn] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_impl] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_loop] = ACTIONS(2339), - [anon_sym_match] = ACTIONS(2339), - [anon_sym_mod] = ACTIONS(2339), - [anon_sym_pub] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_static] = ACTIONS(2339), - [anon_sym_struct] = ACTIONS(2339), - [anon_sym_trait] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_union] = ACTIONS(2339), - [anon_sym_unsafe] = ACTIONS(2339), - [anon_sym_use] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_extern] = ACTIONS(2339), - [anon_sym_DOT_DOT] = ACTIONS(2337), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_move] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2339), - [sym_integer_literal] = ACTIONS(2337), - [aux_sym_string_literal_token1] = ACTIONS(2337), - [sym_char_literal] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2339), - [sym_super] = ACTIONS(2339), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2337), - [sym_raw_string_literal] = ACTIONS(2337), - [sym_float_literal] = ACTIONS(2337), - [sym_block_comment] = ACTIONS(3), - }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_macro_rules_BANG] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_u8] = ACTIONS(2343), - [anon_sym_i8] = ACTIONS(2343), - [anon_sym_u16] = ACTIONS(2343), - [anon_sym_i16] = ACTIONS(2343), - [anon_sym_u32] = ACTIONS(2343), - [anon_sym_i32] = ACTIONS(2343), - [anon_sym_u64] = ACTIONS(2343), - [anon_sym_i64] = ACTIONS(2343), - [anon_sym_u128] = ACTIONS(2343), - [anon_sym_i128] = ACTIONS(2343), - [anon_sym_isize] = ACTIONS(2343), - [anon_sym_usize] = ACTIONS(2343), - [anon_sym_f32] = ACTIONS(2343), - [anon_sym_f64] = ACTIONS(2343), - [anon_sym_bool] = ACTIONS(2343), - [anon_sym_str] = ACTIONS(2343), - [anon_sym_char] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_COLON_COLON] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2341), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2343), - [anon_sym_async] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_enum] = ACTIONS(2343), - [anon_sym_fn] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_impl] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_loop] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_mod] = ACTIONS(2343), - [anon_sym_pub] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_struct] = ACTIONS(2343), - [anon_sym_trait] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_union] = ACTIONS(2343), - [anon_sym_unsafe] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_extern] = ACTIONS(2343), - [anon_sym_DOT_DOT] = ACTIONS(2341), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_move] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [sym_integer_literal] = ACTIONS(2341), - [aux_sym_string_literal_token1] = ACTIONS(2341), - [sym_char_literal] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2343), - [anon_sym_false] = ACTIONS(2343), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2343), - [sym_super] = ACTIONS(2343), - [sym_crate] = ACTIONS(2343), - [sym_metavariable] = ACTIONS(2341), - [sym_raw_string_literal] = ACTIONS(2341), - [sym_float_literal] = ACTIONS(2341), - [sym_block_comment] = ACTIONS(3), - }, - [623] = { - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2345), - [anon_sym_macro_rules_BANG] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(2347), - [anon_sym_i8] = ACTIONS(2347), - [anon_sym_u16] = ACTIONS(2347), - [anon_sym_i16] = ACTIONS(2347), - [anon_sym_u32] = ACTIONS(2347), - [anon_sym_i32] = ACTIONS(2347), - [anon_sym_u64] = ACTIONS(2347), - [anon_sym_i64] = ACTIONS(2347), - [anon_sym_u128] = ACTIONS(2347), - [anon_sym_i128] = ACTIONS(2347), - [anon_sym_isize] = ACTIONS(2347), - [anon_sym_usize] = ACTIONS(2347), - [anon_sym_f32] = ACTIONS(2347), - [anon_sym_f64] = ACTIONS(2347), - [anon_sym_bool] = ACTIONS(2347), - [anon_sym_str] = ACTIONS(2347), - [anon_sym_char] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_fn] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_impl] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_mod] = ACTIONS(2347), - [anon_sym_pub] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_trait] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_unsafe] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_DOT_DOT] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2347), - [anon_sym_move] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [sym_integer_literal] = ACTIONS(2345), - [aux_sym_string_literal_token1] = ACTIONS(2345), - [sym_char_literal] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_crate] = ACTIONS(2347), - [sym_metavariable] = ACTIONS(2345), - [sym_raw_string_literal] = ACTIONS(2345), - [sym_float_literal] = ACTIONS(2345), - [sym_block_comment] = ACTIONS(3), - }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_macro_rules_BANG] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_u8] = ACTIONS(2351), - [anon_sym_i8] = ACTIONS(2351), - [anon_sym_u16] = ACTIONS(2351), - [anon_sym_i16] = ACTIONS(2351), - [anon_sym_u32] = ACTIONS(2351), - [anon_sym_i32] = ACTIONS(2351), - [anon_sym_u64] = ACTIONS(2351), - [anon_sym_i64] = ACTIONS(2351), - [anon_sym_u128] = ACTIONS(2351), - [anon_sym_i128] = ACTIONS(2351), - [anon_sym_isize] = ACTIONS(2351), - [anon_sym_usize] = ACTIONS(2351), - [anon_sym_f32] = ACTIONS(2351), - [anon_sym_f64] = ACTIONS(2351), - [anon_sym_bool] = ACTIONS(2351), - [anon_sym_str] = ACTIONS(2351), - [anon_sym_char] = ACTIONS(2351), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2351), - [anon_sym_async] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_fn] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_impl] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_mod] = ACTIONS(2351), - [anon_sym_pub] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_trait] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_unsafe] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2351), - [anon_sym_move] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [sym_integer_literal] = ACTIONS(2349), - [aux_sym_string_literal_token1] = ACTIONS(2349), - [sym_char_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2351), - [sym_super] = ACTIONS(2351), - [sym_crate] = ACTIONS(2351), - [sym_metavariable] = ACTIONS(2349), - [sym_raw_string_literal] = ACTIONS(2349), - [sym_float_literal] = ACTIONS(2349), - [sym_block_comment] = ACTIONS(3), - }, - [625] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_macro_rules_BANG] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(2355), - [anon_sym_i8] = ACTIONS(2355), - [anon_sym_u16] = ACTIONS(2355), - [anon_sym_i16] = ACTIONS(2355), - [anon_sym_u32] = ACTIONS(2355), - [anon_sym_i32] = ACTIONS(2355), - [anon_sym_u64] = ACTIONS(2355), - [anon_sym_i64] = ACTIONS(2355), - [anon_sym_u128] = ACTIONS(2355), - [anon_sym_i128] = ACTIONS(2355), - [anon_sym_isize] = ACTIONS(2355), - [anon_sym_usize] = ACTIONS(2355), - [anon_sym_f32] = ACTIONS(2355), - [anon_sym_f64] = ACTIONS(2355), - [anon_sym_bool] = ACTIONS(2355), - [anon_sym_str] = ACTIONS(2355), - [anon_sym_char] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_fn] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_mod] = ACTIONS(2355), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_trait] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_unsafe] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_DOT_DOT] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_move] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [sym_integer_literal] = ACTIONS(2353), - [aux_sym_string_literal_token1] = ACTIONS(2353), - [sym_char_literal] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2355), - [sym_super] = ACTIONS(2355), - [sym_crate] = ACTIONS(2355), - [sym_metavariable] = ACTIONS(2353), - [sym_raw_string_literal] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2353), - [sym_block_comment] = ACTIONS(3), - }, - [626] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_macro_rules_BANG] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_u8] = ACTIONS(2359), - [anon_sym_i8] = ACTIONS(2359), - [anon_sym_u16] = ACTIONS(2359), - [anon_sym_i16] = ACTIONS(2359), - [anon_sym_u32] = ACTIONS(2359), - [anon_sym_i32] = ACTIONS(2359), - [anon_sym_u64] = ACTIONS(2359), - [anon_sym_i64] = ACTIONS(2359), - [anon_sym_u128] = ACTIONS(2359), - [anon_sym_i128] = ACTIONS(2359), - [anon_sym_isize] = ACTIONS(2359), - [anon_sym_usize] = ACTIONS(2359), - [anon_sym_f32] = ACTIONS(2359), - [anon_sym_f64] = ACTIONS(2359), - [anon_sym_bool] = ACTIONS(2359), - [anon_sym_str] = ACTIONS(2359), - [anon_sym_char] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2359), - [anon_sym_async] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_fn] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_impl] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_mod] = ACTIONS(2359), - [anon_sym_pub] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_trait] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_unsafe] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_move] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [sym_integer_literal] = ACTIONS(2357), - [aux_sym_string_literal_token1] = ACTIONS(2357), - [sym_char_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2359), - [sym_super] = ACTIONS(2359), - [sym_crate] = ACTIONS(2359), - [sym_metavariable] = ACTIONS(2357), - [sym_raw_string_literal] = ACTIONS(2357), - [sym_float_literal] = ACTIONS(2357), - [sym_block_comment] = ACTIONS(3), - }, - [627] = { - [ts_builtin_sym_end] = ACTIONS(2361), - [sym_identifier] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_macro_rules_BANG] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_u8] = ACTIONS(2363), - [anon_sym_i8] = ACTIONS(2363), - [anon_sym_u16] = ACTIONS(2363), - [anon_sym_i16] = ACTIONS(2363), - [anon_sym_u32] = ACTIONS(2363), - [anon_sym_i32] = ACTIONS(2363), - [anon_sym_u64] = ACTIONS(2363), - [anon_sym_i64] = ACTIONS(2363), - [anon_sym_u128] = ACTIONS(2363), - [anon_sym_i128] = ACTIONS(2363), - [anon_sym_isize] = ACTIONS(2363), - [anon_sym_usize] = ACTIONS(2363), - [anon_sym_f32] = ACTIONS(2363), - [anon_sym_f64] = ACTIONS(2363), - [anon_sym_bool] = ACTIONS(2363), - [anon_sym_str] = ACTIONS(2363), - [anon_sym_char] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_async] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_enum] = ACTIONS(2363), - [anon_sym_fn] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_impl] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_mod] = ACTIONS(2363), - [anon_sym_pub] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_static] = ACTIONS(2363), - [anon_sym_struct] = ACTIONS(2363), - [anon_sym_trait] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_unsafe] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2363), - [anon_sym_move] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2363), - [sym_integer_literal] = ACTIONS(2361), - [aux_sym_string_literal_token1] = ACTIONS(2361), - [sym_char_literal] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2363), - [sym_super] = ACTIONS(2363), - [sym_crate] = ACTIONS(2363), - [sym_metavariable] = ACTIONS(2361), - [sym_raw_string_literal] = ACTIONS(2361), - [sym_float_literal] = ACTIONS(2361), - [sym_block_comment] = ACTIONS(3), - }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2365), - [anon_sym_macro_rules_BANG] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(2365), - [anon_sym_u8] = ACTIONS(2367), - [anon_sym_i8] = ACTIONS(2367), - [anon_sym_u16] = ACTIONS(2367), - [anon_sym_i16] = ACTIONS(2367), - [anon_sym_u32] = ACTIONS(2367), - [anon_sym_i32] = ACTIONS(2367), - [anon_sym_u64] = ACTIONS(2367), - [anon_sym_i64] = ACTIONS(2367), - [anon_sym_u128] = ACTIONS(2367), - [anon_sym_i128] = ACTIONS(2367), - [anon_sym_isize] = ACTIONS(2367), - [anon_sym_usize] = ACTIONS(2367), - [anon_sym_f32] = ACTIONS(2367), - [anon_sym_f64] = ACTIONS(2367), - [anon_sym_bool] = ACTIONS(2367), - [anon_sym_str] = ACTIONS(2367), - [anon_sym_char] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_COLON_COLON] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_PIPE] = ACTIONS(2365), - [anon_sym_SQUOTE] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_default] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_fn] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_impl] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_mod] = ACTIONS(2367), - [anon_sym_pub] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_trait] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(2367), - [anon_sym_unsafe] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_yield] = ACTIONS(2367), - [anon_sym_move] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2365), - [aux_sym_string_literal_token1] = ACTIONS(2365), - [sym_char_literal] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_metavariable] = ACTIONS(2365), - [sym_raw_string_literal] = ACTIONS(2365), - [sym_float_literal] = ACTIONS(2365), - [sym_block_comment] = ACTIONS(3), - }, - [629] = { - [ts_builtin_sym_end] = ACTIONS(2369), - [sym_identifier] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2369), - [anon_sym_macro_rules_BANG] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2371), - [anon_sym_i8] = ACTIONS(2371), - [anon_sym_u16] = ACTIONS(2371), - [anon_sym_i16] = ACTIONS(2371), - [anon_sym_u32] = ACTIONS(2371), - [anon_sym_i32] = ACTIONS(2371), - [anon_sym_u64] = ACTIONS(2371), - [anon_sym_i64] = ACTIONS(2371), - [anon_sym_u128] = ACTIONS(2371), - [anon_sym_i128] = ACTIONS(2371), - [anon_sym_isize] = ACTIONS(2371), - [anon_sym_usize] = ACTIONS(2371), - [anon_sym_f32] = ACTIONS(2371), - [anon_sym_f64] = ACTIONS(2371), - [anon_sym_bool] = ACTIONS(2371), - [anon_sym_str] = ACTIONS(2371), - [anon_sym_char] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_fn] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_impl] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_mod] = ACTIONS(2371), - [anon_sym_pub] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_trait] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_unsafe] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_DOT_DOT] = ACTIONS(2369), - [anon_sym_yield] = ACTIONS(2371), - [anon_sym_move] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [sym_integer_literal] = ACTIONS(2369), - [aux_sym_string_literal_token1] = ACTIONS(2369), - [sym_char_literal] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2371), - [sym_super] = ACTIONS(2371), - [sym_crate] = ACTIONS(2371), - [sym_metavariable] = ACTIONS(2369), - [sym_raw_string_literal] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), - [sym_block_comment] = ACTIONS(3), - }, - [630] = { - [ts_builtin_sym_end] = ACTIONS(2373), - [sym_identifier] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_macro_rules_BANG] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_u8] = ACTIONS(2375), - [anon_sym_i8] = ACTIONS(2375), - [anon_sym_u16] = ACTIONS(2375), - [anon_sym_i16] = ACTIONS(2375), - [anon_sym_u32] = ACTIONS(2375), - [anon_sym_i32] = ACTIONS(2375), - [anon_sym_u64] = ACTIONS(2375), - [anon_sym_i64] = ACTIONS(2375), - [anon_sym_u128] = ACTIONS(2375), - [anon_sym_i128] = ACTIONS(2375), - [anon_sym_isize] = ACTIONS(2375), - [anon_sym_usize] = ACTIONS(2375), - [anon_sym_f32] = ACTIONS(2375), - [anon_sym_f64] = ACTIONS(2375), - [anon_sym_bool] = ACTIONS(2375), - [anon_sym_str] = ACTIONS(2375), - [anon_sym_char] = ACTIONS(2375), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_POUND] = ACTIONS(2373), - [anon_sym_LT] = ACTIONS(2373), - [anon_sym_PIPE] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2375), - [anon_sym_async] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_fn] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_impl] = ACTIONS(2375), - [anon_sym_let] = ACTIONS(2375), - [anon_sym_loop] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_mod] = ACTIONS(2375), - [anon_sym_pub] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_trait] = ACTIONS(2375), - [anon_sym_type] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_unsafe] = ACTIONS(2375), - [anon_sym_use] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym_DOT_DOT] = ACTIONS(2373), - [anon_sym_yield] = ACTIONS(2375), - [anon_sym_move] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [sym_integer_literal] = ACTIONS(2373), - [aux_sym_string_literal_token1] = ACTIONS(2373), - [sym_char_literal] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2375), - [sym_super] = ACTIONS(2375), - [sym_crate] = ACTIONS(2375), - [sym_metavariable] = ACTIONS(2373), - [sym_raw_string_literal] = ACTIONS(2373), - [sym_float_literal] = ACTIONS(2373), - [sym_block_comment] = ACTIONS(3), - }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2377), - [sym_identifier] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_macro_rules_BANG] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_u8] = ACTIONS(2379), - [anon_sym_i8] = ACTIONS(2379), - [anon_sym_u16] = ACTIONS(2379), - [anon_sym_i16] = ACTIONS(2379), - [anon_sym_u32] = ACTIONS(2379), - [anon_sym_i32] = ACTIONS(2379), - [anon_sym_u64] = ACTIONS(2379), - [anon_sym_i64] = ACTIONS(2379), - [anon_sym_u128] = ACTIONS(2379), - [anon_sym_i128] = ACTIONS(2379), - [anon_sym_isize] = ACTIONS(2379), - [anon_sym_usize] = ACTIONS(2379), - [anon_sym_f32] = ACTIONS(2379), - [anon_sym_f64] = ACTIONS(2379), - [anon_sym_bool] = ACTIONS(2379), - [anon_sym_str] = ACTIONS(2379), - [anon_sym_char] = ACTIONS(2379), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_POUND] = ACTIONS(2377), - [anon_sym_LT] = ACTIONS(2377), - [anon_sym_PIPE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2379), - [anon_sym_async] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_fn] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_impl] = ACTIONS(2379), - [anon_sym_let] = ACTIONS(2379), - [anon_sym_loop] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_mod] = ACTIONS(2379), - [anon_sym_pub] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_trait] = ACTIONS(2379), - [anon_sym_type] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_unsafe] = ACTIONS(2379), - [anon_sym_use] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym_DOT_DOT] = ACTIONS(2377), - [anon_sym_yield] = ACTIONS(2379), - [anon_sym_move] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [sym_integer_literal] = ACTIONS(2377), - [aux_sym_string_literal_token1] = ACTIONS(2377), - [sym_char_literal] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2379), - [anon_sym_false] = ACTIONS(2379), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2379), - [sym_super] = ACTIONS(2379), - [sym_crate] = ACTIONS(2379), - [sym_metavariable] = ACTIONS(2377), - [sym_raw_string_literal] = ACTIONS(2377), - [sym_float_literal] = ACTIONS(2377), - [sym_block_comment] = ACTIONS(3), - }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(2381), - [sym_identifier] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_macro_rules_BANG] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(2381), - [anon_sym_u8] = ACTIONS(2383), - [anon_sym_i8] = ACTIONS(2383), - [anon_sym_u16] = ACTIONS(2383), - [anon_sym_i16] = ACTIONS(2383), - [anon_sym_u32] = ACTIONS(2383), - [anon_sym_i32] = ACTIONS(2383), - [anon_sym_u64] = ACTIONS(2383), - [anon_sym_i64] = ACTIONS(2383), - [anon_sym_u128] = ACTIONS(2383), - [anon_sym_i128] = ACTIONS(2383), - [anon_sym_isize] = ACTIONS(2383), - [anon_sym_usize] = ACTIONS(2383), - [anon_sym_f32] = ACTIONS(2383), - [anon_sym_f64] = ACTIONS(2383), - [anon_sym_bool] = ACTIONS(2383), - [anon_sym_str] = ACTIONS(2383), - [anon_sym_char] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_COLON_COLON] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_POUND] = ACTIONS(2381), - [anon_sym_LT] = ACTIONS(2381), - [anon_sym_PIPE] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_async] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_fn] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_impl] = ACTIONS(2383), - [anon_sym_let] = ACTIONS(2383), - [anon_sym_loop] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_mod] = ACTIONS(2383), - [anon_sym_pub] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_trait] = ACTIONS(2383), - [anon_sym_type] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_unsafe] = ACTIONS(2383), - [anon_sym_use] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym_DOT_DOT] = ACTIONS(2381), - [anon_sym_yield] = ACTIONS(2383), - [anon_sym_move] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [sym_integer_literal] = ACTIONS(2381), - [aux_sym_string_literal_token1] = ACTIONS(2381), - [sym_char_literal] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2383), - [sym_super] = ACTIONS(2383), - [sym_crate] = ACTIONS(2383), - [sym_metavariable] = ACTIONS(2381), - [sym_raw_string_literal] = ACTIONS(2381), - [sym_float_literal] = ACTIONS(2381), - [sym_block_comment] = ACTIONS(3), + [537] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_macro_rules_BANG] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_u8] = ACTIONS(1879), + [anon_sym_i8] = ACTIONS(1879), + [anon_sym_u16] = ACTIONS(1879), + [anon_sym_i16] = ACTIONS(1879), + [anon_sym_u32] = ACTIONS(1879), + [anon_sym_i32] = ACTIONS(1879), + [anon_sym_u64] = ACTIONS(1879), + [anon_sym_i64] = ACTIONS(1879), + [anon_sym_u128] = ACTIONS(1879), + [anon_sym_i128] = ACTIONS(1879), + [anon_sym_isize] = ACTIONS(1879), + [anon_sym_usize] = ACTIONS(1879), + [anon_sym_f32] = ACTIONS(1879), + [anon_sym_f64] = ACTIONS(1879), + [anon_sym_bool] = ACTIONS(1879), + [anon_sym_str] = ACTIONS(1879), + [anon_sym_char] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1877), + [anon_sym_COLON_COLON] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_SQUOTE] = ACTIONS(1879), + [anon_sym_async] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_impl] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_mod] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_trait] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1877), + [anon_sym_yield] = ACTIONS(1879), + [anon_sym_move] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [sym_integer_literal] = ACTIONS(1877), + [aux_sym_string_literal_token1] = ACTIONS(1877), + [sym_char_literal] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1879), + [sym_super] = ACTIONS(1879), + [sym_crate] = ACTIONS(1879), + [sym_metavariable] = ACTIONS(1877), + [sym_raw_string_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(2385), - [sym_identifier] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_macro_rules_BANG] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_u8] = ACTIONS(2387), - [anon_sym_i8] = ACTIONS(2387), - [anon_sym_u16] = ACTIONS(2387), - [anon_sym_i16] = ACTIONS(2387), - [anon_sym_u32] = ACTIONS(2387), - [anon_sym_i32] = ACTIONS(2387), - [anon_sym_u64] = ACTIONS(2387), - [anon_sym_i64] = ACTIONS(2387), - [anon_sym_u128] = ACTIONS(2387), - [anon_sym_i128] = ACTIONS(2387), - [anon_sym_isize] = ACTIONS(2387), - [anon_sym_usize] = ACTIONS(2387), - [anon_sym_f32] = ACTIONS(2387), - [anon_sym_f64] = ACTIONS(2387), - [anon_sym_bool] = ACTIONS(2387), - [anon_sym_str] = ACTIONS(2387), - [anon_sym_char] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_POUND] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_impl] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_mod] = ACTIONS(2387), - [anon_sym_pub] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_trait] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym_DOT_DOT] = ACTIONS(2385), - [anon_sym_yield] = ACTIONS(2387), - [anon_sym_move] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [sym_integer_literal] = ACTIONS(2385), - [aux_sym_string_literal_token1] = ACTIONS(2385), - [sym_char_literal] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2387), - [sym_super] = ACTIONS(2387), - [sym_crate] = ACTIONS(2387), - [sym_metavariable] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2385), - [sym_float_literal] = ACTIONS(2385), - [sym_block_comment] = ACTIONS(3), + [538] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym_identifier] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_macro_rules_BANG] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_u8] = ACTIONS(1883), + [anon_sym_i8] = ACTIONS(1883), + [anon_sym_u16] = ACTIONS(1883), + [anon_sym_i16] = ACTIONS(1883), + [anon_sym_u32] = ACTIONS(1883), + [anon_sym_i32] = ACTIONS(1883), + [anon_sym_u64] = ACTIONS(1883), + [anon_sym_i64] = ACTIONS(1883), + [anon_sym_u128] = ACTIONS(1883), + [anon_sym_i128] = ACTIONS(1883), + [anon_sym_isize] = ACTIONS(1883), + [anon_sym_usize] = ACTIONS(1883), + [anon_sym_f32] = ACTIONS(1883), + [anon_sym_f64] = ACTIONS(1883), + [anon_sym_bool] = ACTIONS(1883), + [anon_sym_str] = ACTIONS(1883), + [anon_sym_char] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_COLON_COLON] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_SQUOTE] = ACTIONS(1883), + [anon_sym_async] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_default] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [anon_sym_fn] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_impl] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_mod] = ACTIONS(1883), + [anon_sym_pub] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_struct] = ACTIONS(1883), + [anon_sym_trait] = ACTIONS(1883), + [anon_sym_type] = ACTIONS(1883), + [anon_sym_union] = ACTIONS(1883), + [anon_sym_unsafe] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1881), + [anon_sym_yield] = ACTIONS(1883), + [anon_sym_move] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [sym_integer_literal] = ACTIONS(1881), + [aux_sym_string_literal_token1] = ACTIONS(1881), + [sym_char_literal] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1883), + [sym_super] = ACTIONS(1883), + [sym_crate] = ACTIONS(1883), + [sym_metavariable] = ACTIONS(1881), + [sym_raw_string_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(2389), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_macro_rules_BANG] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2389), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2391), - [anon_sym_i8] = ACTIONS(2391), - [anon_sym_u16] = ACTIONS(2391), - [anon_sym_i16] = ACTIONS(2391), - [anon_sym_u32] = ACTIONS(2391), - [anon_sym_i32] = ACTIONS(2391), - [anon_sym_u64] = ACTIONS(2391), - [anon_sym_i64] = ACTIONS(2391), - [anon_sym_u128] = ACTIONS(2391), - [anon_sym_i128] = ACTIONS(2391), - [anon_sym_isize] = ACTIONS(2391), - [anon_sym_usize] = ACTIONS(2391), - [anon_sym_f32] = ACTIONS(2391), - [anon_sym_f64] = ACTIONS(2391), - [anon_sym_bool] = ACTIONS(2391), - [anon_sym_str] = ACTIONS(2391), - [anon_sym_char] = ACTIONS(2391), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_async] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_default] = ACTIONS(2391), - [anon_sym_enum] = ACTIONS(2391), - [anon_sym_fn] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_impl] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_mod] = ACTIONS(2391), - [anon_sym_pub] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_static] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2391), - [anon_sym_trait] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2391), - [anon_sym_union] = ACTIONS(2391), - [anon_sym_unsafe] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_DOT_DOT] = ACTIONS(2389), - [anon_sym_yield] = ACTIONS(2391), - [anon_sym_move] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2391), - [sym_integer_literal] = ACTIONS(2389), - [aux_sym_string_literal_token1] = ACTIONS(2389), - [sym_char_literal] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2391), - [sym_super] = ACTIONS(2391), - [sym_crate] = ACTIONS(2391), - [sym_metavariable] = ACTIONS(2389), - [sym_raw_string_literal] = ACTIONS(2389), - [sym_float_literal] = ACTIONS(2389), - [sym_block_comment] = ACTIONS(3), + [539] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(1885), + [sym_identifier] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym_macro_rules_BANG] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LBRACK] = ACTIONS(1885), + [anon_sym_STAR] = ACTIONS(1885), + [anon_sym_u8] = ACTIONS(1887), + [anon_sym_i8] = ACTIONS(1887), + [anon_sym_u16] = ACTIONS(1887), + [anon_sym_i16] = ACTIONS(1887), + [anon_sym_u32] = ACTIONS(1887), + [anon_sym_i32] = ACTIONS(1887), + [anon_sym_u64] = ACTIONS(1887), + [anon_sym_i64] = ACTIONS(1887), + [anon_sym_u128] = ACTIONS(1887), + [anon_sym_i128] = ACTIONS(1887), + [anon_sym_isize] = ACTIONS(1887), + [anon_sym_usize] = ACTIONS(1887), + [anon_sym_f32] = ACTIONS(1887), + [anon_sym_f64] = ACTIONS(1887), + [anon_sym_bool] = ACTIONS(1887), + [anon_sym_str] = ACTIONS(1887), + [anon_sym_char] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1885), + [anon_sym_COLON_COLON] = ACTIONS(1885), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_AMP] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(1885), + [anon_sym_LT] = ACTIONS(1885), + [anon_sym_PIPE] = ACTIONS(1885), + [anon_sym_SQUOTE] = ACTIONS(1887), + [anon_sym_async] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_enum] = ACTIONS(1887), + [anon_sym_fn] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_impl] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_mod] = ACTIONS(1887), + [anon_sym_pub] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_static] = ACTIONS(1887), + [anon_sym_struct] = ACTIONS(1887), + [anon_sym_trait] = ACTIONS(1887), + [anon_sym_type] = ACTIONS(1887), + [anon_sym_union] = ACTIONS(1887), + [anon_sym_unsafe] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1885), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_move] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [sym_integer_literal] = ACTIONS(1885), + [aux_sym_string_literal_token1] = ACTIONS(1885), + [sym_char_literal] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1887), + [sym_super] = ACTIONS(1887), + [sym_crate] = ACTIONS(1887), + [sym_metavariable] = ACTIONS(1885), + [sym_raw_string_literal] = ACTIONS(1885), + [sym_float_literal] = ACTIONS(1885), }, - [635] = { - [ts_builtin_sym_end] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2393), - [anon_sym_macro_rules_BANG] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2393), - [anon_sym_u8] = ACTIONS(2395), - [anon_sym_i8] = ACTIONS(2395), - [anon_sym_u16] = ACTIONS(2395), - [anon_sym_i16] = ACTIONS(2395), - [anon_sym_u32] = ACTIONS(2395), - [anon_sym_i32] = ACTIONS(2395), - [anon_sym_u64] = ACTIONS(2395), - [anon_sym_i64] = ACTIONS(2395), - [anon_sym_u128] = ACTIONS(2395), - [anon_sym_i128] = ACTIONS(2395), - [anon_sym_isize] = ACTIONS(2395), - [anon_sym_usize] = ACTIONS(2395), - [anon_sym_f32] = ACTIONS(2395), - [anon_sym_f64] = ACTIONS(2395), - [anon_sym_bool] = ACTIONS(2395), - [anon_sym_str] = ACTIONS(2395), - [anon_sym_char] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_POUND] = ACTIONS(2393), - [anon_sym_LT] = ACTIONS(2393), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_async] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_const] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_default] = ACTIONS(2395), - [anon_sym_enum] = ACTIONS(2395), - [anon_sym_fn] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_impl] = ACTIONS(2395), - [anon_sym_let] = ACTIONS(2395), - [anon_sym_loop] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_mod] = ACTIONS(2395), - [anon_sym_pub] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_static] = ACTIONS(2395), - [anon_sym_struct] = ACTIONS(2395), - [anon_sym_trait] = ACTIONS(2395), - [anon_sym_type] = ACTIONS(2395), - [anon_sym_union] = ACTIONS(2395), - [anon_sym_unsafe] = ACTIONS(2395), - [anon_sym_use] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_extern] = ACTIONS(2395), - [anon_sym_DOT_DOT] = ACTIONS(2393), - [anon_sym_yield] = ACTIONS(2395), - [anon_sym_move] = ACTIONS(2395), - [anon_sym_try] = ACTIONS(2395), - [sym_integer_literal] = ACTIONS(2393), - [aux_sym_string_literal_token1] = ACTIONS(2393), - [sym_char_literal] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2395), - [anon_sym_false] = ACTIONS(2395), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2395), - [sym_super] = ACTIONS(2395), - [sym_crate] = ACTIONS(2395), - [sym_metavariable] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2393), - [sym_float_literal] = ACTIONS(2393), - [sym_block_comment] = ACTIONS(3), + [540] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), + [ts_builtin_sym_end] = ACTIONS(1889), + [sym_identifier] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1889), + [anon_sym_macro_rules_BANG] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1889), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_LBRACK] = ACTIONS(1889), + [anon_sym_STAR] = ACTIONS(1889), + [anon_sym_u8] = ACTIONS(1891), + [anon_sym_i8] = ACTIONS(1891), + [anon_sym_u16] = ACTIONS(1891), + [anon_sym_i16] = ACTIONS(1891), + [anon_sym_u32] = ACTIONS(1891), + [anon_sym_i32] = ACTIONS(1891), + [anon_sym_u64] = ACTIONS(1891), + [anon_sym_i64] = ACTIONS(1891), + [anon_sym_u128] = ACTIONS(1891), + [anon_sym_i128] = ACTIONS(1891), + [anon_sym_isize] = ACTIONS(1891), + [anon_sym_usize] = ACTIONS(1891), + [anon_sym_f32] = ACTIONS(1891), + [anon_sym_f64] = ACTIONS(1891), + [anon_sym_bool] = ACTIONS(1891), + [anon_sym_str] = ACTIONS(1891), + [anon_sym_char] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1889), + [anon_sym_BANG] = ACTIONS(1889), + [anon_sym_AMP] = ACTIONS(1889), + [anon_sym_POUND] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1889), + [anon_sym_PIPE] = ACTIONS(1889), + [anon_sym_SQUOTE] = ACTIONS(1891), + [anon_sym_async] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_default] = ACTIONS(1891), + [anon_sym_enum] = ACTIONS(1891), + [anon_sym_fn] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_impl] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_mod] = ACTIONS(1891), + [anon_sym_pub] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_static] = ACTIONS(1891), + [anon_sym_struct] = ACTIONS(1891), + [anon_sym_trait] = ACTIONS(1891), + [anon_sym_type] = ACTIONS(1891), + [anon_sym_union] = ACTIONS(1891), + [anon_sym_unsafe] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_yield] = ACTIONS(1891), + [anon_sym_move] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [sym_integer_literal] = ACTIONS(1889), + [aux_sym_string_literal_token1] = ACTIONS(1889), + [sym_char_literal] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(1891), + [anon_sym_false] = ACTIONS(1891), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1891), + [sym_super] = ACTIONS(1891), + [sym_crate] = ACTIONS(1891), + [sym_metavariable] = ACTIONS(1889), + [sym_raw_string_literal] = ACTIONS(1889), + [sym_float_literal] = ACTIONS(1889), }, - [636] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_pattern] = STATE(3455), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [541] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), + [ts_builtin_sym_end] = ACTIONS(1893), + [sym_identifier] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1893), + [anon_sym_macro_rules_BANG] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_u8] = ACTIONS(1895), + [anon_sym_i8] = ACTIONS(1895), + [anon_sym_u16] = ACTIONS(1895), + [anon_sym_i16] = ACTIONS(1895), + [anon_sym_u32] = ACTIONS(1895), + [anon_sym_i32] = ACTIONS(1895), + [anon_sym_u64] = ACTIONS(1895), + [anon_sym_i64] = ACTIONS(1895), + [anon_sym_u128] = ACTIONS(1895), + [anon_sym_i128] = ACTIONS(1895), + [anon_sym_isize] = ACTIONS(1895), + [anon_sym_usize] = ACTIONS(1895), + [anon_sym_f32] = ACTIONS(1895), + [anon_sym_f64] = ACTIONS(1895), + [anon_sym_bool] = ACTIONS(1895), + [anon_sym_str] = ACTIONS(1895), + [anon_sym_char] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_COLON_COLON] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1895), + [anon_sym_async] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_default] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_fn] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_impl] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_mod] = ACTIONS(1895), + [anon_sym_pub] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1895), + [anon_sym_struct] = ACTIONS(1895), + [anon_sym_trait] = ACTIONS(1895), + [anon_sym_type] = ACTIONS(1895), + [anon_sym_union] = ACTIONS(1895), + [anon_sym_unsafe] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_yield] = ACTIONS(1895), + [anon_sym_move] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [sym_integer_literal] = ACTIONS(1893), + [aux_sym_string_literal_token1] = ACTIONS(1893), + [sym_char_literal] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1895), + [sym_super] = ACTIONS(1895), + [sym_crate] = ACTIONS(1895), + [sym_metavariable] = ACTIONS(1893), + [sym_raw_string_literal] = ACTIONS(1893), + [sym_float_literal] = ACTIONS(1893), }, - [637] = { - [ts_builtin_sym_end] = ACTIONS(2397), - [sym_identifier] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_macro_rules_BANG] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2397), - [anon_sym_u8] = ACTIONS(2399), - [anon_sym_i8] = ACTIONS(2399), - [anon_sym_u16] = ACTIONS(2399), - [anon_sym_i16] = ACTIONS(2399), - [anon_sym_u32] = ACTIONS(2399), - [anon_sym_i32] = ACTIONS(2399), - [anon_sym_u64] = ACTIONS(2399), - [anon_sym_i64] = ACTIONS(2399), - [anon_sym_u128] = ACTIONS(2399), - [anon_sym_i128] = ACTIONS(2399), - [anon_sym_isize] = ACTIONS(2399), - [anon_sym_usize] = ACTIONS(2399), - [anon_sym_f32] = ACTIONS(2399), - [anon_sym_f64] = ACTIONS(2399), - [anon_sym_bool] = ACTIONS(2399), - [anon_sym_str] = ACTIONS(2399), - [anon_sym_char] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2397), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_POUND] = ACTIONS(2397), - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_PIPE] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_async] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_const] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_default] = ACTIONS(2399), - [anon_sym_enum] = ACTIONS(2399), - [anon_sym_fn] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_impl] = ACTIONS(2399), - [anon_sym_let] = ACTIONS(2399), - [anon_sym_loop] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_mod] = ACTIONS(2399), - [anon_sym_pub] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_static] = ACTIONS(2399), - [anon_sym_struct] = ACTIONS(2399), - [anon_sym_trait] = ACTIONS(2399), - [anon_sym_type] = ACTIONS(2399), - [anon_sym_union] = ACTIONS(2399), - [anon_sym_unsafe] = ACTIONS(2399), - [anon_sym_use] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_extern] = ACTIONS(2399), - [anon_sym_DOT_DOT] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(2399), - [anon_sym_move] = ACTIONS(2399), - [anon_sym_try] = ACTIONS(2399), - [sym_integer_literal] = ACTIONS(2397), - [aux_sym_string_literal_token1] = ACTIONS(2397), - [sym_char_literal] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2399), - [anon_sym_false] = ACTIONS(2399), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2399), - [sym_super] = ACTIONS(2399), - [sym_crate] = ACTIONS(2399), - [sym_metavariable] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2397), - [sym_float_literal] = ACTIONS(2397), - [sym_block_comment] = ACTIONS(3), - }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(2401), - [sym_identifier] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_macro_rules_BANG] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2401), - [anon_sym_u8] = ACTIONS(2403), - [anon_sym_i8] = ACTIONS(2403), - [anon_sym_u16] = ACTIONS(2403), - [anon_sym_i16] = ACTIONS(2403), - [anon_sym_u32] = ACTIONS(2403), - [anon_sym_i32] = ACTIONS(2403), - [anon_sym_u64] = ACTIONS(2403), - [anon_sym_i64] = ACTIONS(2403), - [anon_sym_u128] = ACTIONS(2403), - [anon_sym_i128] = ACTIONS(2403), - [anon_sym_isize] = ACTIONS(2403), - [anon_sym_usize] = ACTIONS(2403), - [anon_sym_f32] = ACTIONS(2403), - [anon_sym_f64] = ACTIONS(2403), - [anon_sym_bool] = ACTIONS(2403), - [anon_sym_str] = ACTIONS(2403), - [anon_sym_char] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_PIPE] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_default] = ACTIONS(2403), - [anon_sym_enum] = ACTIONS(2403), - [anon_sym_fn] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_impl] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_mod] = ACTIONS(2403), - [anon_sym_pub] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(2403), - [anon_sym_trait] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_union] = ACTIONS(2403), - [anon_sym_unsafe] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_DOT_DOT] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(2403), - [anon_sym_move] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2403), - [sym_integer_literal] = ACTIONS(2401), - [aux_sym_string_literal_token1] = ACTIONS(2401), - [sym_char_literal] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_metavariable] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2401), - [sym_float_literal] = ACTIONS(2401), - [sym_block_comment] = ACTIONS(3), - }, - [639] = { - [ts_builtin_sym_end] = ACTIONS(2405), - [sym_identifier] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_macro_rules_BANG] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_PIPE] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_DOT_DOT] = ACTIONS(2405), - [anon_sym_yield] = ACTIONS(2407), - [anon_sym_move] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2405), - [aux_sym_string_literal_token1] = ACTIONS(2405), - [sym_char_literal] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_metavariable] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), - [sym_block_comment] = ACTIONS(3), - }, - [640] = { - [ts_builtin_sym_end] = ACTIONS(2409), - [sym_identifier] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym_macro_rules_BANG] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u128] = ACTIONS(2411), - [anon_sym_i128] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_str] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_fn] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_impl] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_mod] = ACTIONS(2411), - [anon_sym_pub] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_trait] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_unsafe] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_DOT_DOT] = ACTIONS(2409), - [anon_sym_yield] = ACTIONS(2411), - [anon_sym_move] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), - [sym_block_comment] = ACTIONS(3), - }, - [641] = { - [ts_builtin_sym_end] = ACTIONS(2413), - [sym_identifier] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_macro_rules_BANG] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2413), - [anon_sym_u8] = ACTIONS(2415), - [anon_sym_i8] = ACTIONS(2415), - [anon_sym_u16] = ACTIONS(2415), - [anon_sym_i16] = ACTIONS(2415), - [anon_sym_u32] = ACTIONS(2415), - [anon_sym_i32] = ACTIONS(2415), - [anon_sym_u64] = ACTIONS(2415), - [anon_sym_i64] = ACTIONS(2415), - [anon_sym_u128] = ACTIONS(2415), - [anon_sym_i128] = ACTIONS(2415), - [anon_sym_isize] = ACTIONS(2415), - [anon_sym_usize] = ACTIONS(2415), - [anon_sym_f32] = ACTIONS(2415), - [anon_sym_f64] = ACTIONS(2415), - [anon_sym_bool] = ACTIONS(2415), - [anon_sym_str] = ACTIONS(2415), - [anon_sym_char] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_PIPE] = ACTIONS(2413), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), - [anon_sym_fn] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_impl] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_loop] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_mod] = ACTIONS(2415), - [anon_sym_pub] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(2415), - [anon_sym_trait] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2415), - [anon_sym_union] = ACTIONS(2415), - [anon_sym_unsafe] = ACTIONS(2415), - [anon_sym_use] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_extern] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2413), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_move] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2415), - [anon_sym_false] = ACTIONS(2415), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_crate] = ACTIONS(2415), - [sym_metavariable] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), - [sym_block_comment] = ACTIONS(3), - }, - [642] = { - [ts_builtin_sym_end] = ACTIONS(2417), - [sym_identifier] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2417), - [anon_sym_macro_rules_BANG] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_u8] = ACTIONS(2419), - [anon_sym_i8] = ACTIONS(2419), - [anon_sym_u16] = ACTIONS(2419), - [anon_sym_i16] = ACTIONS(2419), - [anon_sym_u32] = ACTIONS(2419), - [anon_sym_i32] = ACTIONS(2419), - [anon_sym_u64] = ACTIONS(2419), - [anon_sym_i64] = ACTIONS(2419), - [anon_sym_u128] = ACTIONS(2419), - [anon_sym_i128] = ACTIONS(2419), - [anon_sym_isize] = ACTIONS(2419), - [anon_sym_usize] = ACTIONS(2419), - [anon_sym_f32] = ACTIONS(2419), - [anon_sym_f64] = ACTIONS(2419), - [anon_sym_bool] = ACTIONS(2419), - [anon_sym_str] = ACTIONS(2419), - [anon_sym_char] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2417), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_default] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_impl] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_mod] = ACTIONS(2419), - [anon_sym_pub] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_trait] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_extern] = ACTIONS(2419), - [anon_sym_DOT_DOT] = ACTIONS(2417), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_move] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2417), - [aux_sym_string_literal_token1] = ACTIONS(2417), - [sym_char_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2417), - [sym_float_literal] = ACTIONS(2417), - [sym_block_comment] = ACTIONS(3), - }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2421), - [anon_sym_macro_rules_BANG] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_u8] = ACTIONS(2423), - [anon_sym_i8] = ACTIONS(2423), - [anon_sym_u16] = ACTIONS(2423), - [anon_sym_i16] = ACTIONS(2423), - [anon_sym_u32] = ACTIONS(2423), - [anon_sym_i32] = ACTIONS(2423), - [anon_sym_u64] = ACTIONS(2423), - [anon_sym_i64] = ACTIONS(2423), - [anon_sym_u128] = ACTIONS(2423), - [anon_sym_i128] = ACTIONS(2423), - [anon_sym_isize] = ACTIONS(2423), - [anon_sym_usize] = ACTIONS(2423), - [anon_sym_f32] = ACTIONS(2423), - [anon_sym_f64] = ACTIONS(2423), - [anon_sym_bool] = ACTIONS(2423), - [anon_sym_str] = ACTIONS(2423), - [anon_sym_char] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2421), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_default] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_impl] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_loop] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_mod] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_trait] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_use] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(2423), - [anon_sym_DOT_DOT] = ACTIONS(2421), - [anon_sym_yield] = ACTIONS(2423), - [anon_sym_move] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2423), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2423), - [anon_sym_false] = ACTIONS(2423), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2423), - [sym_super] = ACTIONS(2423), - [sym_crate] = ACTIONS(2423), - [sym_metavariable] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), - [sym_block_comment] = ACTIONS(3), - }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(2425), - [sym_identifier] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2425), - [anon_sym_macro_rules_BANG] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2425), - [anon_sym_u8] = ACTIONS(2427), - [anon_sym_i8] = ACTIONS(2427), - [anon_sym_u16] = ACTIONS(2427), - [anon_sym_i16] = ACTIONS(2427), - [anon_sym_u32] = ACTIONS(2427), - [anon_sym_i32] = ACTIONS(2427), - [anon_sym_u64] = ACTIONS(2427), - [anon_sym_i64] = ACTIONS(2427), - [anon_sym_u128] = ACTIONS(2427), - [anon_sym_i128] = ACTIONS(2427), - [anon_sym_isize] = ACTIONS(2427), - [anon_sym_usize] = ACTIONS(2427), - [anon_sym_f32] = ACTIONS(2427), - [anon_sym_f64] = ACTIONS(2427), - [anon_sym_bool] = ACTIONS(2427), - [anon_sym_str] = ACTIONS(2427), - [anon_sym_char] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2425), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_default] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_impl] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_mod] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_trait] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_extern] = ACTIONS(2427), - [anon_sym_DOT_DOT] = ACTIONS(2425), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_move] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [sym_integer_literal] = ACTIONS(2425), - [aux_sym_string_literal_token1] = ACTIONS(2425), - [sym_char_literal] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2427), - [sym_super] = ACTIONS(2427), - [sym_crate] = ACTIONS(2427), - [sym_metavariable] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2425), - [sym_float_literal] = ACTIONS(2425), - [sym_block_comment] = ACTIONS(3), - }, - [645] = { - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_identifier] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2429), - [anon_sym_macro_rules_BANG] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_u8] = ACTIONS(2431), - [anon_sym_i8] = ACTIONS(2431), - [anon_sym_u16] = ACTIONS(2431), - [anon_sym_i16] = ACTIONS(2431), - [anon_sym_u32] = ACTIONS(2431), - [anon_sym_i32] = ACTIONS(2431), - [anon_sym_u64] = ACTIONS(2431), - [anon_sym_i64] = ACTIONS(2431), - [anon_sym_u128] = ACTIONS(2431), - [anon_sym_i128] = ACTIONS(2431), - [anon_sym_isize] = ACTIONS(2431), - [anon_sym_usize] = ACTIONS(2431), - [anon_sym_f32] = ACTIONS(2431), - [anon_sym_f64] = ACTIONS(2431), - [anon_sym_bool] = ACTIONS(2431), - [anon_sym_str] = ACTIONS(2431), - [anon_sym_char] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_PIPE] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_impl] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_mod] = ACTIONS(2431), - [anon_sym_pub] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_trait] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_extern] = ACTIONS(2431), - [anon_sym_DOT_DOT] = ACTIONS(2429), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_move] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2429), - [aux_sym_string_literal_token1] = ACTIONS(2429), - [sym_char_literal] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_metavariable] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2429), - [sym_float_literal] = ACTIONS(2429), - [sym_block_comment] = ACTIONS(3), - }, - [646] = { - [ts_builtin_sym_end] = ACTIONS(2433), - [sym_identifier] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_macro_rules_BANG] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_u8] = ACTIONS(2435), - [anon_sym_i8] = ACTIONS(2435), - [anon_sym_u16] = ACTIONS(2435), - [anon_sym_i16] = ACTIONS(2435), - [anon_sym_u32] = ACTIONS(2435), - [anon_sym_i32] = ACTIONS(2435), - [anon_sym_u64] = ACTIONS(2435), - [anon_sym_i64] = ACTIONS(2435), - [anon_sym_u128] = ACTIONS(2435), - [anon_sym_i128] = ACTIONS(2435), - [anon_sym_isize] = ACTIONS(2435), - [anon_sym_usize] = ACTIONS(2435), - [anon_sym_f32] = ACTIONS(2435), - [anon_sym_f64] = ACTIONS(2435), - [anon_sym_bool] = ACTIONS(2435), - [anon_sym_str] = ACTIONS(2435), - [anon_sym_char] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_async] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_default] = ACTIONS(2435), - [anon_sym_enum] = ACTIONS(2435), - [anon_sym_fn] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_impl] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_mod] = ACTIONS(2435), - [anon_sym_pub] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_struct] = ACTIONS(2435), - [anon_sym_trait] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2435), - [anon_sym_union] = ACTIONS(2435), - [anon_sym_unsafe] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [anon_sym_yield] = ACTIONS(2435), - [anon_sym_move] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2435), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2435), - [anon_sym_false] = ACTIONS(2435), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2435), - [sym_super] = ACTIONS(2435), - [sym_crate] = ACTIONS(2435), - [sym_metavariable] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_block_comment] = ACTIONS(3), - }, - [647] = { - [ts_builtin_sym_end] = ACTIONS(2437), - [sym_identifier] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_macro_rules_BANG] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(2439), - [anon_sym_i8] = ACTIONS(2439), - [anon_sym_u16] = ACTIONS(2439), - [anon_sym_i16] = ACTIONS(2439), - [anon_sym_u32] = ACTIONS(2439), - [anon_sym_i32] = ACTIONS(2439), - [anon_sym_u64] = ACTIONS(2439), - [anon_sym_i64] = ACTIONS(2439), - [anon_sym_u128] = ACTIONS(2439), - [anon_sym_i128] = ACTIONS(2439), - [anon_sym_isize] = ACTIONS(2439), - [anon_sym_usize] = ACTIONS(2439), - [anon_sym_f32] = ACTIONS(2439), - [anon_sym_f64] = ACTIONS(2439), - [anon_sym_bool] = ACTIONS(2439), - [anon_sym_str] = ACTIONS(2439), - [anon_sym_char] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_async] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_default] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_loop] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_mod] = ACTIONS(2439), - [anon_sym_pub] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_static] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_trait] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_union] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(2439), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_move] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2439), - [sym_integer_literal] = ACTIONS(2437), - [aux_sym_string_literal_token1] = ACTIONS(2437), - [sym_char_literal] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2439), - [anon_sym_false] = ACTIONS(2439), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2439), - [sym_super] = ACTIONS(2439), - [sym_crate] = ACTIONS(2439), - [sym_metavariable] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), - [sym_block_comment] = ACTIONS(3), - }, - [648] = { - [ts_builtin_sym_end] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2441), - [anon_sym_macro_rules_BANG] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_u8] = ACTIONS(2443), - [anon_sym_i8] = ACTIONS(2443), - [anon_sym_u16] = ACTIONS(2443), - [anon_sym_i16] = ACTIONS(2443), - [anon_sym_u32] = ACTIONS(2443), - [anon_sym_i32] = ACTIONS(2443), - [anon_sym_u64] = ACTIONS(2443), - [anon_sym_i64] = ACTIONS(2443), - [anon_sym_u128] = ACTIONS(2443), - [anon_sym_i128] = ACTIONS(2443), - [anon_sym_isize] = ACTIONS(2443), - [anon_sym_usize] = ACTIONS(2443), - [anon_sym_f32] = ACTIONS(2443), - [anon_sym_f64] = ACTIONS(2443), - [anon_sym_bool] = ACTIONS(2443), - [anon_sym_str] = ACTIONS(2443), - [anon_sym_char] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_AMP] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_PIPE] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_fn] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_impl] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_mod] = ACTIONS(2443), - [anon_sym_pub] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_trait] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_unsafe] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_DOT_DOT] = ACTIONS(2441), - [anon_sym_yield] = ACTIONS(2443), - [anon_sym_move] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [sym_integer_literal] = ACTIONS(2441), - [aux_sym_string_literal_token1] = ACTIONS(2441), - [sym_char_literal] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2443), - [anon_sym_false] = ACTIONS(2443), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2443), - [sym_super] = ACTIONS(2443), - [sym_crate] = ACTIONS(2443), - [sym_metavariable] = ACTIONS(2441), - [sym_raw_string_literal] = ACTIONS(2441), - [sym_float_literal] = ACTIONS(2441), - [sym_block_comment] = ACTIONS(3), - }, - [649] = { - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_macro_rules_BANG] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(2447), - [anon_sym_i8] = ACTIONS(2447), - [anon_sym_u16] = ACTIONS(2447), - [anon_sym_i16] = ACTIONS(2447), - [anon_sym_u32] = ACTIONS(2447), - [anon_sym_i32] = ACTIONS(2447), - [anon_sym_u64] = ACTIONS(2447), - [anon_sym_i64] = ACTIONS(2447), - [anon_sym_u128] = ACTIONS(2447), - [anon_sym_i128] = ACTIONS(2447), - [anon_sym_isize] = ACTIONS(2447), - [anon_sym_usize] = ACTIONS(2447), - [anon_sym_f32] = ACTIONS(2447), - [anon_sym_f64] = ACTIONS(2447), - [anon_sym_bool] = ACTIONS(2447), - [anon_sym_str] = ACTIONS(2447), - [anon_sym_char] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_impl] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_loop] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_mod] = ACTIONS(2447), - [anon_sym_pub] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_trait] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_use] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym_DOT_DOT] = ACTIONS(2445), - [anon_sym_yield] = ACTIONS(2447), - [anon_sym_move] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [sym_integer_literal] = ACTIONS(2445), - [aux_sym_string_literal_token1] = ACTIONS(2445), - [sym_char_literal] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2447), - [anon_sym_false] = ACTIONS(2447), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2447), - [sym_super] = ACTIONS(2447), - [sym_crate] = ACTIONS(2447), - [sym_metavariable] = ACTIONS(2445), - [sym_raw_string_literal] = ACTIONS(2445), - [sym_float_literal] = ACTIONS(2445), - [sym_block_comment] = ACTIONS(3), - }, - [650] = { - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_macro_rules_BANG] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_u8] = ACTIONS(2451), - [anon_sym_i8] = ACTIONS(2451), - [anon_sym_u16] = ACTIONS(2451), - [anon_sym_i16] = ACTIONS(2451), - [anon_sym_u32] = ACTIONS(2451), - [anon_sym_i32] = ACTIONS(2451), - [anon_sym_u64] = ACTIONS(2451), - [anon_sym_i64] = ACTIONS(2451), - [anon_sym_u128] = ACTIONS(2451), - [anon_sym_i128] = ACTIONS(2451), - [anon_sym_isize] = ACTIONS(2451), - [anon_sym_usize] = ACTIONS(2451), - [anon_sym_f32] = ACTIONS(2451), - [anon_sym_f64] = ACTIONS(2451), - [anon_sym_bool] = ACTIONS(2451), - [anon_sym_str] = ACTIONS(2451), - [anon_sym_char] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_async] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_impl] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_loop] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_mod] = ACTIONS(2451), - [anon_sym_pub] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_trait] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_use] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_yield] = ACTIONS(2451), - [anon_sym_move] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [sym_integer_literal] = ACTIONS(2449), - [aux_sym_string_literal_token1] = ACTIONS(2449), - [sym_char_literal] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2451), - [anon_sym_false] = ACTIONS(2451), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2451), - [sym_super] = ACTIONS(2451), - [sym_crate] = ACTIONS(2451), - [sym_metavariable] = ACTIONS(2449), - [sym_raw_string_literal] = ACTIONS(2449), - [sym_float_literal] = ACTIONS(2449), - [sym_block_comment] = ACTIONS(3), - }, - [651] = { - [ts_builtin_sym_end] = ACTIONS(2453), - [sym_identifier] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_macro_rules_BANG] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(2455), - [anon_sym_i8] = ACTIONS(2455), - [anon_sym_u16] = ACTIONS(2455), - [anon_sym_i16] = ACTIONS(2455), - [anon_sym_u32] = ACTIONS(2455), - [anon_sym_i32] = ACTIONS(2455), - [anon_sym_u64] = ACTIONS(2455), - [anon_sym_i64] = ACTIONS(2455), - [anon_sym_u128] = ACTIONS(2455), - [anon_sym_i128] = ACTIONS(2455), - [anon_sym_isize] = ACTIONS(2455), - [anon_sym_usize] = ACTIONS(2455), - [anon_sym_f32] = ACTIONS(2455), - [anon_sym_f64] = ACTIONS(2455), - [anon_sym_bool] = ACTIONS(2455), - [anon_sym_str] = ACTIONS(2455), - [anon_sym_char] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_mod] = ACTIONS(2455), - [anon_sym_pub] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_trait] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_use] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym_DOT_DOT] = ACTIONS(2453), - [anon_sym_yield] = ACTIONS(2455), - [anon_sym_move] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [sym_integer_literal] = ACTIONS(2453), - [aux_sym_string_literal_token1] = ACTIONS(2453), - [sym_char_literal] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2455), - [sym_super] = ACTIONS(2455), - [sym_crate] = ACTIONS(2455), - [sym_metavariable] = ACTIONS(2453), - [sym_raw_string_literal] = ACTIONS(2453), - [sym_float_literal] = ACTIONS(2453), - [sym_block_comment] = ACTIONS(3), - }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(2457), - [sym_identifier] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_macro_rules_BANG] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_u8] = ACTIONS(2459), - [anon_sym_i8] = ACTIONS(2459), - [anon_sym_u16] = ACTIONS(2459), - [anon_sym_i16] = ACTIONS(2459), - [anon_sym_u32] = ACTIONS(2459), - [anon_sym_i32] = ACTIONS(2459), - [anon_sym_u64] = ACTIONS(2459), - [anon_sym_i64] = ACTIONS(2459), - [anon_sym_u128] = ACTIONS(2459), - [anon_sym_i128] = ACTIONS(2459), - [anon_sym_isize] = ACTIONS(2459), - [anon_sym_usize] = ACTIONS(2459), - [anon_sym_f32] = ACTIONS(2459), - [anon_sym_f64] = ACTIONS(2459), - [anon_sym_bool] = ACTIONS(2459), - [anon_sym_str] = ACTIONS(2459), - [anon_sym_char] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_async] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_impl] = ACTIONS(2459), - [anon_sym_let] = ACTIONS(2459), - [anon_sym_loop] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_mod] = ACTIONS(2459), - [anon_sym_pub] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_trait] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_use] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym_DOT_DOT] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2459), - [anon_sym_move] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [sym_integer_literal] = ACTIONS(2457), - [aux_sym_string_literal_token1] = ACTIONS(2457), - [sym_char_literal] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2459), - [anon_sym_false] = ACTIONS(2459), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2459), - [sym_super] = ACTIONS(2459), - [sym_crate] = ACTIONS(2459), - [sym_metavariable] = ACTIONS(2457), - [sym_raw_string_literal] = ACTIONS(2457), - [sym_float_literal] = ACTIONS(2457), - [sym_block_comment] = ACTIONS(3), - }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_macro_rules_BANG] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_u8] = ACTIONS(2463), - [anon_sym_i8] = ACTIONS(2463), - [anon_sym_u16] = ACTIONS(2463), - [anon_sym_i16] = ACTIONS(2463), - [anon_sym_u32] = ACTIONS(2463), - [anon_sym_i32] = ACTIONS(2463), - [anon_sym_u64] = ACTIONS(2463), - [anon_sym_i64] = ACTIONS(2463), - [anon_sym_u128] = ACTIONS(2463), - [anon_sym_i128] = ACTIONS(2463), - [anon_sym_isize] = ACTIONS(2463), - [anon_sym_usize] = ACTIONS(2463), - [anon_sym_f32] = ACTIONS(2463), - [anon_sym_f64] = ACTIONS(2463), - [anon_sym_bool] = ACTIONS(2463), - [anon_sym_str] = ACTIONS(2463), - [anon_sym_char] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_PIPE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_async] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_impl] = ACTIONS(2463), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_loop] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_mod] = ACTIONS(2463), - [anon_sym_pub] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_trait] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_use] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym_DOT_DOT] = ACTIONS(2461), - [anon_sym_yield] = ACTIONS(2463), - [anon_sym_move] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [sym_integer_literal] = ACTIONS(2461), - [aux_sym_string_literal_token1] = ACTIONS(2461), - [sym_char_literal] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2463), - [anon_sym_false] = ACTIONS(2463), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2463), - [sym_super] = ACTIONS(2463), - [sym_crate] = ACTIONS(2463), - [sym_metavariable] = ACTIONS(2461), - [sym_raw_string_literal] = ACTIONS(2461), - [sym_float_literal] = ACTIONS(2461), - [sym_block_comment] = ACTIONS(3), - }, - [654] = { - [ts_builtin_sym_end] = ACTIONS(2465), - [sym_identifier] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_u8] = ACTIONS(2467), - [anon_sym_i8] = ACTIONS(2467), - [anon_sym_u16] = ACTIONS(2467), - [anon_sym_i16] = ACTIONS(2467), - [anon_sym_u32] = ACTIONS(2467), - [anon_sym_i32] = ACTIONS(2467), - [anon_sym_u64] = ACTIONS(2467), - [anon_sym_i64] = ACTIONS(2467), - [anon_sym_u128] = ACTIONS(2467), - [anon_sym_i128] = ACTIONS(2467), - [anon_sym_isize] = ACTIONS(2467), - [anon_sym_usize] = ACTIONS(2467), - [anon_sym_f32] = ACTIONS(2467), - [anon_sym_f64] = ACTIONS(2467), - [anon_sym_bool] = ACTIONS(2467), - [anon_sym_str] = ACTIONS(2467), - [anon_sym_char] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_async] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_impl] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2467), - [anon_sym_loop] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_mod] = ACTIONS(2467), - [anon_sym_pub] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_trait] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_use] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym_DOT_DOT] = ACTIONS(2465), - [anon_sym_yield] = ACTIONS(2467), - [anon_sym_move] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [sym_integer_literal] = ACTIONS(2465), - [aux_sym_string_literal_token1] = ACTIONS(2465), - [sym_char_literal] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2467), - [anon_sym_false] = ACTIONS(2467), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2467), - [sym_super] = ACTIONS(2467), - [sym_crate] = ACTIONS(2467), - [sym_metavariable] = ACTIONS(2465), - [sym_raw_string_literal] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), - [sym_block_comment] = ACTIONS(3), - }, - [655] = { - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_macro_rules_BANG] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_u8] = ACTIONS(2471), - [anon_sym_i8] = ACTIONS(2471), - [anon_sym_u16] = ACTIONS(2471), - [anon_sym_i16] = ACTIONS(2471), - [anon_sym_u32] = ACTIONS(2471), - [anon_sym_i32] = ACTIONS(2471), - [anon_sym_u64] = ACTIONS(2471), - [anon_sym_i64] = ACTIONS(2471), - [anon_sym_u128] = ACTIONS(2471), - [anon_sym_i128] = ACTIONS(2471), - [anon_sym_isize] = ACTIONS(2471), - [anon_sym_usize] = ACTIONS(2471), - [anon_sym_f32] = ACTIONS(2471), - [anon_sym_f64] = ACTIONS(2471), - [anon_sym_bool] = ACTIONS(2471), - [anon_sym_str] = ACTIONS(2471), - [anon_sym_char] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_async] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_impl] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_loop] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_mod] = ACTIONS(2471), - [anon_sym_pub] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_trait] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_use] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym_DOT_DOT] = ACTIONS(2469), - [anon_sym_yield] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [sym_integer_literal] = ACTIONS(2469), - [aux_sym_string_literal_token1] = ACTIONS(2469), - [sym_char_literal] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2471), - [anon_sym_false] = ACTIONS(2471), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2471), - [sym_super] = ACTIONS(2471), - [sym_crate] = ACTIONS(2471), - [sym_metavariable] = ACTIONS(2469), - [sym_raw_string_literal] = ACTIONS(2469), - [sym_float_literal] = ACTIONS(2469), - [sym_block_comment] = ACTIONS(3), - }, - [656] = { - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_macro_rules_BANG] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_u8] = ACTIONS(2475), - [anon_sym_i8] = ACTIONS(2475), - [anon_sym_u16] = ACTIONS(2475), - [anon_sym_i16] = ACTIONS(2475), - [anon_sym_u32] = ACTIONS(2475), - [anon_sym_i32] = ACTIONS(2475), - [anon_sym_u64] = ACTIONS(2475), - [anon_sym_i64] = ACTIONS(2475), - [anon_sym_u128] = ACTIONS(2475), - [anon_sym_i128] = ACTIONS(2475), - [anon_sym_isize] = ACTIONS(2475), - [anon_sym_usize] = ACTIONS(2475), - [anon_sym_f32] = ACTIONS(2475), - [anon_sym_f64] = ACTIONS(2475), - [anon_sym_bool] = ACTIONS(2475), - [anon_sym_str] = ACTIONS(2475), - [anon_sym_char] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_impl] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_loop] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_mod] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_trait] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_move] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [sym_integer_literal] = ACTIONS(2473), - [aux_sym_string_literal_token1] = ACTIONS(2473), - [sym_char_literal] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2475), - [anon_sym_false] = ACTIONS(2475), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2475), - [sym_super] = ACTIONS(2475), - [sym_crate] = ACTIONS(2475), - [sym_metavariable] = ACTIONS(2473), - [sym_raw_string_literal] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2473), - [sym_block_comment] = ACTIONS(3), - }, - [657] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_macro_rules_BANG] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_u8] = ACTIONS(2479), - [anon_sym_i8] = ACTIONS(2479), - [anon_sym_u16] = ACTIONS(2479), - [anon_sym_i16] = ACTIONS(2479), - [anon_sym_u32] = ACTIONS(2479), - [anon_sym_i32] = ACTIONS(2479), - [anon_sym_u64] = ACTIONS(2479), - [anon_sym_i64] = ACTIONS(2479), - [anon_sym_u128] = ACTIONS(2479), - [anon_sym_i128] = ACTIONS(2479), - [anon_sym_isize] = ACTIONS(2479), - [anon_sym_usize] = ACTIONS(2479), - [anon_sym_f32] = ACTIONS(2479), - [anon_sym_f64] = ACTIONS(2479), - [anon_sym_bool] = ACTIONS(2479), - [anon_sym_str] = ACTIONS(2479), - [anon_sym_char] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_impl] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_loop] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_mod] = ACTIONS(2479), - [anon_sym_pub] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_trait] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_unsafe] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_move] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [sym_integer_literal] = ACTIONS(2477), - [aux_sym_string_literal_token1] = ACTIONS(2477), - [sym_char_literal] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2479), - [anon_sym_false] = ACTIONS(2479), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_crate] = ACTIONS(2479), - [sym_metavariable] = ACTIONS(2477), - [sym_raw_string_literal] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2477), - [sym_block_comment] = ACTIONS(3), - }, - [658] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_macro_rules_BANG] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_u8] = ACTIONS(2483), - [anon_sym_i8] = ACTIONS(2483), - [anon_sym_u16] = ACTIONS(2483), - [anon_sym_i16] = ACTIONS(2483), - [anon_sym_u32] = ACTIONS(2483), - [anon_sym_i32] = ACTIONS(2483), - [anon_sym_u64] = ACTIONS(2483), - [anon_sym_i64] = ACTIONS(2483), - [anon_sym_u128] = ACTIONS(2483), - [anon_sym_i128] = ACTIONS(2483), - [anon_sym_isize] = ACTIONS(2483), - [anon_sym_usize] = ACTIONS(2483), - [anon_sym_f32] = ACTIONS(2483), - [anon_sym_f64] = ACTIONS(2483), - [anon_sym_bool] = ACTIONS(2483), - [anon_sym_str] = ACTIONS(2483), - [anon_sym_char] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_fn] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_loop] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_mod] = ACTIONS(2483), - [anon_sym_pub] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_trait] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_move] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [sym_integer_literal] = ACTIONS(2481), - [aux_sym_string_literal_token1] = ACTIONS(2481), - [sym_char_literal] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2483), - [sym_super] = ACTIONS(2483), - [sym_crate] = ACTIONS(2483), - [sym_metavariable] = ACTIONS(2481), - [sym_raw_string_literal] = ACTIONS(2481), - [sym_float_literal] = ACTIONS(2481), - [sym_block_comment] = ACTIONS(3), - }, - [659] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_macro_rules_BANG] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_u8] = ACTIONS(2487), - [anon_sym_i8] = ACTIONS(2487), - [anon_sym_u16] = ACTIONS(2487), - [anon_sym_i16] = ACTIONS(2487), - [anon_sym_u32] = ACTIONS(2487), - [anon_sym_i32] = ACTIONS(2487), - [anon_sym_u64] = ACTIONS(2487), - [anon_sym_i64] = ACTIONS(2487), - [anon_sym_u128] = ACTIONS(2487), - [anon_sym_i128] = ACTIONS(2487), - [anon_sym_isize] = ACTIONS(2487), - [anon_sym_usize] = ACTIONS(2487), - [anon_sym_f32] = ACTIONS(2487), - [anon_sym_f64] = ACTIONS(2487), - [anon_sym_bool] = ACTIONS(2487), - [anon_sym_str] = ACTIONS(2487), - [anon_sym_char] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_fn] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_impl] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2487), - [anon_sym_pub] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_trait] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_move] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [sym_integer_literal] = ACTIONS(2485), - [aux_sym_string_literal_token1] = ACTIONS(2485), - [sym_char_literal] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2487), - [sym_super] = ACTIONS(2487), - [sym_crate] = ACTIONS(2487), - [sym_metavariable] = ACTIONS(2485), - [sym_raw_string_literal] = ACTIONS(2485), - [sym_float_literal] = ACTIONS(2485), - [sym_block_comment] = ACTIONS(3), - }, - [660] = { - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_identifier] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_macro_rules_BANG] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_u8] = ACTIONS(2491), - [anon_sym_i8] = ACTIONS(2491), - [anon_sym_u16] = ACTIONS(2491), - [anon_sym_i16] = ACTIONS(2491), - [anon_sym_u32] = ACTIONS(2491), - [anon_sym_i32] = ACTIONS(2491), - [anon_sym_u64] = ACTIONS(2491), - [anon_sym_i64] = ACTIONS(2491), - [anon_sym_u128] = ACTIONS(2491), - [anon_sym_i128] = ACTIONS(2491), - [anon_sym_isize] = ACTIONS(2491), - [anon_sym_usize] = ACTIONS(2491), - [anon_sym_f32] = ACTIONS(2491), - [anon_sym_f64] = ACTIONS(2491), - [anon_sym_bool] = ACTIONS(2491), - [anon_sym_str] = ACTIONS(2491), - [anon_sym_char] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2491), - [anon_sym_async] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_fn] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_impl] = ACTIONS(2491), - [anon_sym_let] = ACTIONS(2491), - [anon_sym_loop] = ACTIONS(2491), - [anon_sym_match] = ACTIONS(2491), - [anon_sym_mod] = ACTIONS(2491), - [anon_sym_pub] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_trait] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_unsafe] = ACTIONS(2491), - [anon_sym_use] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym_DOT_DOT] = ACTIONS(2489), - [anon_sym_yield] = ACTIONS(2491), - [anon_sym_move] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [sym_integer_literal] = ACTIONS(2489), - [aux_sym_string_literal_token1] = ACTIONS(2489), - [sym_char_literal] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2491), - [anon_sym_false] = ACTIONS(2491), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2491), - [sym_super] = ACTIONS(2491), - [sym_crate] = ACTIONS(2491), - [sym_metavariable] = ACTIONS(2489), - [sym_raw_string_literal] = ACTIONS(2489), - [sym_float_literal] = ACTIONS(2489), - [sym_block_comment] = ACTIONS(3), - }, - [661] = { - [ts_builtin_sym_end] = ACTIONS(2493), - [sym_identifier] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_macro_rules_BANG] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_u8] = ACTIONS(2495), - [anon_sym_i8] = ACTIONS(2495), - [anon_sym_u16] = ACTIONS(2495), - [anon_sym_i16] = ACTIONS(2495), - [anon_sym_u32] = ACTIONS(2495), - [anon_sym_i32] = ACTIONS(2495), - [anon_sym_u64] = ACTIONS(2495), - [anon_sym_i64] = ACTIONS(2495), - [anon_sym_u128] = ACTIONS(2495), - [anon_sym_i128] = ACTIONS(2495), - [anon_sym_isize] = ACTIONS(2495), - [anon_sym_usize] = ACTIONS(2495), - [anon_sym_f32] = ACTIONS(2495), - [anon_sym_f64] = ACTIONS(2495), - [anon_sym_bool] = ACTIONS(2495), - [anon_sym_str] = ACTIONS(2495), - [anon_sym_char] = ACTIONS(2495), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_async] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_fn] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_impl] = ACTIONS(2495), - [anon_sym_let] = ACTIONS(2495), - [anon_sym_loop] = ACTIONS(2495), - [anon_sym_match] = ACTIONS(2495), - [anon_sym_mod] = ACTIONS(2495), - [anon_sym_pub] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_unsafe] = ACTIONS(2495), - [anon_sym_use] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym_DOT_DOT] = ACTIONS(2493), - [anon_sym_yield] = ACTIONS(2495), - [anon_sym_move] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [sym_integer_literal] = ACTIONS(2493), - [aux_sym_string_literal_token1] = ACTIONS(2493), - [sym_char_literal] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2495), - [anon_sym_false] = ACTIONS(2495), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2495), - [sym_super] = ACTIONS(2495), - [sym_crate] = ACTIONS(2495), - [sym_metavariable] = ACTIONS(2493), - [sym_raw_string_literal] = ACTIONS(2493), - [sym_float_literal] = ACTIONS(2493), - [sym_block_comment] = ACTIONS(3), - }, - [662] = { - [ts_builtin_sym_end] = ACTIONS(2497), - [sym_identifier] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_macro_rules_BANG] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_u8] = ACTIONS(2499), - [anon_sym_i8] = ACTIONS(2499), - [anon_sym_u16] = ACTIONS(2499), - [anon_sym_i16] = ACTIONS(2499), - [anon_sym_u32] = ACTIONS(2499), - [anon_sym_i32] = ACTIONS(2499), - [anon_sym_u64] = ACTIONS(2499), - [anon_sym_i64] = ACTIONS(2499), - [anon_sym_u128] = ACTIONS(2499), - [anon_sym_i128] = ACTIONS(2499), - [anon_sym_isize] = ACTIONS(2499), - [anon_sym_usize] = ACTIONS(2499), - [anon_sym_f32] = ACTIONS(2499), - [anon_sym_f64] = ACTIONS(2499), - [anon_sym_bool] = ACTIONS(2499), - [anon_sym_str] = ACTIONS(2499), - [anon_sym_char] = ACTIONS(2499), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_async] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_fn] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_impl] = ACTIONS(2499), - [anon_sym_let] = ACTIONS(2499), - [anon_sym_loop] = ACTIONS(2499), - [anon_sym_match] = ACTIONS(2499), - [anon_sym_mod] = ACTIONS(2499), - [anon_sym_pub] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_trait] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2499), - [anon_sym_use] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym_DOT_DOT] = ACTIONS(2497), - [anon_sym_yield] = ACTIONS(2499), - [anon_sym_move] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2497), - [aux_sym_string_literal_token1] = ACTIONS(2497), - [sym_char_literal] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2499), - [sym_super] = ACTIONS(2499), - [sym_crate] = ACTIONS(2499), - [sym_metavariable] = ACTIONS(2497), - [sym_raw_string_literal] = ACTIONS(2497), - [sym_float_literal] = ACTIONS(2497), - [sym_block_comment] = ACTIONS(3), - }, - [663] = { - [ts_builtin_sym_end] = ACTIONS(2501), - [sym_identifier] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_macro_rules_BANG] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_u8] = ACTIONS(2503), - [anon_sym_i8] = ACTIONS(2503), - [anon_sym_u16] = ACTIONS(2503), - [anon_sym_i16] = ACTIONS(2503), - [anon_sym_u32] = ACTIONS(2503), - [anon_sym_i32] = ACTIONS(2503), - [anon_sym_u64] = ACTIONS(2503), - [anon_sym_i64] = ACTIONS(2503), - [anon_sym_u128] = ACTIONS(2503), - [anon_sym_i128] = ACTIONS(2503), - [anon_sym_isize] = ACTIONS(2503), - [anon_sym_usize] = ACTIONS(2503), - [anon_sym_f32] = ACTIONS(2503), - [anon_sym_f64] = ACTIONS(2503), - [anon_sym_bool] = ACTIONS(2503), - [anon_sym_str] = ACTIONS(2503), - [anon_sym_char] = ACTIONS(2503), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2503), - [anon_sym_async] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_fn] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_impl] = ACTIONS(2503), - [anon_sym_let] = ACTIONS(2503), - [anon_sym_loop] = ACTIONS(2503), - [anon_sym_match] = ACTIONS(2503), - [anon_sym_mod] = ACTIONS(2503), - [anon_sym_pub] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_trait] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2503), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym_DOT_DOT] = ACTIONS(2501), - [anon_sym_yield] = ACTIONS(2503), - [anon_sym_move] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [sym_integer_literal] = ACTIONS(2501), - [aux_sym_string_literal_token1] = ACTIONS(2501), - [sym_char_literal] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2503), - [anon_sym_false] = ACTIONS(2503), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2503), - [sym_super] = ACTIONS(2503), - [sym_crate] = ACTIONS(2503), - [sym_metavariable] = ACTIONS(2501), - [sym_raw_string_literal] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), - [sym_block_comment] = ACTIONS(3), - }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_macro_rules_BANG] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_u8] = ACTIONS(2507), - [anon_sym_i8] = ACTIONS(2507), - [anon_sym_u16] = ACTIONS(2507), - [anon_sym_i16] = ACTIONS(2507), - [anon_sym_u32] = ACTIONS(2507), - [anon_sym_i32] = ACTIONS(2507), - [anon_sym_u64] = ACTIONS(2507), - [anon_sym_i64] = ACTIONS(2507), - [anon_sym_u128] = ACTIONS(2507), - [anon_sym_i128] = ACTIONS(2507), - [anon_sym_isize] = ACTIONS(2507), - [anon_sym_usize] = ACTIONS(2507), - [anon_sym_f32] = ACTIONS(2507), - [anon_sym_f64] = ACTIONS(2507), - [anon_sym_bool] = ACTIONS(2507), - [anon_sym_str] = ACTIONS(2507), - [anon_sym_char] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_async] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_impl] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_mod] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_trait] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_DOT_DOT] = ACTIONS(2505), - [anon_sym_yield] = ACTIONS(2507), - [anon_sym_move] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [sym_integer_literal] = ACTIONS(2505), - [aux_sym_string_literal_token1] = ACTIONS(2505), - [sym_char_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2507), - [sym_metavariable] = ACTIONS(2505), - [sym_raw_string_literal] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - [sym_block_comment] = ACTIONS(3), - }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_macro_rules_BANG] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_u8] = ACTIONS(2511), - [anon_sym_i8] = ACTIONS(2511), - [anon_sym_u16] = ACTIONS(2511), - [anon_sym_i16] = ACTIONS(2511), - [anon_sym_u32] = ACTIONS(2511), - [anon_sym_i32] = ACTIONS(2511), - [anon_sym_u64] = ACTIONS(2511), - [anon_sym_i64] = ACTIONS(2511), - [anon_sym_u128] = ACTIONS(2511), - [anon_sym_i128] = ACTIONS(2511), - [anon_sym_isize] = ACTIONS(2511), - [anon_sym_usize] = ACTIONS(2511), - [anon_sym_f32] = ACTIONS(2511), - [anon_sym_f64] = ACTIONS(2511), - [anon_sym_bool] = ACTIONS(2511), - [anon_sym_str] = ACTIONS(2511), - [anon_sym_char] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_async] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_impl] = ACTIONS(2511), - [anon_sym_let] = ACTIONS(2511), - [anon_sym_loop] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_mod] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_trait] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_use] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_DOT_DOT] = ACTIONS(2509), - [anon_sym_yield] = ACTIONS(2511), - [anon_sym_move] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [sym_integer_literal] = ACTIONS(2509), - [aux_sym_string_literal_token1] = ACTIONS(2509), - [sym_char_literal] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2511), - [sym_super] = ACTIONS(2511), - [sym_crate] = ACTIONS(2511), - [sym_metavariable] = ACTIONS(2509), - [sym_raw_string_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_block_comment] = ACTIONS(3), + [542] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_macro_rules_BANG] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_u8] = ACTIONS(1899), + [anon_sym_i8] = ACTIONS(1899), + [anon_sym_u16] = ACTIONS(1899), + [anon_sym_i16] = ACTIONS(1899), + [anon_sym_u32] = ACTIONS(1899), + [anon_sym_i32] = ACTIONS(1899), + [anon_sym_u64] = ACTIONS(1899), + [anon_sym_i64] = ACTIONS(1899), + [anon_sym_u128] = ACTIONS(1899), + [anon_sym_i128] = ACTIONS(1899), + [anon_sym_isize] = ACTIONS(1899), + [anon_sym_usize] = ACTIONS(1899), + [anon_sym_f32] = ACTIONS(1899), + [anon_sym_f64] = ACTIONS(1899), + [anon_sym_bool] = ACTIONS(1899), + [anon_sym_str] = ACTIONS(1899), + [anon_sym_char] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_COLON_COLON] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SQUOTE] = ACTIONS(1899), + [anon_sym_async] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_impl] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_mod] = ACTIONS(1899), + [anon_sym_pub] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1899), + [anon_sym_trait] = ACTIONS(1899), + [anon_sym_type] = ACTIONS(1899), + [anon_sym_union] = ACTIONS(1899), + [anon_sym_unsafe] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_yield] = ACTIONS(1899), + [anon_sym_move] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [sym_integer_literal] = ACTIONS(1897), + [aux_sym_string_literal_token1] = ACTIONS(1897), + [sym_char_literal] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1899), + [sym_super] = ACTIONS(1899), + [sym_crate] = ACTIONS(1899), + [sym_metavariable] = ACTIONS(1897), + [sym_raw_string_literal] = ACTIONS(1897), + [sym_float_literal] = ACTIONS(1897), }, - [666] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_macro_rules_BANG] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_u8] = ACTIONS(2515), - [anon_sym_i8] = ACTIONS(2515), - [anon_sym_u16] = ACTIONS(2515), - [anon_sym_i16] = ACTIONS(2515), - [anon_sym_u32] = ACTIONS(2515), - [anon_sym_i32] = ACTIONS(2515), - [anon_sym_u64] = ACTIONS(2515), - [anon_sym_i64] = ACTIONS(2515), - [anon_sym_u128] = ACTIONS(2515), - [anon_sym_i128] = ACTIONS(2515), - [anon_sym_isize] = ACTIONS(2515), - [anon_sym_usize] = ACTIONS(2515), - [anon_sym_f32] = ACTIONS(2515), - [anon_sym_f64] = ACTIONS(2515), - [anon_sym_bool] = ACTIONS(2515), - [anon_sym_str] = ACTIONS(2515), - [anon_sym_char] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_impl] = ACTIONS(2515), - [anon_sym_let] = ACTIONS(2515), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_mod] = ACTIONS(2515), - [anon_sym_pub] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_trait] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_use] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [anon_sym_yield] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [sym_integer_literal] = ACTIONS(2513), - [aux_sym_string_literal_token1] = ACTIONS(2513), - [sym_char_literal] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2515), - [sym_super] = ACTIONS(2515), - [sym_crate] = ACTIONS(2515), - [sym_metavariable] = ACTIONS(2513), - [sym_raw_string_literal] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - [sym_block_comment] = ACTIONS(3), + [543] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_macro_rules_BANG] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_u8] = ACTIONS(1903), + [anon_sym_i8] = ACTIONS(1903), + [anon_sym_u16] = ACTIONS(1903), + [anon_sym_i16] = ACTIONS(1903), + [anon_sym_u32] = ACTIONS(1903), + [anon_sym_i32] = ACTIONS(1903), + [anon_sym_u64] = ACTIONS(1903), + [anon_sym_i64] = ACTIONS(1903), + [anon_sym_u128] = ACTIONS(1903), + [anon_sym_i128] = ACTIONS(1903), + [anon_sym_isize] = ACTIONS(1903), + [anon_sym_usize] = ACTIONS(1903), + [anon_sym_f32] = ACTIONS(1903), + [anon_sym_f64] = ACTIONS(1903), + [anon_sym_bool] = ACTIONS(1903), + [anon_sym_str] = ACTIONS(1903), + [anon_sym_char] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1901), + [anon_sym_PIPE] = ACTIONS(1901), + [anon_sym_SQUOTE] = ACTIONS(1903), + [anon_sym_async] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_fn] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_impl] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_loop] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_mod] = ACTIONS(1903), + [anon_sym_pub] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_struct] = ACTIONS(1903), + [anon_sym_trait] = ACTIONS(1903), + [anon_sym_type] = ACTIONS(1903), + [anon_sym_union] = ACTIONS(1903), + [anon_sym_unsafe] = ACTIONS(1903), + [anon_sym_use] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_yield] = ACTIONS(1903), + [anon_sym_move] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [sym_integer_literal] = ACTIONS(1901), + [aux_sym_string_literal_token1] = ACTIONS(1901), + [sym_char_literal] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1903), + [sym_super] = ACTIONS(1903), + [sym_crate] = ACTIONS(1903), + [sym_metavariable] = ACTIONS(1901), + [sym_raw_string_literal] = ACTIONS(1901), + [sym_float_literal] = ACTIONS(1901), }, - [667] = { - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_macro_rules_BANG] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_u8] = ACTIONS(2519), - [anon_sym_i8] = ACTIONS(2519), - [anon_sym_u16] = ACTIONS(2519), - [anon_sym_i16] = ACTIONS(2519), - [anon_sym_u32] = ACTIONS(2519), - [anon_sym_i32] = ACTIONS(2519), - [anon_sym_u64] = ACTIONS(2519), - [anon_sym_i64] = ACTIONS(2519), - [anon_sym_u128] = ACTIONS(2519), - [anon_sym_i128] = ACTIONS(2519), - [anon_sym_isize] = ACTIONS(2519), - [anon_sym_usize] = ACTIONS(2519), - [anon_sym_f32] = ACTIONS(2519), - [anon_sym_f64] = ACTIONS(2519), - [anon_sym_bool] = ACTIONS(2519), - [anon_sym_str] = ACTIONS(2519), - [anon_sym_char] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_impl] = ACTIONS(2519), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_mod] = ACTIONS(2519), - [anon_sym_pub] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_trait] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_use] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym_DOT_DOT] = ACTIONS(2517), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_move] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [sym_integer_literal] = ACTIONS(2517), - [aux_sym_string_literal_token1] = ACTIONS(2517), - [sym_char_literal] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2519), - [sym_super] = ACTIONS(2519), - [sym_crate] = ACTIONS(2519), - [sym_metavariable] = ACTIONS(2517), - [sym_raw_string_literal] = ACTIONS(2517), - [sym_float_literal] = ACTIONS(2517), - [sym_block_comment] = ACTIONS(3), + [544] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1905), + [anon_sym_macro_rules_BANG] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_u8] = ACTIONS(1907), + [anon_sym_i8] = ACTIONS(1907), + [anon_sym_u16] = ACTIONS(1907), + [anon_sym_i16] = ACTIONS(1907), + [anon_sym_u32] = ACTIONS(1907), + [anon_sym_i32] = ACTIONS(1907), + [anon_sym_u64] = ACTIONS(1907), + [anon_sym_i64] = ACTIONS(1907), + [anon_sym_u128] = ACTIONS(1907), + [anon_sym_i128] = ACTIONS(1907), + [anon_sym_isize] = ACTIONS(1907), + [anon_sym_usize] = ACTIONS(1907), + [anon_sym_f32] = ACTIONS(1907), + [anon_sym_f64] = ACTIONS(1907), + [anon_sym_bool] = ACTIONS(1907), + [anon_sym_str] = ACTIONS(1907), + [anon_sym_char] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1905), + [anon_sym_COLON_COLON] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym_POUND] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1905), + [anon_sym_PIPE] = ACTIONS(1905), + [anon_sym_SQUOTE] = ACTIONS(1907), + [anon_sym_async] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_fn] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_impl] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_mod] = ACTIONS(1907), + [anon_sym_pub] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_struct] = ACTIONS(1907), + [anon_sym_trait] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_union] = ACTIONS(1907), + [anon_sym_unsafe] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1905), + [anon_sym_yield] = ACTIONS(1907), + [anon_sym_move] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [sym_integer_literal] = ACTIONS(1905), + [aux_sym_string_literal_token1] = ACTIONS(1905), + [sym_char_literal] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1907), + [sym_super] = ACTIONS(1907), + [sym_crate] = ACTIONS(1907), + [sym_metavariable] = ACTIONS(1905), + [sym_raw_string_literal] = ACTIONS(1905), + [sym_float_literal] = ACTIONS(1905), }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_identifier] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_macro_rules_BANG] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_u8] = ACTIONS(2523), - [anon_sym_i8] = ACTIONS(2523), - [anon_sym_u16] = ACTIONS(2523), - [anon_sym_i16] = ACTIONS(2523), - [anon_sym_u32] = ACTIONS(2523), - [anon_sym_i32] = ACTIONS(2523), - [anon_sym_u64] = ACTIONS(2523), - [anon_sym_i64] = ACTIONS(2523), - [anon_sym_u128] = ACTIONS(2523), - [anon_sym_i128] = ACTIONS(2523), - [anon_sym_isize] = ACTIONS(2523), - [anon_sym_usize] = ACTIONS(2523), - [anon_sym_f32] = ACTIONS(2523), - [anon_sym_f64] = ACTIONS(2523), - [anon_sym_bool] = ACTIONS(2523), - [anon_sym_str] = ACTIONS(2523), - [anon_sym_char] = ACTIONS(2523), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_async] = ACTIONS(2523), - [anon_sym_break] = ACTIONS(2523), - [anon_sym_const] = ACTIONS(2523), - [anon_sym_continue] = ACTIONS(2523), - [anon_sym_default] = ACTIONS(2523), - [anon_sym_enum] = ACTIONS(2523), - [anon_sym_fn] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(2523), - [anon_sym_impl] = ACTIONS(2523), - [anon_sym_let] = ACTIONS(2523), - [anon_sym_loop] = ACTIONS(2523), - [anon_sym_match] = ACTIONS(2523), - [anon_sym_mod] = ACTIONS(2523), - [anon_sym_pub] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2523), - [anon_sym_trait] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2523), - [anon_sym_union] = ACTIONS(2523), - [anon_sym_unsafe] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2523), - [anon_sym_extern] = ACTIONS(2523), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_yield] = ACTIONS(2523), - [anon_sym_move] = ACTIONS(2523), - [anon_sym_try] = ACTIONS(2523), - [sym_integer_literal] = ACTIONS(2521), - [aux_sym_string_literal_token1] = ACTIONS(2521), - [sym_char_literal] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2523), - [sym_super] = ACTIONS(2523), - [sym_crate] = ACTIONS(2523), - [sym_metavariable] = ACTIONS(2521), - [sym_raw_string_literal] = ACTIONS(2521), - [sym_float_literal] = ACTIONS(2521), - [sym_block_comment] = ACTIONS(3), + [545] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1909), + [anon_sym_macro_rules_BANG] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_u8] = ACTIONS(1911), + [anon_sym_i8] = ACTIONS(1911), + [anon_sym_u16] = ACTIONS(1911), + [anon_sym_i16] = ACTIONS(1911), + [anon_sym_u32] = ACTIONS(1911), + [anon_sym_i32] = ACTIONS(1911), + [anon_sym_u64] = ACTIONS(1911), + [anon_sym_i64] = ACTIONS(1911), + [anon_sym_u128] = ACTIONS(1911), + [anon_sym_i128] = ACTIONS(1911), + [anon_sym_isize] = ACTIONS(1911), + [anon_sym_usize] = ACTIONS(1911), + [anon_sym_f32] = ACTIONS(1911), + [anon_sym_f64] = ACTIONS(1911), + [anon_sym_bool] = ACTIONS(1911), + [anon_sym_str] = ACTIONS(1911), + [anon_sym_char] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1909), + [anon_sym_PIPE] = ACTIONS(1909), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_async] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_fn] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_impl] = ACTIONS(1911), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_loop] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_mod] = ACTIONS(1911), + [anon_sym_pub] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_trait] = ACTIONS(1911), + [anon_sym_type] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_unsafe] = ACTIONS(1911), + [anon_sym_use] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1909), + [anon_sym_yield] = ACTIONS(1911), + [anon_sym_move] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1911), + [sym_integer_literal] = ACTIONS(1909), + [aux_sym_string_literal_token1] = ACTIONS(1909), + [sym_char_literal] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1911), + [sym_super] = ACTIONS(1911), + [sym_crate] = ACTIONS(1911), + [sym_metavariable] = ACTIONS(1909), + [sym_raw_string_literal] = ACTIONS(1909), + [sym_float_literal] = ACTIONS(1909), }, - [669] = { - [ts_builtin_sym_end] = ACTIONS(2525), - [sym_identifier] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_macro_rules_BANG] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_u8] = ACTIONS(2527), - [anon_sym_i8] = ACTIONS(2527), - [anon_sym_u16] = ACTIONS(2527), - [anon_sym_i16] = ACTIONS(2527), - [anon_sym_u32] = ACTIONS(2527), - [anon_sym_i32] = ACTIONS(2527), - [anon_sym_u64] = ACTIONS(2527), - [anon_sym_i64] = ACTIONS(2527), - [anon_sym_u128] = ACTIONS(2527), - [anon_sym_i128] = ACTIONS(2527), - [anon_sym_isize] = ACTIONS(2527), - [anon_sym_usize] = ACTIONS(2527), - [anon_sym_f32] = ACTIONS(2527), - [anon_sym_f64] = ACTIONS(2527), - [anon_sym_bool] = ACTIONS(2527), - [anon_sym_str] = ACTIONS(2527), - [anon_sym_char] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_break] = ACTIONS(2527), - [anon_sym_const] = ACTIONS(2527), - [anon_sym_continue] = ACTIONS(2527), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_enum] = ACTIONS(2527), - [anon_sym_fn] = ACTIONS(2527), - [anon_sym_for] = ACTIONS(2527), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_impl] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2527), - [anon_sym_loop] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_mod] = ACTIONS(2527), - [anon_sym_pub] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_static] = ACTIONS(2527), - [anon_sym_struct] = ACTIONS(2527), - [anon_sym_trait] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2527), - [anon_sym_union] = ACTIONS(2527), - [anon_sym_unsafe] = ACTIONS(2527), - [anon_sym_use] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2527), - [anon_sym_extern] = ACTIONS(2527), - [anon_sym_DOT_DOT] = ACTIONS(2525), - [anon_sym_yield] = ACTIONS(2527), - [anon_sym_move] = ACTIONS(2527), - [anon_sym_try] = ACTIONS(2527), - [sym_integer_literal] = ACTIONS(2525), - [aux_sym_string_literal_token1] = ACTIONS(2525), - [sym_char_literal] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2527), - [sym_super] = ACTIONS(2527), - [sym_crate] = ACTIONS(2527), - [sym_metavariable] = ACTIONS(2525), - [sym_raw_string_literal] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2525), - [sym_block_comment] = ACTIONS(3), + [546] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), + [ts_builtin_sym_end] = ACTIONS(1913), + [sym_identifier] = ACTIONS(1915), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_macro_rules_BANG] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_u8] = ACTIONS(1915), + [anon_sym_i8] = ACTIONS(1915), + [anon_sym_u16] = ACTIONS(1915), + [anon_sym_i16] = ACTIONS(1915), + [anon_sym_u32] = ACTIONS(1915), + [anon_sym_i32] = ACTIONS(1915), + [anon_sym_u64] = ACTIONS(1915), + [anon_sym_i64] = ACTIONS(1915), + [anon_sym_u128] = ACTIONS(1915), + [anon_sym_i128] = ACTIONS(1915), + [anon_sym_isize] = ACTIONS(1915), + [anon_sym_usize] = ACTIONS(1915), + [anon_sym_f32] = ACTIONS(1915), + [anon_sym_f64] = ACTIONS(1915), + [anon_sym_bool] = ACTIONS(1915), + [anon_sym_str] = ACTIONS(1915), + [anon_sym_char] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_COLON_COLON] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_SQUOTE] = ACTIONS(1915), + [anon_sym_async] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_default] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_fn] = ACTIONS(1915), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_impl] = ACTIONS(1915), + [anon_sym_let] = ACTIONS(1915), + [anon_sym_loop] = ACTIONS(1915), + [anon_sym_match] = ACTIONS(1915), + [anon_sym_mod] = ACTIONS(1915), + [anon_sym_pub] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_struct] = ACTIONS(1915), + [anon_sym_trait] = ACTIONS(1915), + [anon_sym_type] = ACTIONS(1915), + [anon_sym_union] = ACTIONS(1915), + [anon_sym_unsafe] = ACTIONS(1915), + [anon_sym_use] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_yield] = ACTIONS(1915), + [anon_sym_move] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1915), + [sym_integer_literal] = ACTIONS(1913), + [aux_sym_string_literal_token1] = ACTIONS(1913), + [sym_char_literal] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = ACTIONS(1915), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1915), + [sym_super] = ACTIONS(1915), + [sym_crate] = ACTIONS(1915), + [sym_metavariable] = ACTIONS(1913), + [sym_raw_string_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), }, - [670] = { - [ts_builtin_sym_end] = ACTIONS(2529), - [sym_identifier] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_macro_rules_BANG] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_RBRACE] = ACTIONS(2529), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(2529), - [anon_sym_u8] = ACTIONS(2531), - [anon_sym_i8] = ACTIONS(2531), - [anon_sym_u16] = ACTIONS(2531), - [anon_sym_i16] = ACTIONS(2531), - [anon_sym_u32] = ACTIONS(2531), - [anon_sym_i32] = ACTIONS(2531), - [anon_sym_u64] = ACTIONS(2531), - [anon_sym_i64] = ACTIONS(2531), - [anon_sym_u128] = ACTIONS(2531), - [anon_sym_i128] = ACTIONS(2531), - [anon_sym_isize] = ACTIONS(2531), - [anon_sym_usize] = ACTIONS(2531), - [anon_sym_f32] = ACTIONS(2531), - [anon_sym_f64] = ACTIONS(2531), - [anon_sym_bool] = ACTIONS(2531), - [anon_sym_str] = ACTIONS(2531), - [anon_sym_char] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_COLON_COLON] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_AMP] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_PIPE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2531), - [anon_sym_async] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_default] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [anon_sym_fn] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_impl] = ACTIONS(2531), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_loop] = ACTIONS(2531), - [anon_sym_match] = ACTIONS(2531), - [anon_sym_mod] = ACTIONS(2531), - [anon_sym_pub] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_struct] = ACTIONS(2531), - [anon_sym_trait] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2531), - [anon_sym_union] = ACTIONS(2531), - [anon_sym_unsafe] = ACTIONS(2531), - [anon_sym_use] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_DOT_DOT] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2531), - [anon_sym_move] = ACTIONS(2531), - [anon_sym_try] = ACTIONS(2531), - [sym_integer_literal] = ACTIONS(2529), - [aux_sym_string_literal_token1] = ACTIONS(2529), - [sym_char_literal] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2531), - [anon_sym_false] = ACTIONS(2531), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2531), - [sym_super] = ACTIONS(2531), - [sym_crate] = ACTIONS(2531), - [sym_metavariable] = ACTIONS(2529), - [sym_raw_string_literal] = ACTIONS(2529), - [sym_float_literal] = ACTIONS(2529), - [sym_block_comment] = ACTIONS(3), + [547] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(1917), + [anon_sym_macro_rules_BANG] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_u8] = ACTIONS(1919), + [anon_sym_i8] = ACTIONS(1919), + [anon_sym_u16] = ACTIONS(1919), + [anon_sym_i16] = ACTIONS(1919), + [anon_sym_u32] = ACTIONS(1919), + [anon_sym_i32] = ACTIONS(1919), + [anon_sym_u64] = ACTIONS(1919), + [anon_sym_i64] = ACTIONS(1919), + [anon_sym_u128] = ACTIONS(1919), + [anon_sym_i128] = ACTIONS(1919), + [anon_sym_isize] = ACTIONS(1919), + [anon_sym_usize] = ACTIONS(1919), + [anon_sym_f32] = ACTIONS(1919), + [anon_sym_f64] = ACTIONS(1919), + [anon_sym_bool] = ACTIONS(1919), + [anon_sym_str] = ACTIONS(1919), + [anon_sym_char] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_COLON_COLON] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1917), + [anon_sym_AMP] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1917), + [anon_sym_PIPE] = ACTIONS(1917), + [anon_sym_SQUOTE] = ACTIONS(1919), + [anon_sym_async] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_const] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_default] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_fn] = ACTIONS(1919), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_impl] = ACTIONS(1919), + [anon_sym_let] = ACTIONS(1919), + [anon_sym_loop] = ACTIONS(1919), + [anon_sym_match] = ACTIONS(1919), + [anon_sym_mod] = ACTIONS(1919), + [anon_sym_pub] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1919), + [anon_sym_trait] = ACTIONS(1919), + [anon_sym_type] = ACTIONS(1919), + [anon_sym_union] = ACTIONS(1919), + [anon_sym_unsafe] = ACTIONS(1919), + [anon_sym_use] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_yield] = ACTIONS(1919), + [anon_sym_move] = ACTIONS(1919), + [anon_sym_try] = ACTIONS(1919), + [sym_integer_literal] = ACTIONS(1917), + [aux_sym_string_literal_token1] = ACTIONS(1917), + [sym_char_literal] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1919), + [anon_sym_false] = ACTIONS(1919), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1919), + [sym_super] = ACTIONS(1919), + [sym_crate] = ACTIONS(1919), + [sym_metavariable] = ACTIONS(1917), + [sym_raw_string_literal] = ACTIONS(1917), + [sym_float_literal] = ACTIONS(1917), }, - [671] = { - [ts_builtin_sym_end] = ACTIONS(2533), - [sym_identifier] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_macro_rules_BANG] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(2533), - [anon_sym_u8] = ACTIONS(2535), - [anon_sym_i8] = ACTIONS(2535), - [anon_sym_u16] = ACTIONS(2535), - [anon_sym_i16] = ACTIONS(2535), - [anon_sym_u32] = ACTIONS(2535), - [anon_sym_i32] = ACTIONS(2535), - [anon_sym_u64] = ACTIONS(2535), - [anon_sym_i64] = ACTIONS(2535), - [anon_sym_u128] = ACTIONS(2535), - [anon_sym_i128] = ACTIONS(2535), - [anon_sym_isize] = ACTIONS(2535), - [anon_sym_usize] = ACTIONS(2535), - [anon_sym_f32] = ACTIONS(2535), - [anon_sym_f64] = ACTIONS(2535), - [anon_sym_bool] = ACTIONS(2535), - [anon_sym_str] = ACTIONS(2535), - [anon_sym_char] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_SQUOTE] = ACTIONS(2535), - [anon_sym_async] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_fn] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_impl] = ACTIONS(2535), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_loop] = ACTIONS(2535), - [anon_sym_match] = ACTIONS(2535), - [anon_sym_mod] = ACTIONS(2535), - [anon_sym_pub] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_trait] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_unsafe] = ACTIONS(2535), - [anon_sym_use] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_DOT_DOT] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_move] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2535), - [sym_integer_literal] = ACTIONS(2533), - [aux_sym_string_literal_token1] = ACTIONS(2533), - [sym_char_literal] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2535), - [sym_super] = ACTIONS(2535), - [sym_crate] = ACTIONS(2535), - [sym_metavariable] = ACTIONS(2533), - [sym_raw_string_literal] = ACTIONS(2533), - [sym_float_literal] = ACTIONS(2533), - [sym_block_comment] = ACTIONS(3), + [548] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1921), + [anon_sym_macro_rules_BANG] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_u8] = ACTIONS(1923), + [anon_sym_i8] = ACTIONS(1923), + [anon_sym_u16] = ACTIONS(1923), + [anon_sym_i16] = ACTIONS(1923), + [anon_sym_u32] = ACTIONS(1923), + [anon_sym_i32] = ACTIONS(1923), + [anon_sym_u64] = ACTIONS(1923), + [anon_sym_i64] = ACTIONS(1923), + [anon_sym_u128] = ACTIONS(1923), + [anon_sym_i128] = ACTIONS(1923), + [anon_sym_isize] = ACTIONS(1923), + [anon_sym_usize] = ACTIONS(1923), + [anon_sym_f32] = ACTIONS(1923), + [anon_sym_f64] = ACTIONS(1923), + [anon_sym_bool] = ACTIONS(1923), + [anon_sym_str] = ACTIONS(1923), + [anon_sym_char] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_COLON_COLON] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1921), + [anon_sym_PIPE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_async] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_fn] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_impl] = ACTIONS(1923), + [anon_sym_let] = ACTIONS(1923), + [anon_sym_loop] = ACTIONS(1923), + [anon_sym_match] = ACTIONS(1923), + [anon_sym_mod] = ACTIONS(1923), + [anon_sym_pub] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_struct] = ACTIONS(1923), + [anon_sym_trait] = ACTIONS(1923), + [anon_sym_type] = ACTIONS(1923), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_unsafe] = ACTIONS(1923), + [anon_sym_use] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1921), + [anon_sym_yield] = ACTIONS(1923), + [anon_sym_move] = ACTIONS(1923), + [anon_sym_try] = ACTIONS(1923), + [sym_integer_literal] = ACTIONS(1921), + [aux_sym_string_literal_token1] = ACTIONS(1921), + [sym_char_literal] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1923), + [sym_super] = ACTIONS(1923), + [sym_crate] = ACTIONS(1923), + [sym_metavariable] = ACTIONS(1921), + [sym_raw_string_literal] = ACTIONS(1921), + [sym_float_literal] = ACTIONS(1921), }, - [672] = { - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_identifier] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_macro_rules_BANG] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_u8] = ACTIONS(2539), - [anon_sym_i8] = ACTIONS(2539), - [anon_sym_u16] = ACTIONS(2539), - [anon_sym_i16] = ACTIONS(2539), - [anon_sym_u32] = ACTIONS(2539), - [anon_sym_i32] = ACTIONS(2539), - [anon_sym_u64] = ACTIONS(2539), - [anon_sym_i64] = ACTIONS(2539), - [anon_sym_u128] = ACTIONS(2539), - [anon_sym_i128] = ACTIONS(2539), - [anon_sym_isize] = ACTIONS(2539), - [anon_sym_usize] = ACTIONS(2539), - [anon_sym_f32] = ACTIONS(2539), - [anon_sym_f64] = ACTIONS(2539), - [anon_sym_bool] = ACTIONS(2539), - [anon_sym_str] = ACTIONS(2539), - [anon_sym_char] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2539), - [anon_sym_async] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_default] = ACTIONS(2539), - [anon_sym_enum] = ACTIONS(2539), - [anon_sym_fn] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_impl] = ACTIONS(2539), - [anon_sym_let] = ACTIONS(2539), - [anon_sym_loop] = ACTIONS(2539), - [anon_sym_match] = ACTIONS(2539), - [anon_sym_mod] = ACTIONS(2539), - [anon_sym_pub] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2539), - [anon_sym_struct] = ACTIONS(2539), - [anon_sym_trait] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2539), - [anon_sym_union] = ACTIONS(2539), - [anon_sym_unsafe] = ACTIONS(2539), - [anon_sym_use] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym_DOT_DOT] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_move] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [sym_integer_literal] = ACTIONS(2537), - [aux_sym_string_literal_token1] = ACTIONS(2537), - [sym_char_literal] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2539), - [anon_sym_false] = ACTIONS(2539), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2539), - [sym_super] = ACTIONS(2539), - [sym_crate] = ACTIONS(2539), - [sym_metavariable] = ACTIONS(2537), - [sym_raw_string_literal] = ACTIONS(2537), - [sym_float_literal] = ACTIONS(2537), - [sym_block_comment] = ACTIONS(3), + [549] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1925), + [anon_sym_macro_rules_BANG] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_u8] = ACTIONS(1927), + [anon_sym_i8] = ACTIONS(1927), + [anon_sym_u16] = ACTIONS(1927), + [anon_sym_i16] = ACTIONS(1927), + [anon_sym_u32] = ACTIONS(1927), + [anon_sym_i32] = ACTIONS(1927), + [anon_sym_u64] = ACTIONS(1927), + [anon_sym_i64] = ACTIONS(1927), + [anon_sym_u128] = ACTIONS(1927), + [anon_sym_i128] = ACTIONS(1927), + [anon_sym_isize] = ACTIONS(1927), + [anon_sym_usize] = ACTIONS(1927), + [anon_sym_f32] = ACTIONS(1927), + [anon_sym_f64] = ACTIONS(1927), + [anon_sym_bool] = ACTIONS(1927), + [anon_sym_str] = ACTIONS(1927), + [anon_sym_char] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_COLON_COLON] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1927), + [anon_sym_async] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_fn] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_impl] = ACTIONS(1927), + [anon_sym_let] = ACTIONS(1927), + [anon_sym_loop] = ACTIONS(1927), + [anon_sym_match] = ACTIONS(1927), + [anon_sym_mod] = ACTIONS(1927), + [anon_sym_pub] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_struct] = ACTIONS(1927), + [anon_sym_trait] = ACTIONS(1927), + [anon_sym_type] = ACTIONS(1927), + [anon_sym_union] = ACTIONS(1927), + [anon_sym_unsafe] = ACTIONS(1927), + [anon_sym_use] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1927), + [anon_sym_move] = ACTIONS(1927), + [anon_sym_try] = ACTIONS(1927), + [sym_integer_literal] = ACTIONS(1925), + [aux_sym_string_literal_token1] = ACTIONS(1925), + [sym_char_literal] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1927), + [sym_super] = ACTIONS(1927), + [sym_crate] = ACTIONS(1927), + [sym_metavariable] = ACTIONS(1925), + [sym_raw_string_literal] = ACTIONS(1925), + [sym_float_literal] = ACTIONS(1925), }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(2541), - [sym_identifier] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_macro_rules_BANG] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_u8] = ACTIONS(2543), - [anon_sym_i8] = ACTIONS(2543), - [anon_sym_u16] = ACTIONS(2543), - [anon_sym_i16] = ACTIONS(2543), - [anon_sym_u32] = ACTIONS(2543), - [anon_sym_i32] = ACTIONS(2543), - [anon_sym_u64] = ACTIONS(2543), - [anon_sym_i64] = ACTIONS(2543), - [anon_sym_u128] = ACTIONS(2543), - [anon_sym_i128] = ACTIONS(2543), - [anon_sym_isize] = ACTIONS(2543), - [anon_sym_usize] = ACTIONS(2543), - [anon_sym_f32] = ACTIONS(2543), - [anon_sym_f64] = ACTIONS(2543), - [anon_sym_bool] = ACTIONS(2543), - [anon_sym_str] = ACTIONS(2543), - [anon_sym_char] = ACTIONS(2543), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_COLON_COLON] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_default] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_fn] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_impl] = ACTIONS(2543), - [anon_sym_let] = ACTIONS(2543), - [anon_sym_loop] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_mod] = ACTIONS(2543), - [anon_sym_pub] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_trait] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_unsafe] = ACTIONS(2543), - [anon_sym_use] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2543), - [anon_sym_move] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [sym_integer_literal] = ACTIONS(2541), - [aux_sym_string_literal_token1] = ACTIONS(2541), - [sym_char_literal] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2543), - [anon_sym_false] = ACTIONS(2543), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2543), - [sym_super] = ACTIONS(2543), - [sym_crate] = ACTIONS(2543), - [sym_metavariable] = ACTIONS(2541), - [sym_raw_string_literal] = ACTIONS(2541), - [sym_float_literal] = ACTIONS(2541), - [sym_block_comment] = ACTIONS(3), + [550] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_macro_rules_BANG] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_u8] = ACTIONS(1931), + [anon_sym_i8] = ACTIONS(1931), + [anon_sym_u16] = ACTIONS(1931), + [anon_sym_i16] = ACTIONS(1931), + [anon_sym_u32] = ACTIONS(1931), + [anon_sym_i32] = ACTIONS(1931), + [anon_sym_u64] = ACTIONS(1931), + [anon_sym_i64] = ACTIONS(1931), + [anon_sym_u128] = ACTIONS(1931), + [anon_sym_i128] = ACTIONS(1931), + [anon_sym_isize] = ACTIONS(1931), + [anon_sym_usize] = ACTIONS(1931), + [anon_sym_f32] = ACTIONS(1931), + [anon_sym_f64] = ACTIONS(1931), + [anon_sym_bool] = ACTIONS(1931), + [anon_sym_str] = ACTIONS(1931), + [anon_sym_char] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SQUOTE] = ACTIONS(1931), + [anon_sym_async] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_fn] = ACTIONS(1931), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_impl] = ACTIONS(1931), + [anon_sym_let] = ACTIONS(1931), + [anon_sym_loop] = ACTIONS(1931), + [anon_sym_match] = ACTIONS(1931), + [anon_sym_mod] = ACTIONS(1931), + [anon_sym_pub] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1931), + [anon_sym_trait] = ACTIONS(1931), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_union] = ACTIONS(1931), + [anon_sym_unsafe] = ACTIONS(1931), + [anon_sym_use] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_yield] = ACTIONS(1931), + [anon_sym_move] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1931), + [sym_integer_literal] = ACTIONS(1929), + [aux_sym_string_literal_token1] = ACTIONS(1929), + [sym_char_literal] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1931), + [sym_super] = ACTIONS(1931), + [sym_crate] = ACTIONS(1931), + [sym_metavariable] = ACTIONS(1929), + [sym_raw_string_literal] = ACTIONS(1929), + [sym_float_literal] = ACTIONS(1929), }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym_macro_rules_BANG] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_u8] = ACTIONS(2547), - [anon_sym_i8] = ACTIONS(2547), - [anon_sym_u16] = ACTIONS(2547), - [anon_sym_i16] = ACTIONS(2547), - [anon_sym_u32] = ACTIONS(2547), - [anon_sym_i32] = ACTIONS(2547), - [anon_sym_u64] = ACTIONS(2547), - [anon_sym_i64] = ACTIONS(2547), - [anon_sym_u128] = ACTIONS(2547), - [anon_sym_i128] = ACTIONS(2547), - [anon_sym_isize] = ACTIONS(2547), - [anon_sym_usize] = ACTIONS(2547), - [anon_sym_f32] = ACTIONS(2547), - [anon_sym_f64] = ACTIONS(2547), - [anon_sym_bool] = ACTIONS(2547), - [anon_sym_str] = ACTIONS(2547), - [anon_sym_char] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_async] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_fn] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_impl] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_mod] = ACTIONS(2547), - [anon_sym_pub] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_trait] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_unsafe] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2547), - [anon_sym_move] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [sym_integer_literal] = ACTIONS(2545), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2547), - [sym_super] = ACTIONS(2547), - [sym_crate] = ACTIONS(2547), - [sym_metavariable] = ACTIONS(2545), - [sym_raw_string_literal] = ACTIONS(2545), - [sym_float_literal] = ACTIONS(2545), - [sym_block_comment] = ACTIONS(3), + [551] = { + [sym_empty_statement] = STATE(1426), + [sym_macro_definition] = STATE(1426), + [sym_attribute_item] = STATE(1426), + [sym_inner_attribute_item] = STATE(1426), + [sym_mod_item] = STATE(1426), + [sym_foreign_mod_item] = STATE(1426), + [sym_struct_item] = STATE(1426), + [sym_union_item] = STATE(1426), + [sym_enum_item] = STATE(1426), + [sym_extern_crate_declaration] = STATE(1426), + [sym_const_item] = STATE(1426), + [sym_static_item] = STATE(1426), + [sym_type_item] = STATE(1426), + [sym_function_item] = STATE(1426), + [sym_function_signature_item] = STATE(1426), + [sym_function_modifiers] = STATE(3492), + [sym_impl_item] = STATE(1426), + [sym_trait_item] = STATE(1426), + [sym_associated_type] = STATE(1426), + [sym_let_declaration] = STATE(1426), + [sym_use_declaration] = STATE(1426), + [sym_extern_modifier] = STATE(2121), + [sym_visibility_modifier] = STATE(1931), + [sym_bracketed_type] = STATE(3236), + [sym_generic_type_with_turbofish] = STATE(3261), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3002), + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), + [aux_sym_declaration_list_repeat1] = STATE(551), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_macro_rules_BANG] = ACTIONS(1939), + [anon_sym_RBRACE] = 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_COLON_COLON] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1953), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1965), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_impl] = ACTIONS(1971), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_mod] = ACTIONS(1977), + [anon_sym_pub] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1983), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_trait] = ACTIONS(1989), + [anon_sym_type] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1995), + [anon_sym_unsafe] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2007), + [sym_super] = ACTIONS(2007), + [sym_crate] = ACTIONS(2010), + [sym_metavariable] = ACTIONS(2013), }, - [675] = { - [ts_builtin_sym_end] = ACTIONS(2549), - [sym_identifier] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_macro_rules_BANG] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_u8] = ACTIONS(2551), - [anon_sym_i8] = ACTIONS(2551), - [anon_sym_u16] = ACTIONS(2551), - [anon_sym_i16] = ACTIONS(2551), - [anon_sym_u32] = ACTIONS(2551), - [anon_sym_i32] = ACTIONS(2551), - [anon_sym_u64] = ACTIONS(2551), - [anon_sym_i64] = ACTIONS(2551), - [anon_sym_u128] = ACTIONS(2551), - [anon_sym_i128] = ACTIONS(2551), - [anon_sym_isize] = ACTIONS(2551), - [anon_sym_usize] = ACTIONS(2551), - [anon_sym_f32] = ACTIONS(2551), - [anon_sym_f64] = ACTIONS(2551), - [anon_sym_bool] = ACTIONS(2551), - [anon_sym_str] = ACTIONS(2551), - [anon_sym_char] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_async] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_fn] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_impl] = ACTIONS(2551), - [anon_sym_let] = ACTIONS(2551), - [anon_sym_loop] = ACTIONS(2551), - [anon_sym_match] = ACTIONS(2551), - [anon_sym_mod] = ACTIONS(2551), - [anon_sym_pub] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_trait] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_unsafe] = ACTIONS(2551), - [anon_sym_use] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym_DOT_DOT] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2551), - [anon_sym_move] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [sym_integer_literal] = ACTIONS(2549), - [aux_sym_string_literal_token1] = ACTIONS(2549), - [sym_char_literal] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2551), - [sym_super] = ACTIONS(2551), - [sym_crate] = ACTIONS(2551), - [sym_metavariable] = ACTIONS(2549), - [sym_raw_string_literal] = ACTIONS(2549), - [sym_float_literal] = ACTIONS(2549), - [sym_block_comment] = ACTIONS(3), + [552] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_macro_rules_BANG] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2018), + [anon_sym_i8] = ACTIONS(2018), + [anon_sym_u16] = ACTIONS(2018), + [anon_sym_i16] = ACTIONS(2018), + [anon_sym_u32] = ACTIONS(2018), + [anon_sym_i32] = ACTIONS(2018), + [anon_sym_u64] = ACTIONS(2018), + [anon_sym_i64] = ACTIONS(2018), + [anon_sym_u128] = ACTIONS(2018), + [anon_sym_i128] = ACTIONS(2018), + [anon_sym_isize] = ACTIONS(2018), + [anon_sym_usize] = ACTIONS(2018), + [anon_sym_f32] = ACTIONS(2018), + [anon_sym_f64] = ACTIONS(2018), + [anon_sym_bool] = ACTIONS(2018), + [anon_sym_str] = ACTIONS(2018), + [anon_sym_char] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_fn] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_impl] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_mod] = ACTIONS(2018), + [anon_sym_pub] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_struct] = ACTIONS(2018), + [anon_sym_trait] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2018), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_DOT_DOT] = ACTIONS(2016), + [anon_sym_yield] = ACTIONS(2018), + [anon_sym_move] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2016), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2016), + [sym_float_literal] = ACTIONS(2016), }, - [676] = { - [ts_builtin_sym_end] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_macro_rules_BANG] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_u8] = ACTIONS(2555), - [anon_sym_i8] = ACTIONS(2555), - [anon_sym_u16] = ACTIONS(2555), - [anon_sym_i16] = ACTIONS(2555), - [anon_sym_u32] = ACTIONS(2555), - [anon_sym_i32] = ACTIONS(2555), - [anon_sym_u64] = ACTIONS(2555), - [anon_sym_i64] = ACTIONS(2555), - [anon_sym_u128] = ACTIONS(2555), - [anon_sym_i128] = ACTIONS(2555), - [anon_sym_isize] = ACTIONS(2555), - [anon_sym_usize] = ACTIONS(2555), - [anon_sym_f32] = ACTIONS(2555), - [anon_sym_f64] = ACTIONS(2555), - [anon_sym_bool] = ACTIONS(2555), - [anon_sym_str] = ACTIONS(2555), - [anon_sym_char] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_async] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_fn] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_impl] = ACTIONS(2555), - [anon_sym_let] = ACTIONS(2555), - [anon_sym_loop] = ACTIONS(2555), - [anon_sym_match] = ACTIONS(2555), - [anon_sym_mod] = ACTIONS(2555), - [anon_sym_pub] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_trait] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_unsafe] = ACTIONS(2555), - [anon_sym_use] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym_DOT_DOT] = ACTIONS(2553), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_move] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [sym_integer_literal] = ACTIONS(2553), - [aux_sym_string_literal_token1] = ACTIONS(2553), - [sym_char_literal] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2555), - [anon_sym_false] = ACTIONS(2555), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2555), - [sym_super] = ACTIONS(2555), - [sym_crate] = ACTIONS(2555), - [sym_metavariable] = ACTIONS(2553), - [sym_raw_string_literal] = ACTIONS(2553), - [sym_float_literal] = ACTIONS(2553), - [sym_block_comment] = ACTIONS(3), + [553] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_macro_rules_BANG] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_u8] = ACTIONS(2022), + [anon_sym_i8] = ACTIONS(2022), + [anon_sym_u16] = ACTIONS(2022), + [anon_sym_i16] = ACTIONS(2022), + [anon_sym_u32] = ACTIONS(2022), + [anon_sym_i32] = ACTIONS(2022), + [anon_sym_u64] = ACTIONS(2022), + [anon_sym_i64] = ACTIONS(2022), + [anon_sym_u128] = ACTIONS(2022), + [anon_sym_i128] = ACTIONS(2022), + [anon_sym_isize] = ACTIONS(2022), + [anon_sym_usize] = ACTIONS(2022), + [anon_sym_f32] = ACTIONS(2022), + [anon_sym_f64] = ACTIONS(2022), + [anon_sym_bool] = ACTIONS(2022), + [anon_sym_str] = ACTIONS(2022), + [anon_sym_char] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_fn] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_impl] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_mod] = ACTIONS(2022), + [anon_sym_pub] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_struct] = ACTIONS(2022), + [anon_sym_trait] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_union] = ACTIONS(2022), + [anon_sym_unsafe] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_DOT_DOT] = ACTIONS(2020), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_move] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_crate] = ACTIONS(2022), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_macro_rules_BANG] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2557), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_u8] = ACTIONS(2559), - [anon_sym_i8] = ACTIONS(2559), - [anon_sym_u16] = ACTIONS(2559), - [anon_sym_i16] = ACTIONS(2559), - [anon_sym_u32] = ACTIONS(2559), - [anon_sym_i32] = ACTIONS(2559), - [anon_sym_u64] = ACTIONS(2559), - [anon_sym_i64] = ACTIONS(2559), - [anon_sym_u128] = ACTIONS(2559), - [anon_sym_i128] = ACTIONS(2559), - [anon_sym_isize] = ACTIONS(2559), - [anon_sym_usize] = ACTIONS(2559), - [anon_sym_f32] = ACTIONS(2559), - [anon_sym_f64] = ACTIONS(2559), - [anon_sym_bool] = ACTIONS(2559), - [anon_sym_str] = ACTIONS(2559), - [anon_sym_char] = ACTIONS(2559), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_async] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_fn] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_impl] = ACTIONS(2559), - [anon_sym_let] = ACTIONS(2559), - [anon_sym_loop] = ACTIONS(2559), - [anon_sym_match] = ACTIONS(2559), - [anon_sym_mod] = ACTIONS(2559), - [anon_sym_pub] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_trait] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_unsafe] = ACTIONS(2559), - [anon_sym_use] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym_DOT_DOT] = ACTIONS(2557), - [anon_sym_yield] = ACTIONS(2559), - [anon_sym_move] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [sym_integer_literal] = ACTIONS(2557), - [aux_sym_string_literal_token1] = ACTIONS(2557), - [sym_char_literal] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2559), - [anon_sym_false] = ACTIONS(2559), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2559), - [sym_super] = ACTIONS(2559), - [sym_crate] = ACTIONS(2559), - [sym_metavariable] = ACTIONS(2557), - [sym_raw_string_literal] = ACTIONS(2557), - [sym_float_literal] = ACTIONS(2557), - [sym_block_comment] = ACTIONS(3), + [554] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_macro_rules_BANG] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_u8] = ACTIONS(2026), + [anon_sym_i8] = ACTIONS(2026), + [anon_sym_u16] = ACTIONS(2026), + [anon_sym_i16] = ACTIONS(2026), + [anon_sym_u32] = ACTIONS(2026), + [anon_sym_i32] = ACTIONS(2026), + [anon_sym_u64] = ACTIONS(2026), + [anon_sym_i64] = ACTIONS(2026), + [anon_sym_u128] = ACTIONS(2026), + [anon_sym_i128] = ACTIONS(2026), + [anon_sym_isize] = ACTIONS(2026), + [anon_sym_usize] = ACTIONS(2026), + [anon_sym_f32] = ACTIONS(2026), + [anon_sym_f64] = ACTIONS(2026), + [anon_sym_bool] = ACTIONS(2026), + [anon_sym_str] = ACTIONS(2026), + [anon_sym_char] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_fn] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_impl] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_mod] = ACTIONS(2026), + [anon_sym_pub] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_struct] = ACTIONS(2026), + [anon_sym_trait] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_union] = ACTIONS(2026), + [anon_sym_unsafe] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2024), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_move] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [sym_integer_literal] = ACTIONS(2024), + [aux_sym_string_literal_token1] = ACTIONS(2024), + [sym_char_literal] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_crate] = ACTIONS(2026), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2024), + [sym_float_literal] = ACTIONS(2024), }, - [678] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_macro_rules_BANG] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_u8] = ACTIONS(2563), - [anon_sym_i8] = ACTIONS(2563), - [anon_sym_u16] = ACTIONS(2563), - [anon_sym_i16] = ACTIONS(2563), - [anon_sym_u32] = ACTIONS(2563), - [anon_sym_i32] = ACTIONS(2563), - [anon_sym_u64] = ACTIONS(2563), - [anon_sym_i64] = ACTIONS(2563), - [anon_sym_u128] = ACTIONS(2563), - [anon_sym_i128] = ACTIONS(2563), - [anon_sym_isize] = ACTIONS(2563), - [anon_sym_usize] = ACTIONS(2563), - [anon_sym_f32] = ACTIONS(2563), - [anon_sym_f64] = ACTIONS(2563), - [anon_sym_bool] = ACTIONS(2563), - [anon_sym_str] = ACTIONS(2563), - [anon_sym_char] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_fn] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_impl] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_loop] = ACTIONS(2563), - [anon_sym_match] = ACTIONS(2563), - [anon_sym_mod] = ACTIONS(2563), - [anon_sym_pub] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_trait] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_unsafe] = ACTIONS(2563), - [anon_sym_use] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym_DOT_DOT] = ACTIONS(2561), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_move] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [sym_integer_literal] = ACTIONS(2561), - [aux_sym_string_literal_token1] = ACTIONS(2561), - [sym_char_literal] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2563), - [anon_sym_false] = ACTIONS(2563), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_crate] = ACTIONS(2563), - [sym_metavariable] = ACTIONS(2561), - [sym_raw_string_literal] = ACTIONS(2561), - [sym_float_literal] = ACTIONS(2561), - [sym_block_comment] = ACTIONS(3), + [555] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_macro_rules_BANG] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(892), + [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(892), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_AMP] = ACTIONS(892), + [anon_sym_POUND] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(892), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_async] = 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_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_while] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(892), + [anon_sym_yield] = ACTIONS(894), + [anon_sym_move] = ACTIONS(894), + [anon_sym_try] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), }, - [679] = { - [ts_builtin_sym_end] = ACTIONS(2565), - [sym_identifier] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_macro_rules_BANG] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_RBRACE] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_u8] = ACTIONS(2567), - [anon_sym_i8] = ACTIONS(2567), - [anon_sym_u16] = ACTIONS(2567), - [anon_sym_i16] = ACTIONS(2567), - [anon_sym_u32] = ACTIONS(2567), - [anon_sym_i32] = ACTIONS(2567), - [anon_sym_u64] = ACTIONS(2567), - [anon_sym_i64] = ACTIONS(2567), - [anon_sym_u128] = ACTIONS(2567), - [anon_sym_i128] = ACTIONS(2567), - [anon_sym_isize] = ACTIONS(2567), - [anon_sym_usize] = ACTIONS(2567), - [anon_sym_f32] = ACTIONS(2567), - [anon_sym_f64] = ACTIONS(2567), - [anon_sym_bool] = ACTIONS(2567), - [anon_sym_str] = ACTIONS(2567), - [anon_sym_char] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2567), - [anon_sym_async] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_fn] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_impl] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_loop] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_mod] = ACTIONS(2567), - [anon_sym_pub] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_trait] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_unsafe] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym_DOT_DOT] = ACTIONS(2565), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_move] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [sym_integer_literal] = ACTIONS(2565), - [aux_sym_string_literal_token1] = ACTIONS(2565), - [sym_char_literal] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2567), - [anon_sym_false] = ACTIONS(2567), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2567), - [sym_super] = ACTIONS(2567), - [sym_crate] = ACTIONS(2567), - [sym_metavariable] = ACTIONS(2565), - [sym_raw_string_literal] = ACTIONS(2565), - [sym_float_literal] = ACTIONS(2565), - [sym_block_comment] = ACTIONS(3), + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_macro_rules_BANG] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_yield] = ACTIONS(2030), + [anon_sym_move] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2028), + [aux_sym_string_literal_token1] = ACTIONS(2028), + [sym_char_literal] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2028), + [sym_raw_string_literal] = ACTIONS(2028), + [sym_float_literal] = ACTIONS(2028), }, - [680] = { - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_macro_rules_BANG] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_u8] = ACTIONS(2571), - [anon_sym_i8] = ACTIONS(2571), - [anon_sym_u16] = ACTIONS(2571), - [anon_sym_i16] = ACTIONS(2571), - [anon_sym_u32] = ACTIONS(2571), - [anon_sym_i32] = ACTIONS(2571), - [anon_sym_u64] = ACTIONS(2571), - [anon_sym_i64] = ACTIONS(2571), - [anon_sym_u128] = ACTIONS(2571), - [anon_sym_i128] = ACTIONS(2571), - [anon_sym_isize] = ACTIONS(2571), - [anon_sym_usize] = ACTIONS(2571), - [anon_sym_f32] = ACTIONS(2571), - [anon_sym_f64] = ACTIONS(2571), - [anon_sym_bool] = ACTIONS(2571), - [anon_sym_str] = ACTIONS(2571), - [anon_sym_char] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_async] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(2571), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_fn] = ACTIONS(2571), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_impl] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_loop] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_mod] = ACTIONS(2571), - [anon_sym_pub] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_trait] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_unsafe] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym_DOT_DOT] = ACTIONS(2569), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_move] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [sym_integer_literal] = ACTIONS(2569), - [aux_sym_string_literal_token1] = ACTIONS(2569), - [sym_char_literal] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2571), - [anon_sym_false] = ACTIONS(2571), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2571), - [sym_super] = ACTIONS(2571), - [sym_crate] = ACTIONS(2571), - [sym_metavariable] = ACTIONS(2569), - [sym_raw_string_literal] = ACTIONS(2569), - [sym_float_literal] = ACTIONS(2569), - [sym_block_comment] = ACTIONS(3), + [557] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_macro_rules_BANG] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [anon_sym_yield] = ACTIONS(2034), + [anon_sym_move] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(2032), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2032), + [sym_raw_string_literal] = ACTIONS(2032), + [sym_float_literal] = ACTIONS(2032), }, - [681] = { - [ts_builtin_sym_end] = ACTIONS(2573), - [sym_identifier] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_macro_rules_BANG] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_RBRACE] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_u8] = ACTIONS(2575), - [anon_sym_i8] = ACTIONS(2575), - [anon_sym_u16] = ACTIONS(2575), - [anon_sym_i16] = ACTIONS(2575), - [anon_sym_u32] = ACTIONS(2575), - [anon_sym_i32] = ACTIONS(2575), - [anon_sym_u64] = ACTIONS(2575), - [anon_sym_i64] = ACTIONS(2575), - [anon_sym_u128] = ACTIONS(2575), - [anon_sym_i128] = ACTIONS(2575), - [anon_sym_isize] = ACTIONS(2575), - [anon_sym_usize] = ACTIONS(2575), - [anon_sym_f32] = ACTIONS(2575), - [anon_sym_f64] = ACTIONS(2575), - [anon_sym_bool] = ACTIONS(2575), - [anon_sym_str] = ACTIONS(2575), - [anon_sym_char] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_async] = ACTIONS(2575), - [anon_sym_break] = ACTIONS(2575), - [anon_sym_const] = ACTIONS(2575), - [anon_sym_continue] = ACTIONS(2575), - [anon_sym_default] = ACTIONS(2575), - [anon_sym_enum] = ACTIONS(2575), - [anon_sym_fn] = ACTIONS(2575), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_impl] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_loop] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_mod] = ACTIONS(2575), - [anon_sym_pub] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2575), - [anon_sym_struct] = ACTIONS(2575), - [anon_sym_trait] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_union] = ACTIONS(2575), - [anon_sym_unsafe] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_extern] = ACTIONS(2575), - [anon_sym_DOT_DOT] = ACTIONS(2573), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_move] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [sym_integer_literal] = ACTIONS(2573), - [aux_sym_string_literal_token1] = ACTIONS(2573), - [sym_char_literal] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2575), - [anon_sym_false] = ACTIONS(2575), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2575), - [sym_super] = ACTIONS(2575), - [sym_crate] = ACTIONS(2575), - [sym_metavariable] = ACTIONS(2573), - [sym_raw_string_literal] = ACTIONS(2573), - [sym_float_literal] = ACTIONS(2573), - [sym_block_comment] = ACTIONS(3), + [558] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [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_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2036), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2036), + [sym_float_literal] = ACTIONS(2036), }, - [682] = { - [ts_builtin_sym_end] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2577), - [anon_sym_macro_rules_BANG] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2577), - [anon_sym_RBRACE] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_u8] = ACTIONS(2579), - [anon_sym_i8] = ACTIONS(2579), - [anon_sym_u16] = ACTIONS(2579), - [anon_sym_i16] = ACTIONS(2579), - [anon_sym_u32] = ACTIONS(2579), - [anon_sym_i32] = ACTIONS(2579), - [anon_sym_u64] = ACTIONS(2579), - [anon_sym_i64] = ACTIONS(2579), - [anon_sym_u128] = ACTIONS(2579), - [anon_sym_i128] = ACTIONS(2579), - [anon_sym_isize] = ACTIONS(2579), - [anon_sym_usize] = ACTIONS(2579), - [anon_sym_f32] = ACTIONS(2579), - [anon_sym_f64] = ACTIONS(2579), - [anon_sym_bool] = ACTIONS(2579), - [anon_sym_str] = ACTIONS(2579), - [anon_sym_char] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_async] = ACTIONS(2579), - [anon_sym_break] = ACTIONS(2579), - [anon_sym_const] = ACTIONS(2579), - [anon_sym_continue] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2579), - [anon_sym_fn] = ACTIONS(2579), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_impl] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_loop] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_mod] = ACTIONS(2579), - [anon_sym_pub] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2579), - [anon_sym_struct] = ACTIONS(2579), - [anon_sym_trait] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2579), - [anon_sym_union] = ACTIONS(2579), - [anon_sym_unsafe] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_extern] = ACTIONS(2579), - [anon_sym_DOT_DOT] = ACTIONS(2577), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_move] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [sym_integer_literal] = ACTIONS(2577), - [aux_sym_string_literal_token1] = ACTIONS(2577), - [sym_char_literal] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2579), - [sym_super] = ACTIONS(2579), - [sym_crate] = ACTIONS(2579), - [sym_metavariable] = ACTIONS(2577), - [sym_raw_string_literal] = ACTIONS(2577), - [sym_float_literal] = ACTIONS(2577), - [sym_block_comment] = ACTIONS(3), + [559] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [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_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2040), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), + [sym_metavariable] = ACTIONS(2040), + [sym_raw_string_literal] = ACTIONS(2040), + [sym_float_literal] = ACTIONS(2040), }, - [683] = { - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2581), - [anon_sym_macro_rules_BANG] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_u8] = ACTIONS(2583), - [anon_sym_i8] = ACTIONS(2583), - [anon_sym_u16] = ACTIONS(2583), - [anon_sym_i16] = ACTIONS(2583), - [anon_sym_u32] = ACTIONS(2583), - [anon_sym_i32] = ACTIONS(2583), - [anon_sym_u64] = ACTIONS(2583), - [anon_sym_i64] = ACTIONS(2583), - [anon_sym_u128] = ACTIONS(2583), - [anon_sym_i128] = ACTIONS(2583), - [anon_sym_isize] = ACTIONS(2583), - [anon_sym_usize] = ACTIONS(2583), - [anon_sym_f32] = ACTIONS(2583), - [anon_sym_f64] = ACTIONS(2583), - [anon_sym_bool] = ACTIONS(2583), - [anon_sym_str] = ACTIONS(2583), - [anon_sym_char] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_async] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_fn] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_impl] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_loop] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_mod] = ACTIONS(2583), - [anon_sym_pub] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_trait] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_unsafe] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_move] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [sym_integer_literal] = ACTIONS(2581), - [aux_sym_string_literal_token1] = ACTIONS(2581), - [sym_char_literal] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2583), - [anon_sym_false] = ACTIONS(2583), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2583), - [sym_super] = ACTIONS(2583), - [sym_crate] = ACTIONS(2583), - [sym_metavariable] = ACTIONS(2581), - [sym_raw_string_literal] = ACTIONS(2581), - [sym_float_literal] = ACTIONS(2581), - [sym_block_comment] = ACTIONS(3), + [560] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), + [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_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2044), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), + [sym_metavariable] = ACTIONS(2044), + [sym_raw_string_literal] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2044), }, - [684] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_macro_rules_BANG] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_u8] = ACTIONS(2587), - [anon_sym_i8] = ACTIONS(2587), - [anon_sym_u16] = ACTIONS(2587), - [anon_sym_i16] = ACTIONS(2587), - [anon_sym_u32] = ACTIONS(2587), - [anon_sym_i32] = ACTIONS(2587), - [anon_sym_u64] = ACTIONS(2587), - [anon_sym_i64] = ACTIONS(2587), - [anon_sym_u128] = ACTIONS(2587), - [anon_sym_i128] = ACTIONS(2587), - [anon_sym_isize] = ACTIONS(2587), - [anon_sym_usize] = ACTIONS(2587), - [anon_sym_f32] = ACTIONS(2587), - [anon_sym_f64] = ACTIONS(2587), - [anon_sym_bool] = ACTIONS(2587), - [anon_sym_str] = ACTIONS(2587), - [anon_sym_char] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_fn] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_impl] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_loop] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_mod] = ACTIONS(2587), - [anon_sym_pub] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_trait] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_unsafe] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_DOT_DOT] = ACTIONS(2585), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_move] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [sym_integer_literal] = ACTIONS(2585), - [aux_sym_string_literal_token1] = ACTIONS(2585), - [sym_char_literal] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2587), - [anon_sym_false] = ACTIONS(2587), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2587), - [sym_super] = ACTIONS(2587), - [sym_crate] = ACTIONS(2587), - [sym_metavariable] = ACTIONS(2585), - [sym_raw_string_literal] = ACTIONS(2585), - [sym_float_literal] = ACTIONS(2585), - [sym_block_comment] = ACTIONS(3), + [561] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [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_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2048), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_metavariable] = ACTIONS(2048), + [sym_raw_string_literal] = ACTIONS(2048), + [sym_float_literal] = ACTIONS(2048), }, - [685] = { - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_identifier] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_macro_rules_BANG] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_u8] = ACTIONS(2591), - [anon_sym_i8] = ACTIONS(2591), - [anon_sym_u16] = ACTIONS(2591), - [anon_sym_i16] = ACTIONS(2591), - [anon_sym_u32] = ACTIONS(2591), - [anon_sym_i32] = ACTIONS(2591), - [anon_sym_u64] = ACTIONS(2591), - [anon_sym_i64] = ACTIONS(2591), - [anon_sym_u128] = ACTIONS(2591), - [anon_sym_i128] = ACTIONS(2591), - [anon_sym_isize] = ACTIONS(2591), - [anon_sym_usize] = ACTIONS(2591), - [anon_sym_f32] = ACTIONS(2591), - [anon_sym_f64] = ACTIONS(2591), - [anon_sym_bool] = ACTIONS(2591), - [anon_sym_str] = ACTIONS(2591), - [anon_sym_char] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2591), - [anon_sym_async] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_fn] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_impl] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_loop] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_mod] = ACTIONS(2591), - [anon_sym_pub] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_trait] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_unsafe] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym_DOT_DOT] = ACTIONS(2589), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_move] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2589), - [aux_sym_string_literal_token1] = ACTIONS(2589), - [sym_char_literal] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2591), - [anon_sym_false] = ACTIONS(2591), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2591), - [sym_super] = ACTIONS(2591), - [sym_crate] = ACTIONS(2591), - [sym_metavariable] = ACTIONS(2589), - [sym_raw_string_literal] = ACTIONS(2589), - [sym_float_literal] = ACTIONS(2589), - [sym_block_comment] = ACTIONS(3), + [562] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [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_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2052), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), + [sym_metavariable] = ACTIONS(2052), + [sym_raw_string_literal] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_macro_rules_BANG] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_u8] = ACTIONS(2595), - [anon_sym_i8] = ACTIONS(2595), - [anon_sym_u16] = ACTIONS(2595), - [anon_sym_i16] = ACTIONS(2595), - [anon_sym_u32] = ACTIONS(2595), - [anon_sym_i32] = ACTIONS(2595), - [anon_sym_u64] = ACTIONS(2595), - [anon_sym_i64] = ACTIONS(2595), - [anon_sym_u128] = ACTIONS(2595), - [anon_sym_i128] = ACTIONS(2595), - [anon_sym_isize] = ACTIONS(2595), - [anon_sym_usize] = ACTIONS(2595), - [anon_sym_f32] = ACTIONS(2595), - [anon_sym_f64] = ACTIONS(2595), - [anon_sym_bool] = ACTIONS(2595), - [anon_sym_str] = ACTIONS(2595), - [anon_sym_char] = ACTIONS(2595), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_PIPE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2595), - [anon_sym_async] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_default] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_fn] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_impl] = ACTIONS(2595), - [anon_sym_let] = ACTIONS(2595), - [anon_sym_loop] = ACTIONS(2595), - [anon_sym_match] = ACTIONS(2595), - [anon_sym_mod] = ACTIONS(2595), - [anon_sym_pub] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_trait] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_unsafe] = ACTIONS(2595), - [anon_sym_use] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym_DOT_DOT] = ACTIONS(2593), - [anon_sym_yield] = ACTIONS(2595), - [anon_sym_move] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2593), - [aux_sym_string_literal_token1] = ACTIONS(2593), - [sym_char_literal] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2595), - [sym_super] = ACTIONS(2595), - [sym_crate] = ACTIONS(2595), - [sym_metavariable] = ACTIONS(2593), - [sym_raw_string_literal] = ACTIONS(2593), - [sym_float_literal] = ACTIONS(2593), - [sym_block_comment] = ACTIONS(3), + [563] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), + [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_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2056), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), + [sym_metavariable] = ACTIONS(2056), + [sym_raw_string_literal] = ACTIONS(2056), + [sym_float_literal] = ACTIONS(2056), }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(2597), - [sym_identifier] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_macro_rules_BANG] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_u8] = ACTIONS(2599), - [anon_sym_i8] = ACTIONS(2599), - [anon_sym_u16] = ACTIONS(2599), - [anon_sym_i16] = ACTIONS(2599), - [anon_sym_u32] = ACTIONS(2599), - [anon_sym_i32] = ACTIONS(2599), - [anon_sym_u64] = ACTIONS(2599), - [anon_sym_i64] = ACTIONS(2599), - [anon_sym_u128] = ACTIONS(2599), - [anon_sym_i128] = ACTIONS(2599), - [anon_sym_isize] = ACTIONS(2599), - [anon_sym_usize] = ACTIONS(2599), - [anon_sym_f32] = ACTIONS(2599), - [anon_sym_f64] = ACTIONS(2599), - [anon_sym_bool] = ACTIONS(2599), - [anon_sym_str] = ACTIONS(2599), - [anon_sym_char] = ACTIONS(2599), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_async] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_default] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_fn] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_impl] = ACTIONS(2599), - [anon_sym_let] = ACTIONS(2599), - [anon_sym_loop] = ACTIONS(2599), - [anon_sym_match] = ACTIONS(2599), - [anon_sym_mod] = ACTIONS(2599), - [anon_sym_pub] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_trait] = ACTIONS(2599), - [anon_sym_type] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_unsafe] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym_DOT_DOT] = ACTIONS(2597), - [anon_sym_yield] = ACTIONS(2599), - [anon_sym_move] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [sym_integer_literal] = ACTIONS(2597), - [aux_sym_string_literal_token1] = ACTIONS(2597), - [sym_char_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2599), - [anon_sym_false] = ACTIONS(2599), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2599), - [sym_super] = ACTIONS(2599), - [sym_crate] = ACTIONS(2599), - [sym_metavariable] = ACTIONS(2597), - [sym_raw_string_literal] = ACTIONS(2597), - [sym_float_literal] = ACTIONS(2597), - [sym_block_comment] = ACTIONS(3), + [564] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), + [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_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2060), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_crate] = ACTIONS(2062), + [sym_metavariable] = ACTIONS(2060), + [sym_raw_string_literal] = ACTIONS(2060), + [sym_float_literal] = ACTIONS(2060), }, - [688] = { - [ts_builtin_sym_end] = ACTIONS(2601), - [sym_identifier] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_macro_rules_BANG] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_u8] = ACTIONS(2603), - [anon_sym_i8] = ACTIONS(2603), - [anon_sym_u16] = ACTIONS(2603), - [anon_sym_i16] = ACTIONS(2603), - [anon_sym_u32] = ACTIONS(2603), - [anon_sym_i32] = ACTIONS(2603), - [anon_sym_u64] = ACTIONS(2603), - [anon_sym_i64] = ACTIONS(2603), - [anon_sym_u128] = ACTIONS(2603), - [anon_sym_i128] = ACTIONS(2603), - [anon_sym_isize] = ACTIONS(2603), - [anon_sym_usize] = ACTIONS(2603), - [anon_sym_f32] = ACTIONS(2603), - [anon_sym_f64] = ACTIONS(2603), - [anon_sym_bool] = ACTIONS(2603), - [anon_sym_str] = ACTIONS(2603), - [anon_sym_char] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_PIPE] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_async] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_fn] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_impl] = ACTIONS(2603), - [anon_sym_let] = ACTIONS(2603), - [anon_sym_loop] = ACTIONS(2603), - [anon_sym_match] = ACTIONS(2603), - [anon_sym_mod] = ACTIONS(2603), - [anon_sym_pub] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_trait] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_unsafe] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym_DOT_DOT] = ACTIONS(2601), - [anon_sym_yield] = ACTIONS(2603), - [anon_sym_move] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [sym_integer_literal] = ACTIONS(2601), - [aux_sym_string_literal_token1] = ACTIONS(2601), - [sym_char_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2603), - [anon_sym_false] = ACTIONS(2603), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2603), - [sym_super] = ACTIONS(2603), - [sym_crate] = ACTIONS(2603), - [sym_metavariable] = ACTIONS(2601), - [sym_raw_string_literal] = ACTIONS(2601), - [sym_float_literal] = ACTIONS(2601), - [sym_block_comment] = ACTIONS(3), + [565] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), + [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_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2064), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2064), + [sym_raw_string_literal] = ACTIONS(2064), + [sym_float_literal] = ACTIONS(2064), }, - [689] = { - [ts_builtin_sym_end] = ACTIONS(2605), - [sym_identifier] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_macro_rules_BANG] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_u8] = ACTIONS(2607), - [anon_sym_i8] = ACTIONS(2607), - [anon_sym_u16] = ACTIONS(2607), - [anon_sym_i16] = ACTIONS(2607), - [anon_sym_u32] = ACTIONS(2607), - [anon_sym_i32] = ACTIONS(2607), - [anon_sym_u64] = ACTIONS(2607), - [anon_sym_i64] = ACTIONS(2607), - [anon_sym_u128] = ACTIONS(2607), - [anon_sym_i128] = ACTIONS(2607), - [anon_sym_isize] = ACTIONS(2607), - [anon_sym_usize] = ACTIONS(2607), - [anon_sym_f32] = ACTIONS(2607), - [anon_sym_f64] = ACTIONS(2607), - [anon_sym_bool] = ACTIONS(2607), - [anon_sym_str] = ACTIONS(2607), - [anon_sym_char] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_PIPE] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_async] = ACTIONS(2607), - [anon_sym_break] = ACTIONS(2607), - [anon_sym_const] = ACTIONS(2607), - [anon_sym_continue] = ACTIONS(2607), - [anon_sym_default] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(2607), - [anon_sym_fn] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2607), - [anon_sym_if] = ACTIONS(2607), - [anon_sym_impl] = ACTIONS(2607), - [anon_sym_let] = ACTIONS(2607), - [anon_sym_loop] = ACTIONS(2607), - [anon_sym_match] = ACTIONS(2607), - [anon_sym_mod] = ACTIONS(2607), - [anon_sym_pub] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_trait] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2607), - [anon_sym_union] = ACTIONS(2607), - [anon_sym_unsafe] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2607), - [anon_sym_while] = ACTIONS(2607), - [anon_sym_extern] = ACTIONS(2607), - [anon_sym_DOT_DOT] = ACTIONS(2605), - [anon_sym_yield] = ACTIONS(2607), - [anon_sym_move] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2607), - [sym_integer_literal] = ACTIONS(2605), - [aux_sym_string_literal_token1] = ACTIONS(2605), - [sym_char_literal] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2607), - [anon_sym_false] = ACTIONS(2607), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2607), - [sym_super] = ACTIONS(2607), - [sym_crate] = ACTIONS(2607), - [sym_metavariable] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(2605), - [sym_float_literal] = ACTIONS(2605), - [sym_block_comment] = ACTIONS(3), + [566] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), + [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_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2068), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2070), + [sym_super] = ACTIONS(2070), + [sym_crate] = ACTIONS(2070), + [sym_metavariable] = ACTIONS(2068), + [sym_raw_string_literal] = ACTIONS(2068), + [sym_float_literal] = ACTIONS(2068), }, - [690] = { - [ts_builtin_sym_end] = ACTIONS(2609), - [sym_identifier] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2609), - [anon_sym_macro_rules_BANG] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_RBRACE] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_u8] = ACTIONS(2611), - [anon_sym_i8] = ACTIONS(2611), - [anon_sym_u16] = ACTIONS(2611), - [anon_sym_i16] = ACTIONS(2611), - [anon_sym_u32] = ACTIONS(2611), - [anon_sym_i32] = ACTIONS(2611), - [anon_sym_u64] = ACTIONS(2611), - [anon_sym_i64] = ACTIONS(2611), - [anon_sym_u128] = ACTIONS(2611), - [anon_sym_i128] = ACTIONS(2611), - [anon_sym_isize] = ACTIONS(2611), - [anon_sym_usize] = ACTIONS(2611), - [anon_sym_f32] = ACTIONS(2611), - [anon_sym_f64] = ACTIONS(2611), - [anon_sym_bool] = ACTIONS(2611), - [anon_sym_str] = ACTIONS(2611), - [anon_sym_char] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_PIPE] = ACTIONS(2609), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_async] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_fn] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_impl] = ACTIONS(2611), - [anon_sym_let] = ACTIONS(2611), - [anon_sym_loop] = ACTIONS(2611), - [anon_sym_match] = ACTIONS(2611), - [anon_sym_mod] = ACTIONS(2611), - [anon_sym_pub] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_trait] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_unsafe] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym_DOT_DOT] = ACTIONS(2609), - [anon_sym_yield] = ACTIONS(2611), - [anon_sym_move] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [sym_integer_literal] = ACTIONS(2609), - [aux_sym_string_literal_token1] = ACTIONS(2609), - [sym_char_literal] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2611), - [anon_sym_false] = ACTIONS(2611), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2611), - [sym_super] = ACTIONS(2611), - [sym_crate] = ACTIONS(2611), - [sym_metavariable] = ACTIONS(2609), - [sym_raw_string_literal] = ACTIONS(2609), - [sym_float_literal] = ACTIONS(2609), - [sym_block_comment] = ACTIONS(3), + [567] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_macro_rules_BANG] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(890), + [anon_sym_i8] = ACTIONS(890), + [anon_sym_u16] = ACTIONS(890), + [anon_sym_i16] = ACTIONS(890), + [anon_sym_u32] = ACTIONS(890), + [anon_sym_i32] = ACTIONS(890), + [anon_sym_u64] = ACTIONS(890), + [anon_sym_i64] = ACTIONS(890), + [anon_sym_u128] = ACTIONS(890), + [anon_sym_i128] = ACTIONS(890), + [anon_sym_isize] = ACTIONS(890), + [anon_sym_usize] = ACTIONS(890), + [anon_sym_f32] = ACTIONS(890), + [anon_sym_f64] = ACTIONS(890), + [anon_sym_bool] = ACTIONS(890), + [anon_sym_str] = ACTIONS(890), + [anon_sym_char] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(888), + [anon_sym_COLON_COLON] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_AMP] = ACTIONS(888), + [anon_sym_POUND] = ACTIONS(888), + [anon_sym_LT] = ACTIONS(888), + [anon_sym_PIPE] = ACTIONS(888), + [anon_sym_SQUOTE] = ACTIONS(890), + [anon_sym_async] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_impl] = ACTIONS(890), + [anon_sym_let] = ACTIONS(890), + [anon_sym_loop] = ACTIONS(890), + [anon_sym_match] = ACTIONS(890), + [anon_sym_mod] = ACTIONS(890), + [anon_sym_pub] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_static] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_trait] = ACTIONS(890), + [anon_sym_type] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_unsafe] = ACTIONS(890), + [anon_sym_use] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym_DOT_DOT] = ACTIONS(888), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_move] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(888), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(890), + [anon_sym_false] = ACTIONS(890), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(888), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), }, - [691] = { - [ts_builtin_sym_end] = ACTIONS(2613), - [sym_identifier] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_macro_rules_BANG] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_u8] = ACTIONS(2615), - [anon_sym_i8] = ACTIONS(2615), - [anon_sym_u16] = ACTIONS(2615), - [anon_sym_i16] = ACTIONS(2615), - [anon_sym_u32] = ACTIONS(2615), - [anon_sym_i32] = ACTIONS(2615), - [anon_sym_u64] = ACTIONS(2615), - [anon_sym_i64] = ACTIONS(2615), - [anon_sym_u128] = ACTIONS(2615), - [anon_sym_i128] = ACTIONS(2615), - [anon_sym_isize] = ACTIONS(2615), - [anon_sym_usize] = ACTIONS(2615), - [anon_sym_f32] = ACTIONS(2615), - [anon_sym_f64] = ACTIONS(2615), - [anon_sym_bool] = ACTIONS(2615), - [anon_sym_str] = ACTIONS(2615), - [anon_sym_char] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_async] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_fn] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_impl] = ACTIONS(2615), - [anon_sym_let] = ACTIONS(2615), - [anon_sym_loop] = ACTIONS(2615), - [anon_sym_match] = ACTIONS(2615), - [anon_sym_mod] = ACTIONS(2615), - [anon_sym_pub] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_trait] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_unsafe] = ACTIONS(2615), - [anon_sym_use] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_yield] = ACTIONS(2615), - [anon_sym_move] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [sym_integer_literal] = ACTIONS(2613), - [aux_sym_string_literal_token1] = ACTIONS(2613), - [sym_char_literal] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2615), - [anon_sym_false] = ACTIONS(2615), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2615), - [sym_super] = ACTIONS(2615), - [sym_crate] = ACTIONS(2615), - [sym_metavariable] = ACTIONS(2613), - [sym_raw_string_literal] = ACTIONS(2613), - [sym_float_literal] = ACTIONS(2613), - [sym_block_comment] = ACTIONS(3), + [568] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), + [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_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2072), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2072), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2074), + [sym_super] = ACTIONS(2074), + [sym_crate] = ACTIONS(2074), + [sym_metavariable] = ACTIONS(2072), + [sym_raw_string_literal] = ACTIONS(2072), + [sym_float_literal] = ACTIONS(2072), }, - [692] = { - [ts_builtin_sym_end] = ACTIONS(2617), - [sym_identifier] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_macro_rules_BANG] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_u8] = ACTIONS(2619), - [anon_sym_i8] = ACTIONS(2619), - [anon_sym_u16] = ACTIONS(2619), - [anon_sym_i16] = ACTIONS(2619), - [anon_sym_u32] = ACTIONS(2619), - [anon_sym_i32] = ACTIONS(2619), - [anon_sym_u64] = ACTIONS(2619), - [anon_sym_i64] = ACTIONS(2619), - [anon_sym_u128] = ACTIONS(2619), - [anon_sym_i128] = ACTIONS(2619), - [anon_sym_isize] = ACTIONS(2619), - [anon_sym_usize] = ACTIONS(2619), - [anon_sym_f32] = ACTIONS(2619), - [anon_sym_f64] = ACTIONS(2619), - [anon_sym_bool] = ACTIONS(2619), - [anon_sym_str] = ACTIONS(2619), - [anon_sym_char] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_POUND] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_async] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_fn] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_impl] = ACTIONS(2619), - [anon_sym_let] = ACTIONS(2619), - [anon_sym_loop] = ACTIONS(2619), - [anon_sym_match] = ACTIONS(2619), - [anon_sym_mod] = ACTIONS(2619), - [anon_sym_pub] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_trait] = ACTIONS(2619), - [anon_sym_type] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_unsafe] = ACTIONS(2619), - [anon_sym_use] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_yield] = ACTIONS(2619), - [anon_sym_move] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [sym_integer_literal] = ACTIONS(2617), - [aux_sym_string_literal_token1] = ACTIONS(2617), - [sym_char_literal] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2619), - [anon_sym_false] = ACTIONS(2619), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2619), - [sym_super] = ACTIONS(2619), - [sym_crate] = ACTIONS(2619), - [sym_metavariable] = ACTIONS(2617), - [sym_raw_string_literal] = ACTIONS(2617), - [sym_float_literal] = ACTIONS(2617), - [sym_block_comment] = ACTIONS(3), + [569] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_macro_rules_BANG] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_u8] = ACTIONS(2078), + [anon_sym_i8] = ACTIONS(2078), + [anon_sym_u16] = ACTIONS(2078), + [anon_sym_i16] = ACTIONS(2078), + [anon_sym_u32] = ACTIONS(2078), + [anon_sym_i32] = ACTIONS(2078), + [anon_sym_u64] = ACTIONS(2078), + [anon_sym_i64] = ACTIONS(2078), + [anon_sym_u128] = ACTIONS(2078), + [anon_sym_i128] = ACTIONS(2078), + [anon_sym_isize] = ACTIONS(2078), + [anon_sym_usize] = ACTIONS(2078), + [anon_sym_f32] = ACTIONS(2078), + [anon_sym_f64] = ACTIONS(2078), + [anon_sym_bool] = ACTIONS(2078), + [anon_sym_str] = ACTIONS(2078), + [anon_sym_char] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2076), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2076), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2078), + [sym_super] = ACTIONS(2078), + [sym_crate] = ACTIONS(2078), + [sym_metavariable] = ACTIONS(2076), + [sym_raw_string_literal] = ACTIONS(2076), + [sym_float_literal] = ACTIONS(2076), }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(2621), - [sym_identifier] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_macro_rules_BANG] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_u8] = ACTIONS(2623), - [anon_sym_i8] = ACTIONS(2623), - [anon_sym_u16] = ACTIONS(2623), - [anon_sym_i16] = ACTIONS(2623), - [anon_sym_u32] = ACTIONS(2623), - [anon_sym_i32] = ACTIONS(2623), - [anon_sym_u64] = ACTIONS(2623), - [anon_sym_i64] = ACTIONS(2623), - [anon_sym_u128] = ACTIONS(2623), - [anon_sym_i128] = ACTIONS(2623), - [anon_sym_isize] = ACTIONS(2623), - [anon_sym_usize] = ACTIONS(2623), - [anon_sym_f32] = ACTIONS(2623), - [anon_sym_f64] = ACTIONS(2623), - [anon_sym_bool] = ACTIONS(2623), - [anon_sym_str] = ACTIONS(2623), - [anon_sym_char] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_async] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_fn] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_impl] = ACTIONS(2623), - [anon_sym_let] = ACTIONS(2623), - [anon_sym_loop] = ACTIONS(2623), - [anon_sym_match] = ACTIONS(2623), - [anon_sym_mod] = ACTIONS(2623), - [anon_sym_pub] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_trait] = ACTIONS(2623), - [anon_sym_type] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_unsafe] = ACTIONS(2623), - [anon_sym_use] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_yield] = ACTIONS(2623), - [anon_sym_move] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [sym_integer_literal] = ACTIONS(2621), - [aux_sym_string_literal_token1] = ACTIONS(2621), - [sym_char_literal] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2623), - [anon_sym_false] = ACTIONS(2623), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2623), - [sym_super] = ACTIONS(2623), - [sym_crate] = ACTIONS(2623), - [sym_metavariable] = ACTIONS(2621), - [sym_raw_string_literal] = ACTIONS(2621), - [sym_float_literal] = ACTIONS(2621), - [sym_block_comment] = ACTIONS(3), + [570] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_macro_rules_BANG] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2082), + [anon_sym_i8] = ACTIONS(2082), + [anon_sym_u16] = ACTIONS(2082), + [anon_sym_i16] = ACTIONS(2082), + [anon_sym_u32] = ACTIONS(2082), + [anon_sym_i32] = ACTIONS(2082), + [anon_sym_u64] = ACTIONS(2082), + [anon_sym_i64] = ACTIONS(2082), + [anon_sym_u128] = ACTIONS(2082), + [anon_sym_i128] = ACTIONS(2082), + [anon_sym_isize] = ACTIONS(2082), + [anon_sym_usize] = ACTIONS(2082), + [anon_sym_f32] = ACTIONS(2082), + [anon_sym_f64] = ACTIONS(2082), + [anon_sym_bool] = ACTIONS(2082), + [anon_sym_str] = ACTIONS(2082), + [anon_sym_char] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2080), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2080), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2082), + [sym_super] = ACTIONS(2082), + [sym_crate] = ACTIONS(2082), + [sym_metavariable] = ACTIONS(2080), + [sym_raw_string_literal] = ACTIONS(2080), + [sym_float_literal] = ACTIONS(2080), }, - [694] = { - [ts_builtin_sym_end] = ACTIONS(2625), - [sym_identifier] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_macro_rules_BANG] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_u8] = ACTIONS(2627), - [anon_sym_i8] = ACTIONS(2627), - [anon_sym_u16] = ACTIONS(2627), - [anon_sym_i16] = ACTIONS(2627), - [anon_sym_u32] = ACTIONS(2627), - [anon_sym_i32] = ACTIONS(2627), - [anon_sym_u64] = ACTIONS(2627), - [anon_sym_i64] = ACTIONS(2627), - [anon_sym_u128] = ACTIONS(2627), - [anon_sym_i128] = ACTIONS(2627), - [anon_sym_isize] = ACTIONS(2627), - [anon_sym_usize] = ACTIONS(2627), - [anon_sym_f32] = ACTIONS(2627), - [anon_sym_f64] = ACTIONS(2627), - [anon_sym_bool] = ACTIONS(2627), - [anon_sym_str] = ACTIONS(2627), - [anon_sym_char] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_POUND] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_async] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_fn] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_impl] = ACTIONS(2627), - [anon_sym_let] = ACTIONS(2627), - [anon_sym_loop] = ACTIONS(2627), - [anon_sym_match] = ACTIONS(2627), - [anon_sym_mod] = ACTIONS(2627), - [anon_sym_pub] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_trait] = ACTIONS(2627), - [anon_sym_type] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_unsafe] = ACTIONS(2627), - [anon_sym_use] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_yield] = ACTIONS(2627), - [anon_sym_move] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [sym_integer_literal] = ACTIONS(2625), - [aux_sym_string_literal_token1] = ACTIONS(2625), - [sym_char_literal] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2627), - [anon_sym_false] = ACTIONS(2627), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2627), - [sym_super] = ACTIONS(2627), - [sym_crate] = ACTIONS(2627), - [sym_metavariable] = ACTIONS(2625), - [sym_raw_string_literal] = ACTIONS(2625), - [sym_float_literal] = ACTIONS(2625), - [sym_block_comment] = ACTIONS(3), + [571] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_macro_rules_BANG] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_u8] = ACTIONS(2086), + [anon_sym_i8] = ACTIONS(2086), + [anon_sym_u16] = ACTIONS(2086), + [anon_sym_i16] = ACTIONS(2086), + [anon_sym_u32] = ACTIONS(2086), + [anon_sym_i32] = ACTIONS(2086), + [anon_sym_u64] = ACTIONS(2086), + [anon_sym_i64] = ACTIONS(2086), + [anon_sym_u128] = ACTIONS(2086), + [anon_sym_i128] = ACTIONS(2086), + [anon_sym_isize] = ACTIONS(2086), + [anon_sym_usize] = ACTIONS(2086), + [anon_sym_f32] = ACTIONS(2086), + [anon_sym_f64] = ACTIONS(2086), + [anon_sym_bool] = ACTIONS(2086), + [anon_sym_str] = ACTIONS(2086), + [anon_sym_char] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_COLON_COLON] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2084), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2086), + [sym_super] = ACTIONS(2086), + [sym_crate] = ACTIONS(2086), + [sym_metavariable] = ACTIONS(2084), + [sym_raw_string_literal] = ACTIONS(2084), + [sym_float_literal] = ACTIONS(2084), }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(2629), - [sym_identifier] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_macro_rules_BANG] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_RBRACE] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_u8] = ACTIONS(2631), - [anon_sym_i8] = ACTIONS(2631), - [anon_sym_u16] = ACTIONS(2631), - [anon_sym_i16] = ACTIONS(2631), - [anon_sym_u32] = ACTIONS(2631), - [anon_sym_i32] = ACTIONS(2631), - [anon_sym_u64] = ACTIONS(2631), - [anon_sym_i64] = ACTIONS(2631), - [anon_sym_u128] = ACTIONS(2631), - [anon_sym_i128] = ACTIONS(2631), - [anon_sym_isize] = ACTIONS(2631), - [anon_sym_usize] = ACTIONS(2631), - [anon_sym_f32] = ACTIONS(2631), - [anon_sym_f64] = ACTIONS(2631), - [anon_sym_bool] = ACTIONS(2631), - [anon_sym_str] = ACTIONS(2631), - [anon_sym_char] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_POUND] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_fn] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_impl] = ACTIONS(2631), - [anon_sym_let] = ACTIONS(2631), - [anon_sym_loop] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_mod] = ACTIONS(2631), - [anon_sym_pub] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_trait] = ACTIONS(2631), - [anon_sym_type] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_unsafe] = ACTIONS(2631), - [anon_sym_use] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_yield] = ACTIONS(2631), - [anon_sym_move] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [sym_integer_literal] = ACTIONS(2629), - [aux_sym_string_literal_token1] = ACTIONS(2629), - [sym_char_literal] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2631), - [anon_sym_false] = ACTIONS(2631), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2631), - [sym_super] = ACTIONS(2631), - [sym_crate] = ACTIONS(2631), - [sym_metavariable] = ACTIONS(2629), - [sym_raw_string_literal] = ACTIONS(2629), - [sym_float_literal] = ACTIONS(2629), - [sym_block_comment] = ACTIONS(3), + [572] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [ts_builtin_sym_end] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_macro_rules_BANG] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_u8] = ACTIONS(2090), + [anon_sym_i8] = ACTIONS(2090), + [anon_sym_u16] = ACTIONS(2090), + [anon_sym_i16] = ACTIONS(2090), + [anon_sym_u32] = ACTIONS(2090), + [anon_sym_i32] = ACTIONS(2090), + [anon_sym_u64] = ACTIONS(2090), + [anon_sym_i64] = ACTIONS(2090), + [anon_sym_u128] = ACTIONS(2090), + [anon_sym_i128] = ACTIONS(2090), + [anon_sym_isize] = ACTIONS(2090), + [anon_sym_usize] = ACTIONS(2090), + [anon_sym_f32] = ACTIONS(2090), + [anon_sym_f64] = ACTIONS(2090), + [anon_sym_bool] = ACTIONS(2090), + [anon_sym_str] = ACTIONS(2090), + [anon_sym_char] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_COLON_COLON] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_impl] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_mod] = ACTIONS(2090), + [anon_sym_pub] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_trait] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2090), + [anon_sym_unsafe] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_DOT_DOT] = ACTIONS(2088), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_move] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2088), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2090), + [anon_sym_false] = ACTIONS(2090), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_crate] = ACTIONS(2090), + [sym_metavariable] = ACTIONS(2088), + [sym_raw_string_literal] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), }, - [696] = { - [ts_builtin_sym_end] = ACTIONS(2633), - [sym_identifier] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_macro_rules_BANG] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_u8] = ACTIONS(2635), - [anon_sym_i8] = ACTIONS(2635), - [anon_sym_u16] = ACTIONS(2635), - [anon_sym_i16] = ACTIONS(2635), - [anon_sym_u32] = ACTIONS(2635), - [anon_sym_i32] = ACTIONS(2635), - [anon_sym_u64] = ACTIONS(2635), - [anon_sym_i64] = ACTIONS(2635), - [anon_sym_u128] = ACTIONS(2635), - [anon_sym_i128] = ACTIONS(2635), - [anon_sym_isize] = ACTIONS(2635), - [anon_sym_usize] = ACTIONS(2635), - [anon_sym_f32] = ACTIONS(2635), - [anon_sym_f64] = ACTIONS(2635), - [anon_sym_bool] = ACTIONS(2635), - [anon_sym_str] = ACTIONS(2635), - [anon_sym_char] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_async] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_impl] = ACTIONS(2635), - [anon_sym_let] = ACTIONS(2635), - [anon_sym_loop] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_mod] = ACTIONS(2635), - [anon_sym_pub] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_trait] = ACTIONS(2635), - [anon_sym_type] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_unsafe] = ACTIONS(2635), - [anon_sym_use] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_yield] = ACTIONS(2635), - [anon_sym_move] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [sym_integer_literal] = ACTIONS(2633), - [aux_sym_string_literal_token1] = ACTIONS(2633), - [sym_char_literal] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2635), - [sym_super] = ACTIONS(2635), - [sym_crate] = ACTIONS(2635), - [sym_metavariable] = ACTIONS(2633), - [sym_raw_string_literal] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2633), - [sym_block_comment] = ACTIONS(3), + [573] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_u8] = ACTIONS(2094), + [anon_sym_i8] = ACTIONS(2094), + [anon_sym_u16] = ACTIONS(2094), + [anon_sym_i16] = ACTIONS(2094), + [anon_sym_u32] = ACTIONS(2094), + [anon_sym_i32] = ACTIONS(2094), + [anon_sym_u64] = ACTIONS(2094), + [anon_sym_i64] = ACTIONS(2094), + [anon_sym_u128] = ACTIONS(2094), + [anon_sym_i128] = ACTIONS(2094), + [anon_sym_isize] = ACTIONS(2094), + [anon_sym_usize] = ACTIONS(2094), + [anon_sym_f32] = ACTIONS(2094), + [anon_sym_f64] = ACTIONS(2094), + [anon_sym_bool] = ACTIONS(2094), + [anon_sym_str] = ACTIONS(2094), + [anon_sym_char] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_COLON_COLON] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_async] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_fn] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_impl] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_mod] = ACTIONS(2094), + [anon_sym_pub] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(2094), + [anon_sym_trait] = ACTIONS(2094), + [anon_sym_type] = ACTIONS(2094), + [anon_sym_union] = ACTIONS(2094), + [anon_sym_unsafe] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_DOT_DOT] = ACTIONS(2092), + [anon_sym_yield] = ACTIONS(2094), + [anon_sym_move] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [sym_integer_literal] = ACTIONS(2092), + [aux_sym_string_literal_token1] = ACTIONS(2092), + [sym_char_literal] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2094), + [anon_sym_false] = ACTIONS(2094), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2094), + [sym_super] = ACTIONS(2094), + [sym_crate] = ACTIONS(2094), + [sym_metavariable] = ACTIONS(2092), + [sym_raw_string_literal] = ACTIONS(2092), + [sym_float_literal] = ACTIONS(2092), }, - [697] = { - [ts_builtin_sym_end] = ACTIONS(2637), - [sym_identifier] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2637), - [anon_sym_macro_rules_BANG] = ACTIONS(2637), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_u8] = ACTIONS(2639), - [anon_sym_i8] = ACTIONS(2639), - [anon_sym_u16] = ACTIONS(2639), - [anon_sym_i16] = ACTIONS(2639), - [anon_sym_u32] = ACTIONS(2639), - [anon_sym_i32] = ACTIONS(2639), - [anon_sym_u64] = ACTIONS(2639), - [anon_sym_i64] = ACTIONS(2639), - [anon_sym_u128] = ACTIONS(2639), - [anon_sym_i128] = ACTIONS(2639), - [anon_sym_isize] = ACTIONS(2639), - [anon_sym_usize] = ACTIONS(2639), - [anon_sym_f32] = ACTIONS(2639), - [anon_sym_f64] = ACTIONS(2639), - [anon_sym_bool] = ACTIONS(2639), - [anon_sym_str] = ACTIONS(2639), - [anon_sym_char] = ACTIONS(2639), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_COLON_COLON] = ACTIONS(2637), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_POUND] = ACTIONS(2637), - [anon_sym_LT] = ACTIONS(2637), - [anon_sym_PIPE] = ACTIONS(2637), - [anon_sym_SQUOTE] = ACTIONS(2639), - [anon_sym_async] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_fn] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_impl] = ACTIONS(2639), - [anon_sym_let] = ACTIONS(2639), - [anon_sym_loop] = ACTIONS(2639), - [anon_sym_match] = ACTIONS(2639), - [anon_sym_mod] = ACTIONS(2639), - [anon_sym_pub] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_trait] = ACTIONS(2639), - [anon_sym_type] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_unsafe] = ACTIONS(2639), - [anon_sym_use] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym_DOT_DOT] = ACTIONS(2637), - [anon_sym_yield] = ACTIONS(2639), - [anon_sym_move] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [sym_integer_literal] = ACTIONS(2637), - [aux_sym_string_literal_token1] = ACTIONS(2637), - [sym_char_literal] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2639), - [anon_sym_false] = ACTIONS(2639), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2639), - [sym_super] = ACTIONS(2639), - [sym_crate] = ACTIONS(2639), - [sym_metavariable] = ACTIONS(2637), - [sym_raw_string_literal] = ACTIONS(2637), - [sym_float_literal] = ACTIONS(2637), - [sym_block_comment] = ACTIONS(3), + [574] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_macro_rules_BANG] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_DOT_DOT] = ACTIONS(2096), + [anon_sym_yield] = ACTIONS(2098), + [anon_sym_move] = ACTIONS(2098), + [anon_sym_try] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2096), + [aux_sym_string_literal_token1] = ACTIONS(2096), + [sym_char_literal] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2096), + [sym_raw_string_literal] = ACTIONS(2096), + [sym_float_literal] = ACTIONS(2096), }, - [698] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_macro_rules_BANG] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_u8] = ACTIONS(2643), - [anon_sym_i8] = ACTIONS(2643), - [anon_sym_u16] = ACTIONS(2643), - [anon_sym_i16] = ACTIONS(2643), - [anon_sym_u32] = ACTIONS(2643), - [anon_sym_i32] = ACTIONS(2643), - [anon_sym_u64] = ACTIONS(2643), - [anon_sym_i64] = ACTIONS(2643), - [anon_sym_u128] = ACTIONS(2643), - [anon_sym_i128] = ACTIONS(2643), - [anon_sym_isize] = ACTIONS(2643), - [anon_sym_usize] = ACTIONS(2643), - [anon_sym_f32] = ACTIONS(2643), - [anon_sym_f64] = ACTIONS(2643), - [anon_sym_bool] = ACTIONS(2643), - [anon_sym_str] = ACTIONS(2643), - [anon_sym_char] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(2641), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2643), - [anon_sym_async] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_fn] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_impl] = ACTIONS(2643), - [anon_sym_let] = ACTIONS(2643), - [anon_sym_loop] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_mod] = ACTIONS(2643), - [anon_sym_pub] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_trait] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_unsafe] = ACTIONS(2643), - [anon_sym_use] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym_DOT_DOT] = ACTIONS(2641), - [anon_sym_yield] = ACTIONS(2643), - [anon_sym_move] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [sym_integer_literal] = ACTIONS(2641), - [aux_sym_string_literal_token1] = ACTIONS(2641), - [sym_char_literal] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2643), - [sym_super] = ACTIONS(2643), - [sym_crate] = ACTIONS(2643), - [sym_metavariable] = ACTIONS(2641), - [sym_raw_string_literal] = ACTIONS(2641), - [sym_float_literal] = ACTIONS(2641), - [sym_block_comment] = ACTIONS(3), + [575] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [ts_builtin_sym_end] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_macro_rules_BANG] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_u8] = ACTIONS(2102), + [anon_sym_i8] = ACTIONS(2102), + [anon_sym_u16] = ACTIONS(2102), + [anon_sym_i16] = ACTIONS(2102), + [anon_sym_u32] = ACTIONS(2102), + [anon_sym_i32] = ACTIONS(2102), + [anon_sym_u64] = ACTIONS(2102), + [anon_sym_i64] = ACTIONS(2102), + [anon_sym_u128] = ACTIONS(2102), + [anon_sym_i128] = ACTIONS(2102), + [anon_sym_isize] = ACTIONS(2102), + [anon_sym_usize] = ACTIONS(2102), + [anon_sym_f32] = ACTIONS(2102), + [anon_sym_f64] = ACTIONS(2102), + [anon_sym_bool] = ACTIONS(2102), + [anon_sym_str] = ACTIONS(2102), + [anon_sym_char] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_impl] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_mod] = ACTIONS(2102), + [anon_sym_pub] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_trait] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_unsafe] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_DOT_DOT] = ACTIONS(2100), + [anon_sym_yield] = ACTIONS(2102), + [anon_sym_move] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2102), + [sym_integer_literal] = ACTIONS(2100), + [aux_sym_string_literal_token1] = ACTIONS(2100), + [sym_char_literal] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2102), + [anon_sym_false] = ACTIONS(2102), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2102), + [sym_super] = ACTIONS(2102), + [sym_crate] = ACTIONS(2102), + [sym_metavariable] = ACTIONS(2100), + [sym_raw_string_literal] = ACTIONS(2100), + [sym_float_literal] = ACTIONS(2100), }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_macro_rules_BANG] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_u8] = ACTIONS(2647), - [anon_sym_i8] = ACTIONS(2647), - [anon_sym_u16] = ACTIONS(2647), - [anon_sym_i16] = ACTIONS(2647), - [anon_sym_u32] = ACTIONS(2647), - [anon_sym_i32] = ACTIONS(2647), - [anon_sym_u64] = ACTIONS(2647), - [anon_sym_i64] = ACTIONS(2647), - [anon_sym_u128] = ACTIONS(2647), - [anon_sym_i128] = ACTIONS(2647), - [anon_sym_isize] = ACTIONS(2647), - [anon_sym_usize] = ACTIONS(2647), - [anon_sym_f32] = ACTIONS(2647), - [anon_sym_f64] = ACTIONS(2647), - [anon_sym_bool] = ACTIONS(2647), - [anon_sym_str] = ACTIONS(2647), - [anon_sym_char] = ACTIONS(2647), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_POUND] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2647), - [anon_sym_async] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_fn] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_impl] = ACTIONS(2647), - [anon_sym_let] = ACTIONS(2647), - [anon_sym_loop] = ACTIONS(2647), - [anon_sym_match] = ACTIONS(2647), - [anon_sym_mod] = ACTIONS(2647), - [anon_sym_pub] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_trait] = ACTIONS(2647), - [anon_sym_type] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_unsafe] = ACTIONS(2647), - [anon_sym_use] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym_DOT_DOT] = ACTIONS(2645), - [anon_sym_yield] = ACTIONS(2647), - [anon_sym_move] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [sym_integer_literal] = ACTIONS(2645), - [aux_sym_string_literal_token1] = ACTIONS(2645), - [sym_char_literal] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2647), - [anon_sym_false] = ACTIONS(2647), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2647), - [sym_super] = ACTIONS(2647), - [sym_crate] = ACTIONS(2647), - [sym_metavariable] = ACTIONS(2645), - [sym_raw_string_literal] = ACTIONS(2645), - [sym_float_literal] = ACTIONS(2645), - [sym_block_comment] = ACTIONS(3), + [576] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [ts_builtin_sym_end] = ACTIONS(2104), + [sym_identifier] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_macro_rules_BANG] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_u8] = ACTIONS(2106), + [anon_sym_i8] = ACTIONS(2106), + [anon_sym_u16] = ACTIONS(2106), + [anon_sym_i16] = ACTIONS(2106), + [anon_sym_u32] = ACTIONS(2106), + [anon_sym_i32] = ACTIONS(2106), + [anon_sym_u64] = ACTIONS(2106), + [anon_sym_i64] = ACTIONS(2106), + [anon_sym_u128] = ACTIONS(2106), + [anon_sym_i128] = ACTIONS(2106), + [anon_sym_isize] = ACTIONS(2106), + [anon_sym_usize] = ACTIONS(2106), + [anon_sym_f32] = ACTIONS(2106), + [anon_sym_f64] = ACTIONS(2106), + [anon_sym_bool] = ACTIONS(2106), + [anon_sym_str] = ACTIONS(2106), + [anon_sym_char] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_impl] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_mod] = ACTIONS(2106), + [anon_sym_pub] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(2106), + [anon_sym_trait] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2106), + [anon_sym_union] = ACTIONS(2106), + [anon_sym_unsafe] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_DOT_DOT] = ACTIONS(2104), + [anon_sym_yield] = ACTIONS(2106), + [anon_sym_move] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2104), + [aux_sym_string_literal_token1] = ACTIONS(2104), + [sym_char_literal] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2106), + [sym_super] = ACTIONS(2106), + [sym_crate] = ACTIONS(2106), + [sym_metavariable] = ACTIONS(2104), + [sym_raw_string_literal] = ACTIONS(2104), + [sym_float_literal] = ACTIONS(2104), }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_macro_rules_BANG] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_u8] = ACTIONS(2651), - [anon_sym_i8] = ACTIONS(2651), - [anon_sym_u16] = ACTIONS(2651), - [anon_sym_i16] = ACTIONS(2651), - [anon_sym_u32] = ACTIONS(2651), - [anon_sym_i32] = ACTIONS(2651), - [anon_sym_u64] = ACTIONS(2651), - [anon_sym_i64] = ACTIONS(2651), - [anon_sym_u128] = ACTIONS(2651), - [anon_sym_i128] = ACTIONS(2651), - [anon_sym_isize] = ACTIONS(2651), - [anon_sym_usize] = ACTIONS(2651), - [anon_sym_f32] = ACTIONS(2651), - [anon_sym_f64] = ACTIONS(2651), - [anon_sym_bool] = ACTIONS(2651), - [anon_sym_str] = ACTIONS(2651), - [anon_sym_char] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_POUND] = ACTIONS(2649), - [anon_sym_LT] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2651), - [anon_sym_async] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_fn] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_impl] = ACTIONS(2651), - [anon_sym_let] = ACTIONS(2651), - [anon_sym_loop] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_mod] = ACTIONS(2651), - [anon_sym_pub] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_trait] = ACTIONS(2651), - [anon_sym_type] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(2651), - [anon_sym_use] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym_DOT_DOT] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_move] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [sym_integer_literal] = ACTIONS(2649), - [aux_sym_string_literal_token1] = ACTIONS(2649), - [sym_char_literal] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2651), - [anon_sym_false] = ACTIONS(2651), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2651), - [sym_super] = ACTIONS(2651), - [sym_crate] = ACTIONS(2651), - [sym_metavariable] = ACTIONS(2649), - [sym_raw_string_literal] = ACTIONS(2649), - [sym_float_literal] = ACTIONS(2649), - [sym_block_comment] = ACTIONS(3), + [577] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), + [ts_builtin_sym_end] = ACTIONS(2108), + [sym_identifier] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_macro_rules_BANG] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_u8] = ACTIONS(2110), + [anon_sym_i8] = ACTIONS(2110), + [anon_sym_u16] = ACTIONS(2110), + [anon_sym_i16] = ACTIONS(2110), + [anon_sym_u32] = ACTIONS(2110), + [anon_sym_i32] = ACTIONS(2110), + [anon_sym_u64] = ACTIONS(2110), + [anon_sym_i64] = ACTIONS(2110), + [anon_sym_u128] = ACTIONS(2110), + [anon_sym_i128] = ACTIONS(2110), + [anon_sym_isize] = ACTIONS(2110), + [anon_sym_usize] = ACTIONS(2110), + [anon_sym_f32] = ACTIONS(2110), + [anon_sym_f64] = ACTIONS(2110), + [anon_sym_bool] = ACTIONS(2110), + [anon_sym_str] = ACTIONS(2110), + [anon_sym_char] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_fn] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_mod] = ACTIONS(2110), + [anon_sym_pub] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_struct] = ACTIONS(2110), + [anon_sym_trait] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_union] = ACTIONS(2110), + [anon_sym_unsafe] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_DOT_DOT] = ACTIONS(2108), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_move] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [sym_integer_literal] = ACTIONS(2108), + [aux_sym_string_literal_token1] = ACTIONS(2108), + [sym_char_literal] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_crate] = ACTIONS(2110), + [sym_metavariable] = ACTIONS(2108), + [sym_raw_string_literal] = ACTIONS(2108), + [sym_float_literal] = ACTIONS(2108), }, - [701] = { - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_macro_rules_BANG] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_u8] = ACTIONS(2655), - [anon_sym_i8] = ACTIONS(2655), - [anon_sym_u16] = ACTIONS(2655), - [anon_sym_i16] = ACTIONS(2655), - [anon_sym_u32] = ACTIONS(2655), - [anon_sym_i32] = ACTIONS(2655), - [anon_sym_u64] = ACTIONS(2655), - [anon_sym_i64] = ACTIONS(2655), - [anon_sym_u128] = ACTIONS(2655), - [anon_sym_i128] = ACTIONS(2655), - [anon_sym_isize] = ACTIONS(2655), - [anon_sym_usize] = ACTIONS(2655), - [anon_sym_f32] = ACTIONS(2655), - [anon_sym_f64] = ACTIONS(2655), - [anon_sym_bool] = ACTIONS(2655), - [anon_sym_str] = ACTIONS(2655), - [anon_sym_char] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_POUND] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_impl] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2655), - [anon_sym_loop] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_mod] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_trait] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_use] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_yield] = ACTIONS(2655), - [anon_sym_move] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [aux_sym_string_literal_token1] = ACTIONS(2653), - [sym_char_literal] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2655), - [anon_sym_false] = ACTIONS(2655), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2655), - [sym_super] = ACTIONS(2655), - [sym_crate] = ACTIONS(2655), - [sym_metavariable] = ACTIONS(2653), - [sym_raw_string_literal] = ACTIONS(2653), - [sym_float_literal] = ACTIONS(2653), - [sym_block_comment] = ACTIONS(3), + [578] = { + [sym_empty_statement] = STATE(1426), + [sym_macro_definition] = STATE(1426), + [sym_attribute_item] = STATE(1426), + [sym_inner_attribute_item] = STATE(1426), + [sym_mod_item] = STATE(1426), + [sym_foreign_mod_item] = STATE(1426), + [sym_struct_item] = STATE(1426), + [sym_union_item] = STATE(1426), + [sym_enum_item] = STATE(1426), + [sym_extern_crate_declaration] = STATE(1426), + [sym_const_item] = STATE(1426), + [sym_static_item] = STATE(1426), + [sym_type_item] = STATE(1426), + [sym_function_item] = STATE(1426), + [sym_function_signature_item] = STATE(1426), + [sym_function_modifiers] = STATE(3492), + [sym_impl_item] = STATE(1426), + [sym_trait_item] = STATE(1426), + [sym_associated_type] = STATE(1426), + [sym_let_declaration] = STATE(1426), + [sym_use_declaration] = STATE(1426), + [sym_extern_modifier] = STATE(2121), + [sym_visibility_modifier] = STATE(1931), + [sym_bracketed_type] = STATE(3236), + [sym_generic_type_with_turbofish] = STATE(3261), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3002), + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), + [aux_sym_declaration_list_repeat1] = STATE(589), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_macro_rules_BANG] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u128] = ACTIONS(1723), + [anon_sym_i128] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_str] = ACTIONS(1723), + [anon_sym_char] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1731), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1735), + [anon_sym_impl] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_mod] = ACTIONS(1741), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_trait] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1751), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_crate] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1763), }, - [702] = { - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_macro_rules_BANG] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_u8] = ACTIONS(2659), - [anon_sym_i8] = ACTIONS(2659), - [anon_sym_u16] = ACTIONS(2659), - [anon_sym_i16] = ACTIONS(2659), - [anon_sym_u32] = ACTIONS(2659), - [anon_sym_i32] = ACTIONS(2659), - [anon_sym_u64] = ACTIONS(2659), - [anon_sym_i64] = ACTIONS(2659), - [anon_sym_u128] = ACTIONS(2659), - [anon_sym_i128] = ACTIONS(2659), - [anon_sym_isize] = ACTIONS(2659), - [anon_sym_usize] = ACTIONS(2659), - [anon_sym_f32] = ACTIONS(2659), - [anon_sym_f64] = ACTIONS(2659), - [anon_sym_bool] = ACTIONS(2659), - [anon_sym_str] = ACTIONS(2659), - [anon_sym_char] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_POUND] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_async] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_impl] = ACTIONS(2659), - [anon_sym_let] = ACTIONS(2659), - [anon_sym_loop] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_mod] = ACTIONS(2659), - [anon_sym_pub] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_trait] = ACTIONS(2659), - [anon_sym_type] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_use] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_yield] = ACTIONS(2659), - [anon_sym_move] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [aux_sym_string_literal_token1] = ACTIONS(2657), - [sym_char_literal] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2659), - [sym_super] = ACTIONS(2659), - [sym_crate] = ACTIONS(2659), - [sym_metavariable] = ACTIONS(2657), - [sym_raw_string_literal] = ACTIONS(2657), - [sym_float_literal] = ACTIONS(2657), - [sym_block_comment] = ACTIONS(3), + [579] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_macro_rules_BANG] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_u8] = ACTIONS(2116), + [anon_sym_i8] = ACTIONS(2116), + [anon_sym_u16] = ACTIONS(2116), + [anon_sym_i16] = ACTIONS(2116), + [anon_sym_u32] = ACTIONS(2116), + [anon_sym_i32] = ACTIONS(2116), + [anon_sym_u64] = ACTIONS(2116), + [anon_sym_i64] = ACTIONS(2116), + [anon_sym_u128] = ACTIONS(2116), + [anon_sym_i128] = ACTIONS(2116), + [anon_sym_isize] = ACTIONS(2116), + [anon_sym_usize] = ACTIONS(2116), + [anon_sym_f32] = ACTIONS(2116), + [anon_sym_f64] = ACTIONS(2116), + [anon_sym_bool] = ACTIONS(2116), + [anon_sym_str] = ACTIONS(2116), + [anon_sym_char] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_fn] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_impl] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_loop] = ACTIONS(2116), + [anon_sym_match] = ACTIONS(2116), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_trait] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_unsafe] = ACTIONS(2116), + [anon_sym_use] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym_DOT_DOT] = ACTIONS(2114), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_move] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [sym_integer_literal] = ACTIONS(2114), + [aux_sym_string_literal_token1] = ACTIONS(2114), + [sym_char_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2116), + [anon_sym_false] = ACTIONS(2116), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_crate] = ACTIONS(2116), + [sym_metavariable] = ACTIONS(2114), + [sym_raw_string_literal] = ACTIONS(2114), + [sym_float_literal] = ACTIONS(2114), }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_macro_rules_BANG] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_u8] = ACTIONS(2663), - [anon_sym_i8] = ACTIONS(2663), - [anon_sym_u16] = ACTIONS(2663), - [anon_sym_i16] = ACTIONS(2663), - [anon_sym_u32] = ACTIONS(2663), - [anon_sym_i32] = ACTIONS(2663), - [anon_sym_u64] = ACTIONS(2663), - [anon_sym_i64] = ACTIONS(2663), - [anon_sym_u128] = ACTIONS(2663), - [anon_sym_i128] = ACTIONS(2663), - [anon_sym_isize] = ACTIONS(2663), - [anon_sym_usize] = ACTIONS(2663), - [anon_sym_f32] = ACTIONS(2663), - [anon_sym_f64] = ACTIONS(2663), - [anon_sym_bool] = ACTIONS(2663), - [anon_sym_str] = ACTIONS(2663), - [anon_sym_char] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_POUND] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_async] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_impl] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_loop] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_mod] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_trait] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_use] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_yield] = ACTIONS(2663), - [anon_sym_move] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [sym_integer_literal] = ACTIONS(2661), - [aux_sym_string_literal_token1] = ACTIONS(2661), - [sym_char_literal] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2663), - [sym_super] = ACTIONS(2663), - [sym_crate] = ACTIONS(2663), - [sym_metavariable] = ACTIONS(2661), - [sym_raw_string_literal] = ACTIONS(2661), - [sym_float_literal] = ACTIONS(2661), - [sym_block_comment] = ACTIONS(3), + [580] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_macro_rules_BANG] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_u8] = ACTIONS(2120), + [anon_sym_i8] = ACTIONS(2120), + [anon_sym_u16] = ACTIONS(2120), + [anon_sym_i16] = ACTIONS(2120), + [anon_sym_u32] = ACTIONS(2120), + [anon_sym_i32] = ACTIONS(2120), + [anon_sym_u64] = ACTIONS(2120), + [anon_sym_i64] = ACTIONS(2120), + [anon_sym_u128] = ACTIONS(2120), + [anon_sym_i128] = ACTIONS(2120), + [anon_sym_isize] = ACTIONS(2120), + [anon_sym_usize] = ACTIONS(2120), + [anon_sym_f32] = ACTIONS(2120), + [anon_sym_f64] = ACTIONS(2120), + [anon_sym_bool] = ACTIONS(2120), + [anon_sym_str] = ACTIONS(2120), + [anon_sym_char] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_fn] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_impl] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_mod] = ACTIONS(2120), + [anon_sym_pub] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_unsafe] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_move] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [sym_integer_literal] = ACTIONS(2118), + [aux_sym_string_literal_token1] = ACTIONS(2118), + [sym_char_literal] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_crate] = ACTIONS(2120), + [sym_metavariable] = ACTIONS(2118), + [sym_raw_string_literal] = ACTIONS(2118), + [sym_float_literal] = ACTIONS(2118), }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_macro_rules_BANG] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_u8] = ACTIONS(2667), - [anon_sym_i8] = ACTIONS(2667), - [anon_sym_u16] = ACTIONS(2667), - [anon_sym_i16] = ACTIONS(2667), - [anon_sym_u32] = ACTIONS(2667), - [anon_sym_i32] = ACTIONS(2667), - [anon_sym_u64] = ACTIONS(2667), - [anon_sym_i64] = ACTIONS(2667), - [anon_sym_u128] = ACTIONS(2667), - [anon_sym_i128] = ACTIONS(2667), - [anon_sym_isize] = ACTIONS(2667), - [anon_sym_usize] = ACTIONS(2667), - [anon_sym_f32] = ACTIONS(2667), - [anon_sym_f64] = ACTIONS(2667), - [anon_sym_bool] = ACTIONS(2667), - [anon_sym_str] = ACTIONS(2667), - [anon_sym_char] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_POUND] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_async] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_impl] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_loop] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_mod] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_trait] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym_DOT_DOT] = ACTIONS(2665), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_move] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [aux_sym_string_literal_token1] = ACTIONS(2665), - [sym_char_literal] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2667), - [sym_super] = ACTIONS(2667), - [sym_crate] = ACTIONS(2667), - [sym_metavariable] = ACTIONS(2665), - [sym_raw_string_literal] = ACTIONS(2665), - [sym_float_literal] = ACTIONS(2665), - [sym_block_comment] = ACTIONS(3), + [581] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_macro_rules_BANG] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_u8] = ACTIONS(2124), + [anon_sym_i8] = ACTIONS(2124), + [anon_sym_u16] = ACTIONS(2124), + [anon_sym_i16] = ACTIONS(2124), + [anon_sym_u32] = ACTIONS(2124), + [anon_sym_i32] = ACTIONS(2124), + [anon_sym_u64] = ACTIONS(2124), + [anon_sym_i64] = ACTIONS(2124), + [anon_sym_u128] = ACTIONS(2124), + [anon_sym_i128] = ACTIONS(2124), + [anon_sym_isize] = ACTIONS(2124), + [anon_sym_usize] = ACTIONS(2124), + [anon_sym_f32] = ACTIONS(2124), + [anon_sym_f64] = ACTIONS(2124), + [anon_sym_bool] = ACTIONS(2124), + [anon_sym_str] = ACTIONS(2124), + [anon_sym_char] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_fn] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_impl] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_loop] = ACTIONS(2124), + [anon_sym_match] = ACTIONS(2124), + [anon_sym_mod] = ACTIONS(2124), + [anon_sym_pub] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_trait] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_unsafe] = ACTIONS(2124), + [anon_sym_use] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_move] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [sym_integer_literal] = ACTIONS(2122), + [aux_sym_string_literal_token1] = ACTIONS(2122), + [sym_char_literal] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_crate] = ACTIONS(2124), + [sym_metavariable] = ACTIONS(2122), + [sym_raw_string_literal] = ACTIONS(2122), + [sym_float_literal] = ACTIONS(2122), }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_macro_rules_BANG] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_u8] = ACTIONS(2671), - [anon_sym_i8] = ACTIONS(2671), - [anon_sym_u16] = ACTIONS(2671), - [anon_sym_i16] = ACTIONS(2671), - [anon_sym_u32] = ACTIONS(2671), - [anon_sym_i32] = ACTIONS(2671), - [anon_sym_u64] = ACTIONS(2671), - [anon_sym_i64] = ACTIONS(2671), - [anon_sym_u128] = ACTIONS(2671), - [anon_sym_i128] = ACTIONS(2671), - [anon_sym_isize] = ACTIONS(2671), - [anon_sym_usize] = ACTIONS(2671), - [anon_sym_f32] = ACTIONS(2671), - [anon_sym_f64] = ACTIONS(2671), - [anon_sym_bool] = ACTIONS(2671), - [anon_sym_str] = ACTIONS(2671), - [anon_sym_char] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_impl] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2671), - [anon_sym_loop] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_mod] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_trait] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_yield] = ACTIONS(2671), - [anon_sym_move] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [sym_integer_literal] = ACTIONS(2669), - [aux_sym_string_literal_token1] = ACTIONS(2669), - [sym_char_literal] = ACTIONS(2669), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2671), - [sym_super] = ACTIONS(2671), - [sym_crate] = ACTIONS(2671), - [sym_metavariable] = ACTIONS(2669), - [sym_raw_string_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_block_comment] = ACTIONS(3), + [582] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), + [ts_builtin_sym_end] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2128), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_macro_rules_BANG] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_u8] = ACTIONS(2128), + [anon_sym_i8] = ACTIONS(2128), + [anon_sym_u16] = ACTIONS(2128), + [anon_sym_i16] = ACTIONS(2128), + [anon_sym_u32] = ACTIONS(2128), + [anon_sym_i32] = ACTIONS(2128), + [anon_sym_u64] = ACTIONS(2128), + [anon_sym_i64] = ACTIONS(2128), + [anon_sym_u128] = ACTIONS(2128), + [anon_sym_i128] = ACTIONS(2128), + [anon_sym_isize] = ACTIONS(2128), + [anon_sym_usize] = ACTIONS(2128), + [anon_sym_f32] = ACTIONS(2128), + [anon_sym_f64] = ACTIONS(2128), + [anon_sym_bool] = ACTIONS(2128), + [anon_sym_str] = ACTIONS(2128), + [anon_sym_char] = ACTIONS(2128), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_POUND] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2128), + [anon_sym_async] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_default] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2128), + [anon_sym_fn] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_impl] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2128), + [anon_sym_loop] = ACTIONS(2128), + [anon_sym_match] = ACTIONS(2128), + [anon_sym_mod] = ACTIONS(2128), + [anon_sym_pub] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_static] = ACTIONS(2128), + [anon_sym_struct] = ACTIONS(2128), + [anon_sym_trait] = ACTIONS(2128), + [anon_sym_type] = ACTIONS(2128), + [anon_sym_union] = ACTIONS(2128), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2128), + [anon_sym_move] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2128), + [sym_integer_literal] = ACTIONS(2126), + [aux_sym_string_literal_token1] = ACTIONS(2126), + [sym_char_literal] = ACTIONS(2126), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2128), + [sym_super] = ACTIONS(2128), + [sym_crate] = ACTIONS(2128), + [sym_metavariable] = ACTIONS(2126), + [sym_raw_string_literal] = ACTIONS(2126), + [sym_float_literal] = ACTIONS(2126), }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(2673), - [sym_identifier] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_macro_rules_BANG] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_u8] = ACTIONS(2675), - [anon_sym_i8] = ACTIONS(2675), - [anon_sym_u16] = ACTIONS(2675), - [anon_sym_i16] = ACTIONS(2675), - [anon_sym_u32] = ACTIONS(2675), - [anon_sym_i32] = ACTIONS(2675), - [anon_sym_u64] = ACTIONS(2675), - [anon_sym_i64] = ACTIONS(2675), - [anon_sym_u128] = ACTIONS(2675), - [anon_sym_i128] = ACTIONS(2675), - [anon_sym_isize] = ACTIONS(2675), - [anon_sym_usize] = ACTIONS(2675), - [anon_sym_f32] = ACTIONS(2675), - [anon_sym_f64] = ACTIONS(2675), - [anon_sym_bool] = ACTIONS(2675), - [anon_sym_str] = ACTIONS(2675), - [anon_sym_char] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_POUND] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_async] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_fn] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_impl] = ACTIONS(2675), - [anon_sym_let] = ACTIONS(2675), - [anon_sym_loop] = ACTIONS(2675), - [anon_sym_match] = ACTIONS(2675), - [anon_sym_mod] = ACTIONS(2675), - [anon_sym_pub] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_trait] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_unsafe] = ACTIONS(2675), - [anon_sym_use] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym_DOT_DOT] = ACTIONS(2673), - [anon_sym_yield] = ACTIONS(2675), - [anon_sym_move] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [sym_integer_literal] = ACTIONS(2673), - [aux_sym_string_literal_token1] = ACTIONS(2673), - [sym_char_literal] = ACTIONS(2673), - [anon_sym_true] = ACTIONS(2675), - [anon_sym_false] = ACTIONS(2675), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2675), - [sym_super] = ACTIONS(2675), - [sym_crate] = ACTIONS(2675), - [sym_metavariable] = ACTIONS(2673), - [sym_raw_string_literal] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), - [sym_block_comment] = ACTIONS(3), + [583] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_macro_rules_BANG] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_u8] = ACTIONS(2132), + [anon_sym_i8] = ACTIONS(2132), + [anon_sym_u16] = ACTIONS(2132), + [anon_sym_i16] = ACTIONS(2132), + [anon_sym_u32] = ACTIONS(2132), + [anon_sym_i32] = ACTIONS(2132), + [anon_sym_u64] = ACTIONS(2132), + [anon_sym_i64] = ACTIONS(2132), + [anon_sym_u128] = ACTIONS(2132), + [anon_sym_i128] = ACTIONS(2132), + [anon_sym_isize] = ACTIONS(2132), + [anon_sym_usize] = ACTIONS(2132), + [anon_sym_f32] = ACTIONS(2132), + [anon_sym_f64] = ACTIONS(2132), + [anon_sym_bool] = ACTIONS(2132), + [anon_sym_str] = ACTIONS(2132), + [anon_sym_char] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_async] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_fn] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_impl] = ACTIONS(2132), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_loop] = ACTIONS(2132), + [anon_sym_match] = ACTIONS(2132), + [anon_sym_mod] = ACTIONS(2132), + [anon_sym_pub] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_trait] = ACTIONS(2132), + [anon_sym_type] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_unsafe] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2130), + [anon_sym_yield] = ACTIONS(2132), + [anon_sym_move] = ACTIONS(2132), + [anon_sym_try] = ACTIONS(2132), + [sym_integer_literal] = ACTIONS(2130), + [aux_sym_string_literal_token1] = ACTIONS(2130), + [sym_char_literal] = ACTIONS(2130), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_crate] = ACTIONS(2132), + [sym_metavariable] = ACTIONS(2130), + [sym_raw_string_literal] = ACTIONS(2130), + [sym_float_literal] = ACTIONS(2130), }, - [707] = { - [ts_builtin_sym_end] = ACTIONS(2677), - [sym_identifier] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_macro_rules_BANG] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_u8] = ACTIONS(2679), - [anon_sym_i8] = ACTIONS(2679), - [anon_sym_u16] = ACTIONS(2679), - [anon_sym_i16] = ACTIONS(2679), - [anon_sym_u32] = ACTIONS(2679), - [anon_sym_i32] = ACTIONS(2679), - [anon_sym_u64] = ACTIONS(2679), - [anon_sym_i64] = ACTIONS(2679), - [anon_sym_u128] = ACTIONS(2679), - [anon_sym_i128] = ACTIONS(2679), - [anon_sym_isize] = ACTIONS(2679), - [anon_sym_usize] = ACTIONS(2679), - [anon_sym_f32] = ACTIONS(2679), - [anon_sym_f64] = ACTIONS(2679), - [anon_sym_bool] = ACTIONS(2679), - [anon_sym_str] = ACTIONS(2679), - [anon_sym_char] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_POUND] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_async] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_fn] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_impl] = ACTIONS(2679), - [anon_sym_let] = ACTIONS(2679), - [anon_sym_loop] = ACTIONS(2679), - [anon_sym_match] = ACTIONS(2679), - [anon_sym_mod] = ACTIONS(2679), - [anon_sym_pub] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_trait] = ACTIONS(2679), - [anon_sym_type] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_unsafe] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_DOT_DOT] = ACTIONS(2677), - [anon_sym_yield] = ACTIONS(2679), - [anon_sym_move] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [sym_integer_literal] = ACTIONS(2677), - [aux_sym_string_literal_token1] = ACTIONS(2677), - [sym_char_literal] = ACTIONS(2677), - [anon_sym_true] = ACTIONS(2679), - [anon_sym_false] = ACTIONS(2679), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2679), - [sym_super] = ACTIONS(2679), - [sym_crate] = ACTIONS(2679), - [sym_metavariable] = ACTIONS(2677), - [sym_raw_string_literal] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), - [sym_block_comment] = ACTIONS(3), + [584] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_macro_rules_BANG] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_u8] = ACTIONS(2136), + [anon_sym_i8] = ACTIONS(2136), + [anon_sym_u16] = ACTIONS(2136), + [anon_sym_i16] = ACTIONS(2136), + [anon_sym_u32] = ACTIONS(2136), + [anon_sym_i32] = ACTIONS(2136), + [anon_sym_u64] = ACTIONS(2136), + [anon_sym_i64] = ACTIONS(2136), + [anon_sym_u128] = ACTIONS(2136), + [anon_sym_i128] = ACTIONS(2136), + [anon_sym_isize] = ACTIONS(2136), + [anon_sym_usize] = ACTIONS(2136), + [anon_sym_f32] = ACTIONS(2136), + [anon_sym_f64] = ACTIONS(2136), + [anon_sym_bool] = ACTIONS(2136), + [anon_sym_str] = ACTIONS(2136), + [anon_sym_char] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_async] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_fn] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_impl] = ACTIONS(2136), + [anon_sym_let] = ACTIONS(2136), + [anon_sym_loop] = ACTIONS(2136), + [anon_sym_match] = ACTIONS(2136), + [anon_sym_mod] = ACTIONS(2136), + [anon_sym_pub] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_trait] = ACTIONS(2136), + [anon_sym_type] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_unsafe] = ACTIONS(2136), + [anon_sym_use] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2136), + [anon_sym_move] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [sym_integer_literal] = ACTIONS(2134), + [aux_sym_string_literal_token1] = ACTIONS(2134), + [sym_char_literal] = ACTIONS(2134), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2136), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2134), + [sym_raw_string_literal] = ACTIONS(2134), + [sym_float_literal] = ACTIONS(2134), }, - [708] = { - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_macro_rules_BANG] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_u8] = ACTIONS(2683), - [anon_sym_i8] = ACTIONS(2683), - [anon_sym_u16] = ACTIONS(2683), - [anon_sym_i16] = ACTIONS(2683), - [anon_sym_u32] = ACTIONS(2683), - [anon_sym_i32] = ACTIONS(2683), - [anon_sym_u64] = ACTIONS(2683), - [anon_sym_i64] = ACTIONS(2683), - [anon_sym_u128] = ACTIONS(2683), - [anon_sym_i128] = ACTIONS(2683), - [anon_sym_isize] = ACTIONS(2683), - [anon_sym_usize] = ACTIONS(2683), - [anon_sym_f32] = ACTIONS(2683), - [anon_sym_f64] = ACTIONS(2683), - [anon_sym_bool] = ACTIONS(2683), - [anon_sym_str] = ACTIONS(2683), - [anon_sym_char] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_fn] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_impl] = ACTIONS(2683), - [anon_sym_let] = ACTIONS(2683), - [anon_sym_loop] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2683), - [anon_sym_mod] = ACTIONS(2683), - [anon_sym_pub] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_trait] = ACTIONS(2683), - [anon_sym_type] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_unsafe] = ACTIONS(2683), - [anon_sym_use] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_yield] = ACTIONS(2683), - [anon_sym_move] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2681), - [aux_sym_string_literal_token1] = ACTIONS(2681), - [sym_char_literal] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2683), - [anon_sym_false] = ACTIONS(2683), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2683), - [sym_super] = ACTIONS(2683), - [sym_crate] = ACTIONS(2683), - [sym_metavariable] = ACTIONS(2681), - [sym_raw_string_literal] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), - [sym_block_comment] = ACTIONS(3), + [585] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), + [ts_builtin_sym_end] = ACTIONS(2138), + [sym_identifier] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_macro_rules_BANG] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_u8] = ACTIONS(2140), + [anon_sym_i8] = ACTIONS(2140), + [anon_sym_u16] = ACTIONS(2140), + [anon_sym_i16] = ACTIONS(2140), + [anon_sym_u32] = ACTIONS(2140), + [anon_sym_i32] = ACTIONS(2140), + [anon_sym_u64] = ACTIONS(2140), + [anon_sym_i64] = ACTIONS(2140), + [anon_sym_u128] = ACTIONS(2140), + [anon_sym_i128] = ACTIONS(2140), + [anon_sym_isize] = ACTIONS(2140), + [anon_sym_usize] = ACTIONS(2140), + [anon_sym_f32] = ACTIONS(2140), + [anon_sym_f64] = ACTIONS(2140), + [anon_sym_bool] = ACTIONS(2140), + [anon_sym_str] = ACTIONS(2140), + [anon_sym_char] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_POUND] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2140), + [anon_sym_async] = ACTIONS(2140), + [anon_sym_break] = ACTIONS(2140), + [anon_sym_const] = ACTIONS(2140), + [anon_sym_continue] = ACTIONS(2140), + [anon_sym_default] = ACTIONS(2140), + [anon_sym_enum] = ACTIONS(2140), + [anon_sym_fn] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_impl] = ACTIONS(2140), + [anon_sym_let] = ACTIONS(2140), + [anon_sym_loop] = ACTIONS(2140), + [anon_sym_match] = ACTIONS(2140), + [anon_sym_mod] = ACTIONS(2140), + [anon_sym_pub] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_static] = ACTIONS(2140), + [anon_sym_struct] = ACTIONS(2140), + [anon_sym_trait] = ACTIONS(2140), + [anon_sym_type] = ACTIONS(2140), + [anon_sym_union] = ACTIONS(2140), + [anon_sym_unsafe] = ACTIONS(2140), + [anon_sym_use] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_extern] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2140), + [anon_sym_move] = ACTIONS(2140), + [anon_sym_try] = ACTIONS(2140), + [sym_integer_literal] = ACTIONS(2138), + [aux_sym_string_literal_token1] = ACTIONS(2138), + [sym_char_literal] = ACTIONS(2138), + [anon_sym_true] = ACTIONS(2140), + [anon_sym_false] = ACTIONS(2140), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2140), + [sym_super] = ACTIONS(2140), + [sym_crate] = ACTIONS(2140), + [sym_metavariable] = ACTIONS(2138), + [sym_raw_string_literal] = ACTIONS(2138), + [sym_float_literal] = ACTIONS(2138), }, - [709] = { - [sym_empty_statement] = STATE(709), - [sym_macro_definition] = STATE(709), - [sym_attribute_item] = STATE(709), - [sym_inner_attribute_item] = STATE(709), - [sym_mod_item] = STATE(709), - [sym_foreign_mod_item] = STATE(709), - [sym_struct_item] = STATE(709), - [sym_union_item] = STATE(709), - [sym_enum_item] = STATE(709), - [sym_extern_crate_declaration] = STATE(709), - [sym_const_item] = STATE(709), - [sym_static_item] = STATE(709), - [sym_type_item] = STATE(709), - [sym_function_item] = STATE(709), - [sym_function_signature_item] = STATE(709), - [sym_function_modifiers] = STATE(3451), - [sym_impl_item] = STATE(709), - [sym_trait_item] = STATE(709), - [sym_associated_type] = STATE(709), - [sym_let_declaration] = STATE(709), - [sym_use_declaration] = STATE(709), - [sym_extern_modifier] = STATE(2079), - [sym_visibility_modifier] = STATE(1907), - [sym_bracketed_type] = STATE(3198), - [sym_generic_type_with_turbofish] = STATE(3220), - [sym_macro_invocation] = STATE(709), - [sym_scoped_identifier] = STATE(3036), - [aux_sym_declaration_list_repeat1] = STATE(709), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_macro_rules_BANG] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_u8] = ACTIONS(2696), - [anon_sym_i8] = ACTIONS(2696), - [anon_sym_u16] = ACTIONS(2696), - [anon_sym_i16] = ACTIONS(2696), - [anon_sym_u32] = ACTIONS(2696), - [anon_sym_i32] = ACTIONS(2696), - [anon_sym_u64] = ACTIONS(2696), - [anon_sym_i64] = ACTIONS(2696), - [anon_sym_u128] = ACTIONS(2696), - [anon_sym_i128] = ACTIONS(2696), - [anon_sym_isize] = ACTIONS(2696), - [anon_sym_usize] = ACTIONS(2696), - [anon_sym_f32] = ACTIONS(2696), - [anon_sym_f64] = ACTIONS(2696), - [anon_sym_bool] = ACTIONS(2696), - [anon_sym_str] = ACTIONS(2696), - [anon_sym_char] = ACTIONS(2696), - [anon_sym_COLON_COLON] = ACTIONS(2699), - [anon_sym_POUND] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_fn] = ACTIONS(2720), - [anon_sym_impl] = ACTIONS(2723), - [anon_sym_let] = ACTIONS(2726), - [anon_sym_mod] = ACTIONS(2729), - [anon_sym_pub] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2738), - [anon_sym_trait] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2750), - [anon_sym_use] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2756), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2759), - [sym_super] = ACTIONS(2759), - [sym_crate] = ACTIONS(2762), - [sym_metavariable] = ACTIONS(2765), - [sym_block_comment] = ACTIONS(3), + [586] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_macro_rules_BANG] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2142), + [anon_sym_u8] = ACTIONS(2144), + [anon_sym_i8] = ACTIONS(2144), + [anon_sym_u16] = ACTIONS(2144), + [anon_sym_i16] = ACTIONS(2144), + [anon_sym_u32] = ACTIONS(2144), + [anon_sym_i32] = ACTIONS(2144), + [anon_sym_u64] = ACTIONS(2144), + [anon_sym_i64] = ACTIONS(2144), + [anon_sym_u128] = ACTIONS(2144), + [anon_sym_i128] = ACTIONS(2144), + [anon_sym_isize] = ACTIONS(2144), + [anon_sym_usize] = ACTIONS(2144), + [anon_sym_f32] = ACTIONS(2144), + [anon_sym_f64] = ACTIONS(2144), + [anon_sym_bool] = ACTIONS(2144), + [anon_sym_str] = ACTIONS(2144), + [anon_sym_char] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_COLON_COLON] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_POUND] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2144), + [anon_sym_async] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_default] = ACTIONS(2144), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_fn] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_impl] = ACTIONS(2144), + [anon_sym_let] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_mod] = ACTIONS(2144), + [anon_sym_pub] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_static] = ACTIONS(2144), + [anon_sym_struct] = ACTIONS(2144), + [anon_sym_trait] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2144), + [anon_sym_union] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_use] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_extern] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2144), + [anon_sym_move] = ACTIONS(2144), + [anon_sym_try] = ACTIONS(2144), + [sym_integer_literal] = ACTIONS(2142), + [aux_sym_string_literal_token1] = ACTIONS(2142), + [sym_char_literal] = ACTIONS(2142), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = ACTIONS(2144), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2144), + [sym_super] = ACTIONS(2144), + [sym_crate] = ACTIONS(2144), + [sym_metavariable] = ACTIONS(2142), + [sym_raw_string_literal] = ACTIONS(2142), + [sym_float_literal] = ACTIONS(2142), }, - [710] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_macro_rules_BANG] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_u8] = ACTIONS(2770), - [anon_sym_i8] = ACTIONS(2770), - [anon_sym_u16] = ACTIONS(2770), - [anon_sym_i16] = ACTIONS(2770), - [anon_sym_u32] = ACTIONS(2770), - [anon_sym_i32] = ACTIONS(2770), - [anon_sym_u64] = ACTIONS(2770), - [anon_sym_i64] = ACTIONS(2770), - [anon_sym_u128] = ACTIONS(2770), - [anon_sym_i128] = ACTIONS(2770), - [anon_sym_isize] = ACTIONS(2770), - [anon_sym_usize] = ACTIONS(2770), - [anon_sym_f32] = ACTIONS(2770), - [anon_sym_f64] = ACTIONS(2770), - [anon_sym_bool] = ACTIONS(2770), - [anon_sym_str] = ACTIONS(2770), - [anon_sym_char] = ACTIONS(2770), - [anon_sym_DASH] = ACTIONS(2768), - [anon_sym_COLON_COLON] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2770), - [anon_sym_async] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [anon_sym_fn] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_impl] = ACTIONS(2770), - [anon_sym_let] = ACTIONS(2770), - [anon_sym_loop] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2770), - [anon_sym_mod] = ACTIONS(2770), - [anon_sym_pub] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2770), - [anon_sym_trait] = ACTIONS(2770), - [anon_sym_type] = ACTIONS(2770), - [anon_sym_union] = ACTIONS(2770), - [anon_sym_unsafe] = ACTIONS(2770), - [anon_sym_use] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_extern] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2768), - [anon_sym_yield] = ACTIONS(2770), - [anon_sym_move] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [sym_integer_literal] = ACTIONS(2768), - [aux_sym_string_literal_token1] = ACTIONS(2768), - [sym_char_literal] = ACTIONS(2768), - [anon_sym_true] = ACTIONS(2770), - [anon_sym_false] = ACTIONS(2770), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2770), - [sym_super] = ACTIONS(2770), - [sym_crate] = ACTIONS(2770), - [sym_metavariable] = ACTIONS(2768), - [sym_raw_string_literal] = ACTIONS(2768), - [sym_float_literal] = ACTIONS(2768), - [sym_block_comment] = ACTIONS(3), + [587] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), + [ts_builtin_sym_end] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_macro_rules_BANG] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_u8] = ACTIONS(2148), + [anon_sym_i8] = ACTIONS(2148), + [anon_sym_u16] = ACTIONS(2148), + [anon_sym_i16] = ACTIONS(2148), + [anon_sym_u32] = ACTIONS(2148), + [anon_sym_i32] = ACTIONS(2148), + [anon_sym_u64] = ACTIONS(2148), + [anon_sym_i64] = ACTIONS(2148), + [anon_sym_u128] = ACTIONS(2148), + [anon_sym_i128] = ACTIONS(2148), + [anon_sym_isize] = ACTIONS(2148), + [anon_sym_usize] = ACTIONS(2148), + [anon_sym_f32] = ACTIONS(2148), + [anon_sym_f64] = ACTIONS(2148), + [anon_sym_bool] = ACTIONS(2148), + [anon_sym_str] = ACTIONS(2148), + [anon_sym_char] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_AMP] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(2146), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_fn] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_impl] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_loop] = ACTIONS(2148), + [anon_sym_match] = ACTIONS(2148), + [anon_sym_mod] = ACTIONS(2148), + [anon_sym_pub] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_trait] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [anon_sym_unsafe] = ACTIONS(2148), + [anon_sym_use] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_move] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [sym_integer_literal] = ACTIONS(2146), + [aux_sym_string_literal_token1] = ACTIONS(2146), + [sym_char_literal] = ACTIONS(2146), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_crate] = ACTIONS(2148), + [sym_metavariable] = ACTIONS(2146), + [sym_raw_string_literal] = ACTIONS(2146), + [sym_float_literal] = ACTIONS(2146), }, - [711] = { - [ts_builtin_sym_end] = ACTIONS(2772), - [sym_identifier] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_macro_rules_BANG] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_u8] = ACTIONS(2774), - [anon_sym_i8] = ACTIONS(2774), - [anon_sym_u16] = ACTIONS(2774), - [anon_sym_i16] = ACTIONS(2774), - [anon_sym_u32] = ACTIONS(2774), - [anon_sym_i32] = ACTIONS(2774), - [anon_sym_u64] = ACTIONS(2774), - [anon_sym_i64] = ACTIONS(2774), - [anon_sym_u128] = ACTIONS(2774), - [anon_sym_i128] = ACTIONS(2774), - [anon_sym_isize] = ACTIONS(2774), - [anon_sym_usize] = ACTIONS(2774), - [anon_sym_f32] = ACTIONS(2774), - [anon_sym_f64] = ACTIONS(2774), - [anon_sym_bool] = ACTIONS(2774), - [anon_sym_str] = ACTIONS(2774), - [anon_sym_char] = ACTIONS(2774), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_COLON_COLON] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2774), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_fn] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_impl] = ACTIONS(2774), - [anon_sym_let] = ACTIONS(2774), - [anon_sym_loop] = ACTIONS(2774), - [anon_sym_match] = ACTIONS(2774), - [anon_sym_mod] = ACTIONS(2774), - [anon_sym_pub] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_trait] = ACTIONS(2774), - [anon_sym_type] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_unsafe] = ACTIONS(2774), - [anon_sym_use] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym_DOT_DOT] = ACTIONS(2772), - [anon_sym_yield] = ACTIONS(2774), - [anon_sym_move] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [sym_integer_literal] = ACTIONS(2772), - [aux_sym_string_literal_token1] = ACTIONS(2772), - [sym_char_literal] = ACTIONS(2772), - [anon_sym_true] = ACTIONS(2774), - [anon_sym_false] = ACTIONS(2774), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2774), - [sym_super] = ACTIONS(2774), - [sym_crate] = ACTIONS(2774), - [sym_metavariable] = ACTIONS(2772), - [sym_raw_string_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_block_comment] = ACTIONS(3), + [588] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), + [ts_builtin_sym_end] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_macro_rules_BANG] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_u8] = ACTIONS(2152), + [anon_sym_i8] = ACTIONS(2152), + [anon_sym_u16] = ACTIONS(2152), + [anon_sym_i16] = ACTIONS(2152), + [anon_sym_u32] = ACTIONS(2152), + [anon_sym_i32] = ACTIONS(2152), + [anon_sym_u64] = ACTIONS(2152), + [anon_sym_i64] = ACTIONS(2152), + [anon_sym_u128] = ACTIONS(2152), + [anon_sym_i128] = ACTIONS(2152), + [anon_sym_isize] = ACTIONS(2152), + [anon_sym_usize] = ACTIONS(2152), + [anon_sym_f32] = ACTIONS(2152), + [anon_sym_f64] = ACTIONS(2152), + [anon_sym_bool] = ACTIONS(2152), + [anon_sym_str] = ACTIONS(2152), + [anon_sym_char] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2150), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_fn] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_impl] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_loop] = ACTIONS(2152), + [anon_sym_match] = ACTIONS(2152), + [anon_sym_mod] = ACTIONS(2152), + [anon_sym_pub] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_trait] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [anon_sym_unsafe] = ACTIONS(2152), + [anon_sym_use] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2150), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_move] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [sym_integer_literal] = ACTIONS(2150), + [aux_sym_string_literal_token1] = ACTIONS(2150), + [sym_char_literal] = ACTIONS(2150), + [anon_sym_true] = ACTIONS(2152), + [anon_sym_false] = ACTIONS(2152), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_crate] = ACTIONS(2152), + [sym_metavariable] = ACTIONS(2150), + [sym_raw_string_literal] = ACTIONS(2150), + [sym_float_literal] = ACTIONS(2150), }, - [712] = { - [sym_empty_statement] = STATE(499), - [sym_macro_definition] = STATE(499), - [sym_attribute_item] = STATE(499), - [sym_inner_attribute_item] = STATE(499), - [sym_mod_item] = STATE(499), - [sym_foreign_mod_item] = STATE(499), - [sym_struct_item] = STATE(499), - [sym_union_item] = STATE(499), - [sym_enum_item] = STATE(499), - [sym_extern_crate_declaration] = STATE(499), - [sym_const_item] = STATE(499), - [sym_static_item] = STATE(499), - [sym_type_item] = STATE(499), - [sym_function_item] = STATE(499), - [sym_function_signature_item] = STATE(499), - [sym_function_modifiers] = STATE(3451), - [sym_impl_item] = STATE(499), - [sym_trait_item] = STATE(499), - [sym_associated_type] = STATE(499), - [sym_let_declaration] = STATE(499), - [sym_use_declaration] = STATE(499), - [sym_extern_modifier] = STATE(2079), - [sym_visibility_modifier] = STATE(1907), - [sym_bracketed_type] = STATE(3198), - [sym_generic_type_with_turbofish] = STATE(3220), - [sym_macro_invocation] = STATE(499), - [sym_scoped_identifier] = STATE(3036), - [aux_sym_declaration_list_repeat1] = STATE(499), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_u8] = ACTIONS(1835), - [anon_sym_i8] = ACTIONS(1835), - [anon_sym_u16] = ACTIONS(1835), - [anon_sym_i16] = ACTIONS(1835), - [anon_sym_u32] = ACTIONS(1835), - [anon_sym_i32] = ACTIONS(1835), - [anon_sym_u64] = ACTIONS(1835), - [anon_sym_i64] = ACTIONS(1835), - [anon_sym_u128] = ACTIONS(1835), - [anon_sym_i128] = ACTIONS(1835), - [anon_sym_isize] = ACTIONS(1835), - [anon_sym_usize] = ACTIONS(1835), - [anon_sym_f32] = ACTIONS(1835), - [anon_sym_f64] = ACTIONS(1835), - [anon_sym_bool] = ACTIONS(1835), - [anon_sym_str] = ACTIONS(1835), - [anon_sym_char] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1845), - [anon_sym_fn] = ACTIONS(1847), - [anon_sym_impl] = ACTIONS(1849), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_mod] = ACTIONS(1853), - [anon_sym_pub] = ACTIONS(63), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1857), - [anon_sym_trait] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_unsafe] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1869), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_crate] = ACTIONS(1873), - [sym_metavariable] = ACTIONS(1875), - [sym_block_comment] = ACTIONS(3), + [589] = { + [sym_empty_statement] = STATE(1426), + [sym_macro_definition] = STATE(1426), + [sym_attribute_item] = STATE(1426), + [sym_inner_attribute_item] = STATE(1426), + [sym_mod_item] = STATE(1426), + [sym_foreign_mod_item] = STATE(1426), + [sym_struct_item] = STATE(1426), + [sym_union_item] = STATE(1426), + [sym_enum_item] = STATE(1426), + [sym_extern_crate_declaration] = STATE(1426), + [sym_const_item] = STATE(1426), + [sym_static_item] = STATE(1426), + [sym_type_item] = STATE(1426), + [sym_function_item] = STATE(1426), + [sym_function_signature_item] = STATE(1426), + [sym_function_modifiers] = STATE(3492), + [sym_impl_item] = STATE(1426), + [sym_trait_item] = STATE(1426), + [sym_associated_type] = STATE(1426), + [sym_let_declaration] = STATE(1426), + [sym_use_declaration] = STATE(1426), + [sym_extern_modifier] = STATE(2121), + [sym_visibility_modifier] = STATE(1931), + [sym_bracketed_type] = STATE(3236), + [sym_generic_type_with_turbofish] = STATE(3261), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3002), + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [aux_sym_declaration_list_repeat1] = STATE(551), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_macro_rules_BANG] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u128] = ACTIONS(1723), + [anon_sym_i128] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_str] = ACTIONS(1723), + [anon_sym_char] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1731), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1735), + [anon_sym_impl] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_mod] = ACTIONS(1741), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_trait] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1751), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_crate] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1763), }, - [713] = { - [ts_builtin_sym_end] = ACTIONS(2778), - [sym_identifier] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_macro_rules_BANG] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_u8] = ACTIONS(2780), - [anon_sym_i8] = ACTIONS(2780), - [anon_sym_u16] = ACTIONS(2780), - [anon_sym_i16] = ACTIONS(2780), - [anon_sym_u32] = ACTIONS(2780), - [anon_sym_i32] = ACTIONS(2780), - [anon_sym_u64] = ACTIONS(2780), - [anon_sym_i64] = ACTIONS(2780), - [anon_sym_u128] = ACTIONS(2780), - [anon_sym_i128] = ACTIONS(2780), - [anon_sym_isize] = ACTIONS(2780), - [anon_sym_usize] = ACTIONS(2780), - [anon_sym_f32] = ACTIONS(2780), - [anon_sym_f64] = ACTIONS(2780), - [anon_sym_bool] = ACTIONS(2780), - [anon_sym_str] = ACTIONS(2780), - [anon_sym_char] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_break] = ACTIONS(2780), - [anon_sym_const] = ACTIONS(2780), - [anon_sym_continue] = ACTIONS(2780), - [anon_sym_default] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2780), - [anon_sym_fn] = ACTIONS(2780), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_impl] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_loop] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_mod] = ACTIONS(2780), - [anon_sym_pub] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2780), - [anon_sym_trait] = ACTIONS(2780), - [anon_sym_type] = ACTIONS(2780), - [anon_sym_union] = ACTIONS(2780), - [anon_sym_unsafe] = ACTIONS(2780), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_extern] = ACTIONS(2780), - [anon_sym_DOT_DOT] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_move] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [sym_integer_literal] = ACTIONS(2778), - [aux_sym_string_literal_token1] = ACTIONS(2778), - [sym_char_literal] = ACTIONS(2778), - [anon_sym_true] = ACTIONS(2780), - [anon_sym_false] = ACTIONS(2780), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2780), - [sym_super] = ACTIONS(2780), - [sym_crate] = ACTIONS(2780), + [590] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [ts_builtin_sym_end] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_macro_rules_BANG] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_async] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_fn] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_impl] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_mod] = ACTIONS(2158), + [anon_sym_pub] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_struct] = ACTIONS(2158), + [anon_sym_trait] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_unsafe] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_DOT_DOT] = ACTIONS(2156), + [anon_sym_yield] = ACTIONS(2158), + [anon_sym_move] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2156), + [aux_sym_string_literal_token1] = ACTIONS(2156), + [sym_char_literal] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2158), + [sym_super] = ACTIONS(2158), + [sym_crate] = ACTIONS(2158), + [sym_metavariable] = ACTIONS(2156), + [sym_raw_string_literal] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), + }, + [591] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_macro_rules_BANG] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_u8] = ACTIONS(2162), + [anon_sym_i8] = ACTIONS(2162), + [anon_sym_u16] = ACTIONS(2162), + [anon_sym_i16] = ACTIONS(2162), + [anon_sym_u32] = ACTIONS(2162), + [anon_sym_i32] = ACTIONS(2162), + [anon_sym_u64] = ACTIONS(2162), + [anon_sym_i64] = ACTIONS(2162), + [anon_sym_u128] = ACTIONS(2162), + [anon_sym_i128] = ACTIONS(2162), + [anon_sym_isize] = ACTIONS(2162), + [anon_sym_usize] = ACTIONS(2162), + [anon_sym_f32] = ACTIONS(2162), + [anon_sym_f64] = ACTIONS(2162), + [anon_sym_bool] = ACTIONS(2162), + [anon_sym_str] = ACTIONS(2162), + [anon_sym_char] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_impl] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_mod] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_trait] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_use] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2162), + [sym_integer_literal] = ACTIONS(2160), + [aux_sym_string_literal_token1] = ACTIONS(2160), + [sym_char_literal] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2162), + [sym_super] = ACTIONS(2162), + [sym_crate] = ACTIONS(2162), + [sym_metavariable] = ACTIONS(2160), + [sym_raw_string_literal] = ACTIONS(2160), + [sym_float_literal] = ACTIONS(2160), + }, + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_macro_rules_BANG] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_u8] = ACTIONS(2166), + [anon_sym_i8] = ACTIONS(2166), + [anon_sym_u16] = ACTIONS(2166), + [anon_sym_i16] = ACTIONS(2166), + [anon_sym_u32] = ACTIONS(2166), + [anon_sym_i32] = ACTIONS(2166), + [anon_sym_u64] = ACTIONS(2166), + [anon_sym_i64] = ACTIONS(2166), + [anon_sym_u128] = ACTIONS(2166), + [anon_sym_i128] = ACTIONS(2166), + [anon_sym_isize] = ACTIONS(2166), + [anon_sym_usize] = ACTIONS(2166), + [anon_sym_f32] = ACTIONS(2166), + [anon_sym_f64] = ACTIONS(2166), + [anon_sym_bool] = ACTIONS(2166), + [anon_sym_str] = ACTIONS(2166), + [anon_sym_char] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_fn] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_impl] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_loop] = ACTIONS(2166), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_mod] = ACTIONS(2166), + [anon_sym_pub] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_struct] = ACTIONS(2166), + [anon_sym_trait] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_union] = ACTIONS(2166), + [anon_sym_unsafe] = ACTIONS(2166), + [anon_sym_use] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_DOT_DOT] = ACTIONS(2164), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_move] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [sym_integer_literal] = ACTIONS(2164), + [aux_sym_string_literal_token1] = ACTIONS(2164), + [sym_char_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_crate] = ACTIONS(2166), + [sym_metavariable] = ACTIONS(2164), + [sym_raw_string_literal] = ACTIONS(2164), + [sym_float_literal] = ACTIONS(2164), + }, + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2168), + [anon_sym_macro_rules_BANG] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_impl] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_mod] = ACTIONS(2170), + [anon_sym_pub] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_struct] = ACTIONS(2170), + [anon_sym_trait] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_union] = ACTIONS(2170), + [anon_sym_unsafe] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_move] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [sym_integer_literal] = ACTIONS(2168), + [aux_sym_string_literal_token1] = ACTIONS(2168), + [sym_char_literal] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_crate] = ACTIONS(2170), + [sym_metavariable] = ACTIONS(2168), + [sym_raw_string_literal] = ACTIONS(2168), + [sym_float_literal] = ACTIONS(2168), + }, + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_macro_rules_BANG] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_u8] = ACTIONS(2174), + [anon_sym_i8] = ACTIONS(2174), + [anon_sym_u16] = ACTIONS(2174), + [anon_sym_i16] = ACTIONS(2174), + [anon_sym_u32] = ACTIONS(2174), + [anon_sym_i32] = ACTIONS(2174), + [anon_sym_u64] = ACTIONS(2174), + [anon_sym_i64] = ACTIONS(2174), + [anon_sym_u128] = ACTIONS(2174), + [anon_sym_i128] = ACTIONS(2174), + [anon_sym_isize] = ACTIONS(2174), + [anon_sym_usize] = ACTIONS(2174), + [anon_sym_f32] = ACTIONS(2174), + [anon_sym_f64] = ACTIONS(2174), + [anon_sym_bool] = ACTIONS(2174), + [anon_sym_str] = ACTIONS(2174), + [anon_sym_char] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [anon_sym_fn] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_impl] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_mod] = ACTIONS(2174), + [anon_sym_pub] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_struct] = ACTIONS(2174), + [anon_sym_trait] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_union] = ACTIONS(2174), + [anon_sym_unsafe] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_DOT_DOT] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_move] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [sym_integer_literal] = ACTIONS(2172), + [aux_sym_string_literal_token1] = ACTIONS(2172), + [sym_char_literal] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_crate] = ACTIONS(2174), + [sym_metavariable] = ACTIONS(2172), + [sym_raw_string_literal] = ACTIONS(2172), + [sym_float_literal] = ACTIONS(2172), + }, + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_macro_rules_BANG] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_u8] = ACTIONS(2178), + [anon_sym_i8] = ACTIONS(2178), + [anon_sym_u16] = ACTIONS(2178), + [anon_sym_i16] = ACTIONS(2178), + [anon_sym_u32] = ACTIONS(2178), + [anon_sym_i32] = ACTIONS(2178), + [anon_sym_u64] = ACTIONS(2178), + [anon_sym_i64] = ACTIONS(2178), + [anon_sym_u128] = ACTIONS(2178), + [anon_sym_i128] = ACTIONS(2178), + [anon_sym_isize] = ACTIONS(2178), + [anon_sym_usize] = ACTIONS(2178), + [anon_sym_f32] = ACTIONS(2178), + [anon_sym_f64] = ACTIONS(2178), + [anon_sym_bool] = ACTIONS(2178), + [anon_sym_str] = ACTIONS(2178), + [anon_sym_char] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_COLON_COLON] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_fn] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_impl] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_loop] = ACTIONS(2178), + [anon_sym_match] = ACTIONS(2178), + [anon_sym_mod] = ACTIONS(2178), + [anon_sym_pub] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_trait] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_unsafe] = ACTIONS(2178), + [anon_sym_use] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_DOT_DOT] = ACTIONS(2176), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_move] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [sym_integer_literal] = ACTIONS(2176), + [aux_sym_string_literal_token1] = ACTIONS(2176), + [sym_char_literal] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2178), + [anon_sym_false] = ACTIONS(2178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_crate] = ACTIONS(2178), + [sym_metavariable] = ACTIONS(2176), + [sym_raw_string_literal] = ACTIONS(2176), + [sym_float_literal] = ACTIONS(2176), + }, + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_macro_rules_BANG] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_u8] = ACTIONS(2182), + [anon_sym_i8] = ACTIONS(2182), + [anon_sym_u16] = ACTIONS(2182), + [anon_sym_i16] = ACTIONS(2182), + [anon_sym_u32] = ACTIONS(2182), + [anon_sym_i32] = ACTIONS(2182), + [anon_sym_u64] = ACTIONS(2182), + [anon_sym_i64] = ACTIONS(2182), + [anon_sym_u128] = ACTIONS(2182), + [anon_sym_i128] = ACTIONS(2182), + [anon_sym_isize] = ACTIONS(2182), + [anon_sym_usize] = ACTIONS(2182), + [anon_sym_f32] = ACTIONS(2182), + [anon_sym_f64] = ACTIONS(2182), + [anon_sym_bool] = ACTIONS(2182), + [anon_sym_str] = ACTIONS(2182), + [anon_sym_char] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_fn] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_impl] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_mod] = ACTIONS(2182), + [anon_sym_pub] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_trait] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_unsafe] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_move] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2180), + [aux_sym_string_literal_token1] = ACTIONS(2180), + [sym_char_literal] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_crate] = ACTIONS(2182), + [sym_metavariable] = ACTIONS(2180), + [sym_raw_string_literal] = ACTIONS(2180), + [sym_float_literal] = ACTIONS(2180), + }, + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_macro_rules_BANG] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_u8] = ACTIONS(2186), + [anon_sym_i8] = ACTIONS(2186), + [anon_sym_u16] = ACTIONS(2186), + [anon_sym_i16] = ACTIONS(2186), + [anon_sym_u32] = ACTIONS(2186), + [anon_sym_i32] = ACTIONS(2186), + [anon_sym_u64] = ACTIONS(2186), + [anon_sym_i64] = ACTIONS(2186), + [anon_sym_u128] = ACTIONS(2186), + [anon_sym_i128] = ACTIONS(2186), + [anon_sym_isize] = ACTIONS(2186), + [anon_sym_usize] = ACTIONS(2186), + [anon_sym_f32] = ACTIONS(2186), + [anon_sym_f64] = ACTIONS(2186), + [anon_sym_bool] = ACTIONS(2186), + [anon_sym_str] = ACTIONS(2186), + [anon_sym_char] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_fn] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_impl] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_mod] = ACTIONS(2186), + [anon_sym_pub] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_trait] = ACTIONS(2186), + [anon_sym_type] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_unsafe] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_DOT_DOT] = ACTIONS(2184), + [anon_sym_yield] = ACTIONS(2186), + [anon_sym_move] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(2184), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2184), + [sym_raw_string_literal] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), + }, + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_macro_rules_BANG] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_u8] = ACTIONS(2190), + [anon_sym_i8] = ACTIONS(2190), + [anon_sym_u16] = ACTIONS(2190), + [anon_sym_i16] = ACTIONS(2190), + [anon_sym_u32] = ACTIONS(2190), + [anon_sym_i32] = ACTIONS(2190), + [anon_sym_u64] = ACTIONS(2190), + [anon_sym_i64] = ACTIONS(2190), + [anon_sym_u128] = ACTIONS(2190), + [anon_sym_i128] = ACTIONS(2190), + [anon_sym_isize] = ACTIONS(2190), + [anon_sym_usize] = ACTIONS(2190), + [anon_sym_f32] = ACTIONS(2190), + [anon_sym_f64] = ACTIONS(2190), + [anon_sym_bool] = ACTIONS(2190), + [anon_sym_str] = ACTIONS(2190), + [anon_sym_char] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2190), + [anon_sym_async] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_fn] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_impl] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_mod] = ACTIONS(2190), + [anon_sym_pub] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_trait] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_unsafe] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2190), + [anon_sym_move] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [sym_integer_literal] = ACTIONS(2188), + [aux_sym_string_literal_token1] = ACTIONS(2188), + [sym_char_literal] = ACTIONS(2188), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2190), + [sym_super] = ACTIONS(2190), + [sym_crate] = ACTIONS(2190), + [sym_metavariable] = ACTIONS(2188), + [sym_raw_string_literal] = ACTIONS(2188), + [sym_float_literal] = ACTIONS(2188), + }, + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_macro_rules_BANG] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_u8] = ACTIONS(2194), + [anon_sym_i8] = ACTIONS(2194), + [anon_sym_u16] = ACTIONS(2194), + [anon_sym_i16] = ACTIONS(2194), + [anon_sym_u32] = ACTIONS(2194), + [anon_sym_i32] = ACTIONS(2194), + [anon_sym_u64] = ACTIONS(2194), + [anon_sym_i64] = ACTIONS(2194), + [anon_sym_u128] = ACTIONS(2194), + [anon_sym_i128] = ACTIONS(2194), + [anon_sym_isize] = ACTIONS(2194), + [anon_sym_usize] = ACTIONS(2194), + [anon_sym_f32] = ACTIONS(2194), + [anon_sym_f64] = ACTIONS(2194), + [anon_sym_bool] = ACTIONS(2194), + [anon_sym_str] = ACTIONS(2194), + [anon_sym_char] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2194), + [anon_sym_async] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_fn] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_impl] = ACTIONS(2194), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_loop] = ACTIONS(2194), + [anon_sym_match] = ACTIONS(2194), + [anon_sym_mod] = ACTIONS(2194), + [anon_sym_pub] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_trait] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_unsafe] = ACTIONS(2194), + [anon_sym_use] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_yield] = ACTIONS(2194), + [anon_sym_move] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [sym_integer_literal] = ACTIONS(2192), + [aux_sym_string_literal_token1] = ACTIONS(2192), + [sym_char_literal] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2194), + [sym_super] = ACTIONS(2194), + [sym_crate] = ACTIONS(2194), + [sym_metavariable] = ACTIONS(2192), + [sym_raw_string_literal] = ACTIONS(2192), + [sym_float_literal] = ACTIONS(2192), + }, + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_macro_rules_BANG] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_u8] = ACTIONS(2198), + [anon_sym_i8] = ACTIONS(2198), + [anon_sym_u16] = ACTIONS(2198), + [anon_sym_i16] = ACTIONS(2198), + [anon_sym_u32] = ACTIONS(2198), + [anon_sym_i32] = ACTIONS(2198), + [anon_sym_u64] = ACTIONS(2198), + [anon_sym_i64] = ACTIONS(2198), + [anon_sym_u128] = ACTIONS(2198), + [anon_sym_i128] = ACTIONS(2198), + [anon_sym_isize] = ACTIONS(2198), + [anon_sym_usize] = ACTIONS(2198), + [anon_sym_f32] = ACTIONS(2198), + [anon_sym_f64] = ACTIONS(2198), + [anon_sym_bool] = ACTIONS(2198), + [anon_sym_str] = ACTIONS(2198), + [anon_sym_char] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_fn] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_impl] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_loop] = ACTIONS(2198), + [anon_sym_match] = ACTIONS(2198), + [anon_sym_mod] = ACTIONS(2198), + [anon_sym_pub] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_trait] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_unsafe] = ACTIONS(2198), + [anon_sym_use] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym_DOT_DOT] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_move] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [sym_integer_literal] = ACTIONS(2196), + [aux_sym_string_literal_token1] = ACTIONS(2196), + [sym_char_literal] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_crate] = ACTIONS(2198), + [sym_metavariable] = ACTIONS(2196), + [sym_raw_string_literal] = ACTIONS(2196), + [sym_float_literal] = ACTIONS(2196), + }, + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_macro_rules_BANG] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_u8] = ACTIONS(2202), + [anon_sym_i8] = ACTIONS(2202), + [anon_sym_u16] = ACTIONS(2202), + [anon_sym_i16] = ACTIONS(2202), + [anon_sym_u32] = ACTIONS(2202), + [anon_sym_i32] = ACTIONS(2202), + [anon_sym_u64] = ACTIONS(2202), + [anon_sym_i64] = ACTIONS(2202), + [anon_sym_u128] = ACTIONS(2202), + [anon_sym_i128] = ACTIONS(2202), + [anon_sym_isize] = ACTIONS(2202), + [anon_sym_usize] = ACTIONS(2202), + [anon_sym_f32] = ACTIONS(2202), + [anon_sym_f64] = ACTIONS(2202), + [anon_sym_bool] = ACTIONS(2202), + [anon_sym_str] = ACTIONS(2202), + [anon_sym_char] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2202), + [anon_sym_async] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_fn] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_impl] = ACTIONS(2202), + [anon_sym_let] = ACTIONS(2202), + [anon_sym_loop] = ACTIONS(2202), + [anon_sym_match] = ACTIONS(2202), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_trait] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_unsafe] = ACTIONS(2202), + [anon_sym_use] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_yield] = ACTIONS(2202), + [anon_sym_move] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2200), + [aux_sym_string_literal_token1] = ACTIONS(2200), + [sym_char_literal] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2202), + [sym_super] = ACTIONS(2202), + [sym_crate] = ACTIONS(2202), + [sym_metavariable] = ACTIONS(2200), + [sym_raw_string_literal] = ACTIONS(2200), + [sym_float_literal] = ACTIONS(2200), + }, + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [ts_builtin_sym_end] = ACTIONS(872), + [sym_identifier] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_macro_rules_BANG] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_RBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(872), + [anon_sym_u8] = ACTIONS(874), + [anon_sym_i8] = ACTIONS(874), + [anon_sym_u16] = ACTIONS(874), + [anon_sym_i16] = ACTIONS(874), + [anon_sym_u32] = ACTIONS(874), + [anon_sym_i32] = ACTIONS(874), + [anon_sym_u64] = ACTIONS(874), + [anon_sym_i64] = ACTIONS(874), + [anon_sym_u128] = ACTIONS(874), + [anon_sym_i128] = ACTIONS(874), + [anon_sym_isize] = ACTIONS(874), + [anon_sym_usize] = ACTIONS(874), + [anon_sym_f32] = ACTIONS(874), + [anon_sym_f64] = ACTIONS(874), + [anon_sym_bool] = ACTIONS(874), + [anon_sym_str] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(872), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_POUND] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(872), + [anon_sym_PIPE] = ACTIONS(872), + [anon_sym_SQUOTE] = ACTIONS(874), + [anon_sym_async] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_const] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_default] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_fn] = ACTIONS(874), + [anon_sym_for] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_impl] = ACTIONS(874), + [anon_sym_let] = ACTIONS(874), + [anon_sym_loop] = ACTIONS(874), + [anon_sym_match] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(874), + [anon_sym_pub] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_struct] = ACTIONS(874), + [anon_sym_trait] = ACTIONS(874), + [anon_sym_type] = ACTIONS(874), + [anon_sym_union] = ACTIONS(874), + [anon_sym_unsafe] = ACTIONS(874), + [anon_sym_use] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(872), + [anon_sym_yield] = ACTIONS(874), + [anon_sym_move] = ACTIONS(874), + [anon_sym_try] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(872), + [aux_sym_string_literal_token1] = ACTIONS(872), + [sym_char_literal] = ACTIONS(872), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(874), + [sym_super] = ACTIONS(874), + [sym_crate] = ACTIONS(874), + [sym_metavariable] = ACTIONS(872), + [sym_raw_string_literal] = ACTIONS(872), + [sym_float_literal] = ACTIONS(872), + }, + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_macro_rules_BANG] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_u8] = ACTIONS(2206), + [anon_sym_i8] = ACTIONS(2206), + [anon_sym_u16] = ACTIONS(2206), + [anon_sym_i16] = ACTIONS(2206), + [anon_sym_u32] = ACTIONS(2206), + [anon_sym_i32] = ACTIONS(2206), + [anon_sym_u64] = ACTIONS(2206), + [anon_sym_i64] = ACTIONS(2206), + [anon_sym_u128] = ACTIONS(2206), + [anon_sym_i128] = ACTIONS(2206), + [anon_sym_isize] = ACTIONS(2206), + [anon_sym_usize] = ACTIONS(2206), + [anon_sym_f32] = ACTIONS(2206), + [anon_sym_f64] = ACTIONS(2206), + [anon_sym_bool] = ACTIONS(2206), + [anon_sym_str] = ACTIONS(2206), + [anon_sym_char] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_DOT_DOT] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2206), + [anon_sym_move] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2204), + [aux_sym_string_literal_token1] = ACTIONS(2204), + [sym_char_literal] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2204), + [sym_raw_string_literal] = ACTIONS(2204), + [sym_float_literal] = ACTIONS(2204), + }, + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), + [ts_builtin_sym_end] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_macro_rules_BANG] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_u8] = ACTIONS(2210), + [anon_sym_i8] = ACTIONS(2210), + [anon_sym_u16] = ACTIONS(2210), + [anon_sym_i16] = ACTIONS(2210), + [anon_sym_u32] = ACTIONS(2210), + [anon_sym_i32] = ACTIONS(2210), + [anon_sym_u64] = ACTIONS(2210), + [anon_sym_i64] = ACTIONS(2210), + [anon_sym_u128] = ACTIONS(2210), + [anon_sym_i128] = ACTIONS(2210), + [anon_sym_isize] = ACTIONS(2210), + [anon_sym_usize] = ACTIONS(2210), + [anon_sym_f32] = ACTIONS(2210), + [anon_sym_f64] = ACTIONS(2210), + [anon_sym_bool] = ACTIONS(2210), + [anon_sym_str] = ACTIONS(2210), + [anon_sym_char] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_POUND] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2210), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_fn] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_impl] = ACTIONS(2210), + [anon_sym_let] = ACTIONS(2210), + [anon_sym_loop] = ACTIONS(2210), + [anon_sym_match] = ACTIONS(2210), + [anon_sym_mod] = ACTIONS(2210), + [anon_sym_pub] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_trait] = ACTIONS(2210), + [anon_sym_type] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_unsafe] = ACTIONS(2210), + [anon_sym_use] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym_DOT_DOT] = ACTIONS(2208), + [anon_sym_yield] = ACTIONS(2210), + [anon_sym_move] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [sym_integer_literal] = ACTIONS(2208), + [aux_sym_string_literal_token1] = ACTIONS(2208), + [sym_char_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2210), + [sym_super] = ACTIONS(2210), + [sym_crate] = ACTIONS(2210), + [sym_metavariable] = ACTIONS(2208), + [sym_raw_string_literal] = ACTIONS(2208), + [sym_float_literal] = ACTIONS(2208), + }, + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_macro_rules_BANG] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_u8] = ACTIONS(2214), + [anon_sym_i8] = ACTIONS(2214), + [anon_sym_u16] = ACTIONS(2214), + [anon_sym_i16] = ACTIONS(2214), + [anon_sym_u32] = ACTIONS(2214), + [anon_sym_i32] = ACTIONS(2214), + [anon_sym_u64] = ACTIONS(2214), + [anon_sym_i64] = ACTIONS(2214), + [anon_sym_u128] = ACTIONS(2214), + [anon_sym_i128] = ACTIONS(2214), + [anon_sym_isize] = ACTIONS(2214), + [anon_sym_usize] = ACTIONS(2214), + [anon_sym_f32] = ACTIONS(2214), + [anon_sym_f64] = ACTIONS(2214), + [anon_sym_bool] = ACTIONS(2214), + [anon_sym_str] = ACTIONS(2214), + [anon_sym_char] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_fn] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_impl] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_mod] = ACTIONS(2214), + [anon_sym_pub] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_trait] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_DOT_DOT] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_move] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2212), + [aux_sym_string_literal_token1] = ACTIONS(2212), + [sym_char_literal] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_crate] = ACTIONS(2214), + [sym_metavariable] = ACTIONS(2212), + [sym_raw_string_literal] = ACTIONS(2212), + [sym_float_literal] = ACTIONS(2212), + }, + [606] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), + [ts_builtin_sym_end] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_macro_rules_BANG] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_u8] = ACTIONS(2218), + [anon_sym_i8] = ACTIONS(2218), + [anon_sym_u16] = ACTIONS(2218), + [anon_sym_i16] = ACTIONS(2218), + [anon_sym_u32] = ACTIONS(2218), + [anon_sym_i32] = ACTIONS(2218), + [anon_sym_u64] = ACTIONS(2218), + [anon_sym_i64] = ACTIONS(2218), + [anon_sym_u128] = ACTIONS(2218), + [anon_sym_i128] = ACTIONS(2218), + [anon_sym_isize] = ACTIONS(2218), + [anon_sym_usize] = ACTIONS(2218), + [anon_sym_f32] = ACTIONS(2218), + [anon_sym_f64] = ACTIONS(2218), + [anon_sym_bool] = ACTIONS(2218), + [anon_sym_str] = ACTIONS(2218), + [anon_sym_char] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2218), + [anon_sym_async] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_fn] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_impl] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_mod] = ACTIONS(2218), + [anon_sym_pub] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_trait] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_unsafe] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_yield] = ACTIONS(2218), + [anon_sym_move] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [sym_integer_literal] = ACTIONS(2216), + [aux_sym_string_literal_token1] = ACTIONS(2216), + [sym_char_literal] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2218), + [sym_super] = ACTIONS(2218), + [sym_crate] = ACTIONS(2218), + [sym_metavariable] = ACTIONS(2216), + [sym_raw_string_literal] = ACTIONS(2216), + [sym_float_literal] = ACTIONS(2216), + }, + [607] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_macro_rules_BANG] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_u8] = ACTIONS(2222), + [anon_sym_i8] = ACTIONS(2222), + [anon_sym_u16] = ACTIONS(2222), + [anon_sym_i16] = ACTIONS(2222), + [anon_sym_u32] = ACTIONS(2222), + [anon_sym_i32] = ACTIONS(2222), + [anon_sym_u64] = ACTIONS(2222), + [anon_sym_i64] = ACTIONS(2222), + [anon_sym_u128] = ACTIONS(2222), + [anon_sym_i128] = ACTIONS(2222), + [anon_sym_isize] = ACTIONS(2222), + [anon_sym_usize] = ACTIONS(2222), + [anon_sym_f32] = ACTIONS(2222), + [anon_sym_f64] = ACTIONS(2222), + [anon_sym_bool] = ACTIONS(2222), + [anon_sym_str] = ACTIONS(2222), + [anon_sym_char] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_fn] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_impl] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_mod] = ACTIONS(2222), + [anon_sym_pub] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_trait] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_unsafe] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_DOT_DOT] = ACTIONS(2220), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_move] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [sym_integer_literal] = ACTIONS(2220), + [aux_sym_string_literal_token1] = ACTIONS(2220), + [sym_char_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2220), + [sym_raw_string_literal] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), + }, + [608] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), + [ts_builtin_sym_end] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_macro_rules_BANG] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_u8] = ACTIONS(2226), + [anon_sym_i8] = ACTIONS(2226), + [anon_sym_u16] = ACTIONS(2226), + [anon_sym_i16] = ACTIONS(2226), + [anon_sym_u32] = ACTIONS(2226), + [anon_sym_i32] = ACTIONS(2226), + [anon_sym_u64] = ACTIONS(2226), + [anon_sym_i64] = ACTIONS(2226), + [anon_sym_u128] = ACTIONS(2226), + [anon_sym_i128] = ACTIONS(2226), + [anon_sym_isize] = ACTIONS(2226), + [anon_sym_usize] = ACTIONS(2226), + [anon_sym_f32] = ACTIONS(2226), + [anon_sym_f64] = ACTIONS(2226), + [anon_sym_bool] = ACTIONS(2226), + [anon_sym_str] = ACTIONS(2226), + [anon_sym_char] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_fn] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_impl] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_mod] = ACTIONS(2226), + [anon_sym_pub] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_trait] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_unsafe] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_move] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [sym_integer_literal] = ACTIONS(2224), + [aux_sym_string_literal_token1] = ACTIONS(2224), + [sym_char_literal] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_crate] = ACTIONS(2226), + [sym_metavariable] = ACTIONS(2224), + [sym_raw_string_literal] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), + }, + [609] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), + [ts_builtin_sym_end] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_macro_rules_BANG] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_u8] = ACTIONS(2230), + [anon_sym_i8] = ACTIONS(2230), + [anon_sym_u16] = ACTIONS(2230), + [anon_sym_i16] = ACTIONS(2230), + [anon_sym_u32] = ACTIONS(2230), + [anon_sym_i32] = ACTIONS(2230), + [anon_sym_u64] = ACTIONS(2230), + [anon_sym_i64] = ACTIONS(2230), + [anon_sym_u128] = ACTIONS(2230), + [anon_sym_i128] = ACTIONS(2230), + [anon_sym_isize] = ACTIONS(2230), + [anon_sym_usize] = ACTIONS(2230), + [anon_sym_f32] = ACTIONS(2230), + [anon_sym_f64] = ACTIONS(2230), + [anon_sym_bool] = ACTIONS(2230), + [anon_sym_str] = ACTIONS(2230), + [anon_sym_char] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_impl] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_mod] = ACTIONS(2230), + [anon_sym_pub] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2230), + [anon_sym_struct] = ACTIONS(2230), + [anon_sym_trait] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_union] = ACTIONS(2230), + [anon_sym_unsafe] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2228), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_move] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [sym_integer_literal] = ACTIONS(2228), + [aux_sym_string_literal_token1] = ACTIONS(2228), + [sym_char_literal] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_crate] = ACTIONS(2230), + [sym_metavariable] = ACTIONS(2228), + [sym_raw_string_literal] = ACTIONS(2228), + [sym_float_literal] = ACTIONS(2228), + }, + [610] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_macro_rules_BANG] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_u8] = ACTIONS(2234), + [anon_sym_i8] = ACTIONS(2234), + [anon_sym_u16] = ACTIONS(2234), + [anon_sym_i16] = ACTIONS(2234), + [anon_sym_u32] = ACTIONS(2234), + [anon_sym_i32] = ACTIONS(2234), + [anon_sym_u64] = ACTIONS(2234), + [anon_sym_i64] = ACTIONS(2234), + [anon_sym_u128] = ACTIONS(2234), + [anon_sym_i128] = ACTIONS(2234), + [anon_sym_isize] = ACTIONS(2234), + [anon_sym_usize] = ACTIONS(2234), + [anon_sym_f32] = ACTIONS(2234), + [anon_sym_f64] = ACTIONS(2234), + [anon_sym_bool] = ACTIONS(2234), + [anon_sym_str] = ACTIONS(2234), + [anon_sym_char] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_impl] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_mod] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_trait] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_DOT_DOT] = ACTIONS(2232), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_move] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [sym_integer_literal] = ACTIONS(2232), + [aux_sym_string_literal_token1] = ACTIONS(2232), + [sym_char_literal] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_crate] = ACTIONS(2234), + [sym_metavariable] = ACTIONS(2232), + [sym_raw_string_literal] = ACTIONS(2232), + [sym_float_literal] = ACTIONS(2232), + }, + [611] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_macro_rules_BANG] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_u8] = ACTIONS(2238), + [anon_sym_i8] = ACTIONS(2238), + [anon_sym_u16] = ACTIONS(2238), + [anon_sym_i16] = ACTIONS(2238), + [anon_sym_u32] = ACTIONS(2238), + [anon_sym_i32] = ACTIONS(2238), + [anon_sym_u64] = ACTIONS(2238), + [anon_sym_i64] = ACTIONS(2238), + [anon_sym_u128] = ACTIONS(2238), + [anon_sym_i128] = ACTIONS(2238), + [anon_sym_isize] = ACTIONS(2238), + [anon_sym_usize] = ACTIONS(2238), + [anon_sym_f32] = ACTIONS(2238), + [anon_sym_f64] = ACTIONS(2238), + [anon_sym_bool] = ACTIONS(2238), + [anon_sym_str] = ACTIONS(2238), + [anon_sym_char] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_fn] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_impl] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_mod] = ACTIONS(2238), + [anon_sym_pub] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_trait] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_unsafe] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_DOT_DOT] = ACTIONS(2236), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_move] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [sym_integer_literal] = ACTIONS(2236), + [aux_sym_string_literal_token1] = ACTIONS(2236), + [sym_char_literal] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_crate] = ACTIONS(2238), + [sym_metavariable] = ACTIONS(2236), + [sym_raw_string_literal] = ACTIONS(2236), + [sym_float_literal] = ACTIONS(2236), + }, + [612] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_macro_rules_BANG] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_u8] = ACTIONS(2242), + [anon_sym_i8] = ACTIONS(2242), + [anon_sym_u16] = ACTIONS(2242), + [anon_sym_i16] = ACTIONS(2242), + [anon_sym_u32] = ACTIONS(2242), + [anon_sym_i32] = ACTIONS(2242), + [anon_sym_u64] = ACTIONS(2242), + [anon_sym_i64] = ACTIONS(2242), + [anon_sym_u128] = ACTIONS(2242), + [anon_sym_i128] = ACTIONS(2242), + [anon_sym_isize] = ACTIONS(2242), + [anon_sym_usize] = ACTIONS(2242), + [anon_sym_f32] = ACTIONS(2242), + [anon_sym_f64] = ACTIONS(2242), + [anon_sym_bool] = ACTIONS(2242), + [anon_sym_str] = ACTIONS(2242), + [anon_sym_char] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [anon_sym_fn] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_impl] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_mod] = ACTIONS(2242), + [anon_sym_pub] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(2242), + [anon_sym_trait] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_union] = ACTIONS(2242), + [anon_sym_unsafe] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(2242), + [anon_sym_DOT_DOT] = ACTIONS(2240), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_move] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [sym_integer_literal] = ACTIONS(2240), + [aux_sym_string_literal_token1] = ACTIONS(2240), + [sym_char_literal] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_crate] = ACTIONS(2242), + [sym_metavariable] = ACTIONS(2240), + [sym_raw_string_literal] = ACTIONS(2240), + [sym_float_literal] = ACTIONS(2240), + }, + [613] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_macro_rules_BANG] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_u8] = ACTIONS(2246), + [anon_sym_i8] = ACTIONS(2246), + [anon_sym_u16] = ACTIONS(2246), + [anon_sym_i16] = ACTIONS(2246), + [anon_sym_u32] = ACTIONS(2246), + [anon_sym_i32] = ACTIONS(2246), + [anon_sym_u64] = ACTIONS(2246), + [anon_sym_i64] = ACTIONS(2246), + [anon_sym_u128] = ACTIONS(2246), + [anon_sym_i128] = ACTIONS(2246), + [anon_sym_isize] = ACTIONS(2246), + [anon_sym_usize] = ACTIONS(2246), + [anon_sym_f32] = ACTIONS(2246), + [anon_sym_f64] = ACTIONS(2246), + [anon_sym_bool] = ACTIONS(2246), + [anon_sym_str] = ACTIONS(2246), + [anon_sym_char] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_async] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_default] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_fn] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_impl] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_loop] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_mod] = ACTIONS(2246), + [anon_sym_pub] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2246), + [anon_sym_struct] = ACTIONS(2246), + [anon_sym_trait] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2246), + [anon_sym_union] = ACTIONS(2246), + [anon_sym_unsafe] = ACTIONS(2246), + [anon_sym_use] = ACTIONS(2246), + [anon_sym_while] = ACTIONS(2246), + [anon_sym_extern] = ACTIONS(2246), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_yield] = ACTIONS(2246), + [anon_sym_move] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2246), + [sym_integer_literal] = ACTIONS(2244), + [aux_sym_string_literal_token1] = ACTIONS(2244), + [sym_char_literal] = ACTIONS(2244), + [anon_sym_true] = ACTIONS(2246), + [anon_sym_false] = ACTIONS(2246), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2246), + [sym_super] = ACTIONS(2246), + [sym_crate] = ACTIONS(2246), + [sym_metavariable] = ACTIONS(2244), + [sym_raw_string_literal] = ACTIONS(2244), + [sym_float_literal] = ACTIONS(2244), + }, + [614] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_macro_rules_BANG] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_u8] = ACTIONS(2250), + [anon_sym_i8] = ACTIONS(2250), + [anon_sym_u16] = ACTIONS(2250), + [anon_sym_i16] = ACTIONS(2250), + [anon_sym_u32] = ACTIONS(2250), + [anon_sym_i32] = ACTIONS(2250), + [anon_sym_u64] = ACTIONS(2250), + [anon_sym_i64] = ACTIONS(2250), + [anon_sym_u128] = ACTIONS(2250), + [anon_sym_i128] = ACTIONS(2250), + [anon_sym_isize] = ACTIONS(2250), + [anon_sym_usize] = ACTIONS(2250), + [anon_sym_f32] = ACTIONS(2250), + [anon_sym_f64] = ACTIONS(2250), + [anon_sym_bool] = ACTIONS(2250), + [anon_sym_str] = ACTIONS(2250), + [anon_sym_char] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_COLON_COLON] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [anon_sym_fn] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_impl] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_loop] = ACTIONS(2250), + [anon_sym_match] = ACTIONS(2250), + [anon_sym_mod] = ACTIONS(2250), + [anon_sym_pub] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_trait] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2250), + [anon_sym_unsafe] = ACTIONS(2250), + [anon_sym_use] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_extern] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2248), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_move] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [sym_integer_literal] = ACTIONS(2248), + [aux_sym_string_literal_token1] = ACTIONS(2248), + [sym_char_literal] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2250), + [anon_sym_false] = ACTIONS(2250), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_crate] = ACTIONS(2250), + [sym_metavariable] = ACTIONS(2248), + [sym_raw_string_literal] = ACTIONS(2248), + [sym_float_literal] = ACTIONS(2248), + }, + [615] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_macro_rules_BANG] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2252), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_u8] = ACTIONS(2254), + [anon_sym_i8] = ACTIONS(2254), + [anon_sym_u16] = ACTIONS(2254), + [anon_sym_i16] = ACTIONS(2254), + [anon_sym_u32] = ACTIONS(2254), + [anon_sym_i32] = ACTIONS(2254), + [anon_sym_u64] = ACTIONS(2254), + [anon_sym_i64] = ACTIONS(2254), + [anon_sym_u128] = ACTIONS(2254), + [anon_sym_i128] = ACTIONS(2254), + [anon_sym_isize] = ACTIONS(2254), + [anon_sym_usize] = ACTIONS(2254), + [anon_sym_f32] = ACTIONS(2254), + [anon_sym_f64] = ACTIONS(2254), + [anon_sym_bool] = ACTIONS(2254), + [anon_sym_str] = ACTIONS(2254), + [anon_sym_char] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_COLON_COLON] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [anon_sym_fn] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_impl] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_loop] = ACTIONS(2254), + [anon_sym_match] = ACTIONS(2254), + [anon_sym_mod] = ACTIONS(2254), + [anon_sym_pub] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_static] = ACTIONS(2254), + [anon_sym_struct] = ACTIONS(2254), + [anon_sym_trait] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_unsafe] = ACTIONS(2254), + [anon_sym_use] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_extern] = ACTIONS(2254), + [anon_sym_DOT_DOT] = ACTIONS(2252), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_move] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [sym_integer_literal] = ACTIONS(2252), + [aux_sym_string_literal_token1] = ACTIONS(2252), + [sym_char_literal] = ACTIONS(2252), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_crate] = ACTIONS(2254), + [sym_metavariable] = ACTIONS(2252), + [sym_raw_string_literal] = ACTIONS(2252), + [sym_float_literal] = ACTIONS(2252), + }, + [616] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), + [ts_builtin_sym_end] = ACTIONS(2256), + [sym_identifier] = ACTIONS(2258), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_macro_rules_BANG] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_u8] = ACTIONS(2258), + [anon_sym_i8] = ACTIONS(2258), + [anon_sym_u16] = ACTIONS(2258), + [anon_sym_i16] = ACTIONS(2258), + [anon_sym_u32] = ACTIONS(2258), + [anon_sym_i32] = ACTIONS(2258), + [anon_sym_u64] = ACTIONS(2258), + [anon_sym_i64] = ACTIONS(2258), + [anon_sym_u128] = ACTIONS(2258), + [anon_sym_i128] = ACTIONS(2258), + [anon_sym_isize] = ACTIONS(2258), + [anon_sym_usize] = ACTIONS(2258), + [anon_sym_f32] = ACTIONS(2258), + [anon_sym_f64] = ACTIONS(2258), + [anon_sym_bool] = ACTIONS(2258), + [anon_sym_str] = ACTIONS(2258), + [anon_sym_char] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_SQUOTE] = ACTIONS(2258), + [anon_sym_async] = ACTIONS(2258), + [anon_sym_break] = ACTIONS(2258), + [anon_sym_const] = ACTIONS(2258), + [anon_sym_continue] = ACTIONS(2258), + [anon_sym_default] = ACTIONS(2258), + [anon_sym_enum] = ACTIONS(2258), + [anon_sym_fn] = ACTIONS(2258), + [anon_sym_for] = ACTIONS(2258), + [anon_sym_if] = ACTIONS(2258), + [anon_sym_impl] = ACTIONS(2258), + [anon_sym_let] = ACTIONS(2258), + [anon_sym_loop] = ACTIONS(2258), + [anon_sym_match] = ACTIONS(2258), + [anon_sym_mod] = ACTIONS(2258), + [anon_sym_pub] = ACTIONS(2258), + [anon_sym_return] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(2258), + [anon_sym_struct] = ACTIONS(2258), + [anon_sym_trait] = ACTIONS(2258), + [anon_sym_type] = ACTIONS(2258), + [anon_sym_union] = ACTIONS(2258), + [anon_sym_unsafe] = ACTIONS(2258), + [anon_sym_use] = ACTIONS(2258), + [anon_sym_while] = ACTIONS(2258), + [anon_sym_extern] = ACTIONS(2258), + [anon_sym_DOT_DOT] = ACTIONS(2256), + [anon_sym_yield] = ACTIONS(2258), + [anon_sym_move] = ACTIONS(2258), + [anon_sym_try] = ACTIONS(2258), + [sym_integer_literal] = ACTIONS(2256), + [aux_sym_string_literal_token1] = ACTIONS(2256), + [sym_char_literal] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2258), + [anon_sym_false] = ACTIONS(2258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2258), + [sym_super] = ACTIONS(2258), + [sym_crate] = ACTIONS(2258), + [sym_metavariable] = ACTIONS(2256), + [sym_raw_string_literal] = ACTIONS(2256), + [sym_float_literal] = ACTIONS(2256), + }, + [617] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), + [ts_builtin_sym_end] = ACTIONS(2260), + [sym_identifier] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_macro_rules_BANG] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2260), + [anon_sym_u8] = ACTIONS(2262), + [anon_sym_i8] = ACTIONS(2262), + [anon_sym_u16] = ACTIONS(2262), + [anon_sym_i16] = ACTIONS(2262), + [anon_sym_u32] = ACTIONS(2262), + [anon_sym_i32] = ACTIONS(2262), + [anon_sym_u64] = ACTIONS(2262), + [anon_sym_i64] = ACTIONS(2262), + [anon_sym_u128] = ACTIONS(2262), + [anon_sym_i128] = ACTIONS(2262), + [anon_sym_isize] = ACTIONS(2262), + [anon_sym_usize] = ACTIONS(2262), + [anon_sym_f32] = ACTIONS(2262), + [anon_sym_f64] = ACTIONS(2262), + [anon_sym_bool] = ACTIONS(2262), + [anon_sym_str] = ACTIONS(2262), + [anon_sym_char] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_async] = ACTIONS(2262), + [anon_sym_break] = ACTIONS(2262), + [anon_sym_const] = ACTIONS(2262), + [anon_sym_continue] = ACTIONS(2262), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_enum] = ACTIONS(2262), + [anon_sym_fn] = ACTIONS(2262), + [anon_sym_for] = ACTIONS(2262), + [anon_sym_if] = ACTIONS(2262), + [anon_sym_impl] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_loop] = ACTIONS(2262), + [anon_sym_match] = ACTIONS(2262), + [anon_sym_mod] = ACTIONS(2262), + [anon_sym_pub] = ACTIONS(2262), + [anon_sym_return] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2262), + [anon_sym_struct] = ACTIONS(2262), + [anon_sym_trait] = ACTIONS(2262), + [anon_sym_type] = ACTIONS(2262), + [anon_sym_union] = ACTIONS(2262), + [anon_sym_unsafe] = ACTIONS(2262), + [anon_sym_use] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2262), + [anon_sym_extern] = ACTIONS(2262), + [anon_sym_DOT_DOT] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2262), + [anon_sym_move] = ACTIONS(2262), + [anon_sym_try] = ACTIONS(2262), + [sym_integer_literal] = ACTIONS(2260), + [aux_sym_string_literal_token1] = ACTIONS(2260), + [sym_char_literal] = ACTIONS(2260), + [anon_sym_true] = ACTIONS(2262), + [anon_sym_false] = ACTIONS(2262), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2262), + [sym_super] = ACTIONS(2262), + [sym_crate] = ACTIONS(2262), + [sym_metavariable] = ACTIONS(2260), + [sym_raw_string_literal] = ACTIONS(2260), + [sym_float_literal] = ACTIONS(2260), + }, + [618] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), + [ts_builtin_sym_end] = ACTIONS(2264), + [sym_identifier] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_macro_rules_BANG] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2264), + [anon_sym_u8] = ACTIONS(2266), + [anon_sym_i8] = ACTIONS(2266), + [anon_sym_u16] = ACTIONS(2266), + [anon_sym_i16] = ACTIONS(2266), + [anon_sym_u32] = ACTIONS(2266), + [anon_sym_i32] = ACTIONS(2266), + [anon_sym_u64] = ACTIONS(2266), + [anon_sym_i64] = ACTIONS(2266), + [anon_sym_u128] = ACTIONS(2266), + [anon_sym_i128] = ACTIONS(2266), + [anon_sym_isize] = ACTIONS(2266), + [anon_sym_usize] = ACTIONS(2266), + [anon_sym_f32] = ACTIONS(2266), + [anon_sym_f64] = ACTIONS(2266), + [anon_sym_bool] = ACTIONS(2266), + [anon_sym_str] = ACTIONS(2266), + [anon_sym_char] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_async] = ACTIONS(2266), + [anon_sym_break] = ACTIONS(2266), + [anon_sym_const] = ACTIONS(2266), + [anon_sym_continue] = ACTIONS(2266), + [anon_sym_default] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(2266), + [anon_sym_fn] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2266), + [anon_sym_if] = ACTIONS(2266), + [anon_sym_impl] = ACTIONS(2266), + [anon_sym_let] = ACTIONS(2266), + [anon_sym_loop] = ACTIONS(2266), + [anon_sym_match] = ACTIONS(2266), + [anon_sym_mod] = ACTIONS(2266), + [anon_sym_pub] = ACTIONS(2266), + [anon_sym_return] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2266), + [anon_sym_struct] = ACTIONS(2266), + [anon_sym_trait] = ACTIONS(2266), + [anon_sym_type] = ACTIONS(2266), + [anon_sym_union] = ACTIONS(2266), + [anon_sym_unsafe] = ACTIONS(2266), + [anon_sym_use] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2266), + [anon_sym_extern] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2266), + [anon_sym_move] = ACTIONS(2266), + [anon_sym_try] = ACTIONS(2266), + [sym_integer_literal] = ACTIONS(2264), + [aux_sym_string_literal_token1] = ACTIONS(2264), + [sym_char_literal] = ACTIONS(2264), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2266), + [sym_super] = ACTIONS(2266), + [sym_crate] = ACTIONS(2266), + [sym_metavariable] = ACTIONS(2264), + [sym_raw_string_literal] = ACTIONS(2264), + [sym_float_literal] = ACTIONS(2264), + }, + [619] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), + [ts_builtin_sym_end] = ACTIONS(2268), + [sym_identifier] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_macro_rules_BANG] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2268), + [anon_sym_u8] = ACTIONS(2270), + [anon_sym_i8] = ACTIONS(2270), + [anon_sym_u16] = ACTIONS(2270), + [anon_sym_i16] = ACTIONS(2270), + [anon_sym_u32] = ACTIONS(2270), + [anon_sym_i32] = ACTIONS(2270), + [anon_sym_u64] = ACTIONS(2270), + [anon_sym_i64] = ACTIONS(2270), + [anon_sym_u128] = ACTIONS(2270), + [anon_sym_i128] = ACTIONS(2270), + [anon_sym_isize] = ACTIONS(2270), + [anon_sym_usize] = ACTIONS(2270), + [anon_sym_f32] = ACTIONS(2270), + [anon_sym_f64] = ACTIONS(2270), + [anon_sym_bool] = ACTIONS(2270), + [anon_sym_str] = ACTIONS(2270), + [anon_sym_char] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_async] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_fn] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_impl] = ACTIONS(2270), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_loop] = ACTIONS(2270), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_mod] = ACTIONS(2270), + [anon_sym_pub] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_trait] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_unsafe] = ACTIONS(2270), + [anon_sym_use] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_DOT_DOT] = ACTIONS(2268), + [anon_sym_yield] = ACTIONS(2270), + [anon_sym_move] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2270), + [sym_integer_literal] = ACTIONS(2268), + [aux_sym_string_literal_token1] = ACTIONS(2268), + [sym_char_literal] = ACTIONS(2268), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2270), + [sym_super] = ACTIONS(2270), + [sym_crate] = ACTIONS(2270), + [sym_metavariable] = ACTIONS(2268), + [sym_raw_string_literal] = ACTIONS(2268), + [sym_float_literal] = ACTIONS(2268), + }, + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [ts_builtin_sym_end] = ACTIONS(2272), + [sym_identifier] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_macro_rules_BANG] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_u8] = ACTIONS(2274), + [anon_sym_i8] = ACTIONS(2274), + [anon_sym_u16] = ACTIONS(2274), + [anon_sym_i16] = ACTIONS(2274), + [anon_sym_u32] = ACTIONS(2274), + [anon_sym_i32] = ACTIONS(2274), + [anon_sym_u64] = ACTIONS(2274), + [anon_sym_i64] = ACTIONS(2274), + [anon_sym_u128] = ACTIONS(2274), + [anon_sym_i128] = ACTIONS(2274), + [anon_sym_isize] = ACTIONS(2274), + [anon_sym_usize] = ACTIONS(2274), + [anon_sym_f32] = ACTIONS(2274), + [anon_sym_f64] = ACTIONS(2274), + [anon_sym_bool] = ACTIONS(2274), + [anon_sym_str] = ACTIONS(2274), + [anon_sym_char] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_default] = ACTIONS(2274), + [anon_sym_enum] = ACTIONS(2274), + [anon_sym_fn] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_impl] = ACTIONS(2274), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_loop] = ACTIONS(2274), + [anon_sym_match] = ACTIONS(2274), + [anon_sym_mod] = ACTIONS(2274), + [anon_sym_pub] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_struct] = ACTIONS(2274), + [anon_sym_trait] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_unsafe] = ACTIONS(2274), + [anon_sym_use] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2274), + [anon_sym_move] = ACTIONS(2274), + [anon_sym_try] = ACTIONS(2274), + [sym_integer_literal] = ACTIONS(2272), + [aux_sym_string_literal_token1] = ACTIONS(2272), + [sym_char_literal] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(2274), + [anon_sym_false] = ACTIONS(2274), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2274), + [sym_super] = ACTIONS(2274), + [sym_crate] = ACTIONS(2274), + [sym_metavariable] = ACTIONS(2272), + [sym_raw_string_literal] = ACTIONS(2272), + [sym_float_literal] = ACTIONS(2272), + }, + [621] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), + [ts_builtin_sym_end] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_macro_rules_BANG] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_u8] = ACTIONS(2278), + [anon_sym_i8] = ACTIONS(2278), + [anon_sym_u16] = ACTIONS(2278), + [anon_sym_i16] = ACTIONS(2278), + [anon_sym_u32] = ACTIONS(2278), + [anon_sym_i32] = ACTIONS(2278), + [anon_sym_u64] = ACTIONS(2278), + [anon_sym_i64] = ACTIONS(2278), + [anon_sym_u128] = ACTIONS(2278), + [anon_sym_i128] = ACTIONS(2278), + [anon_sym_isize] = ACTIONS(2278), + [anon_sym_usize] = ACTIONS(2278), + [anon_sym_f32] = ACTIONS(2278), + [anon_sym_f64] = ACTIONS(2278), + [anon_sym_bool] = ACTIONS(2278), + [anon_sym_str] = ACTIONS(2278), + [anon_sym_char] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_COLON_COLON] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2278), + [anon_sym_async] = ACTIONS(2278), + [anon_sym_break] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(2278), + [anon_sym_continue] = ACTIONS(2278), + [anon_sym_default] = ACTIONS(2278), + [anon_sym_enum] = ACTIONS(2278), + [anon_sym_fn] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2278), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_impl] = ACTIONS(2278), + [anon_sym_let] = ACTIONS(2278), + [anon_sym_loop] = ACTIONS(2278), + [anon_sym_match] = ACTIONS(2278), + [anon_sym_mod] = ACTIONS(2278), + [anon_sym_pub] = ACTIONS(2278), + [anon_sym_return] = ACTIONS(2278), + [anon_sym_static] = ACTIONS(2278), + [anon_sym_struct] = ACTIONS(2278), + [anon_sym_trait] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2278), + [anon_sym_union] = ACTIONS(2278), + [anon_sym_unsafe] = ACTIONS(2278), + [anon_sym_use] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2278), + [anon_sym_extern] = ACTIONS(2278), + [anon_sym_DOT_DOT] = ACTIONS(2276), + [anon_sym_yield] = ACTIONS(2278), + [anon_sym_move] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2278), + [sym_integer_literal] = ACTIONS(2276), + [aux_sym_string_literal_token1] = ACTIONS(2276), + [sym_char_literal] = ACTIONS(2276), + [anon_sym_true] = ACTIONS(2278), + [anon_sym_false] = ACTIONS(2278), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2278), + [sym_super] = ACTIONS(2278), + [sym_crate] = ACTIONS(2278), + [sym_metavariable] = ACTIONS(2276), + [sym_raw_string_literal] = ACTIONS(2276), + [sym_float_literal] = ACTIONS(2276), + }, + [622] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(2280), + [sym_identifier] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_macro_rules_BANG] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2280), + [anon_sym_u8] = ACTIONS(2282), + [anon_sym_i8] = ACTIONS(2282), + [anon_sym_u16] = ACTIONS(2282), + [anon_sym_i16] = ACTIONS(2282), + [anon_sym_u32] = ACTIONS(2282), + [anon_sym_i32] = ACTIONS(2282), + [anon_sym_u64] = ACTIONS(2282), + [anon_sym_i64] = ACTIONS(2282), + [anon_sym_u128] = ACTIONS(2282), + [anon_sym_i128] = ACTIONS(2282), + [anon_sym_isize] = ACTIONS(2282), + [anon_sym_usize] = ACTIONS(2282), + [anon_sym_f32] = ACTIONS(2282), + [anon_sym_f64] = ACTIONS(2282), + [anon_sym_bool] = ACTIONS(2282), + [anon_sym_str] = ACTIONS(2282), + [anon_sym_char] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_COLON_COLON] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [anon_sym_async] = ACTIONS(2282), + [anon_sym_break] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(2282), + [anon_sym_continue] = ACTIONS(2282), + [anon_sym_default] = ACTIONS(2282), + [anon_sym_enum] = ACTIONS(2282), + [anon_sym_fn] = ACTIONS(2282), + [anon_sym_for] = ACTIONS(2282), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_impl] = ACTIONS(2282), + [anon_sym_let] = ACTIONS(2282), + [anon_sym_loop] = ACTIONS(2282), + [anon_sym_match] = ACTIONS(2282), + [anon_sym_mod] = ACTIONS(2282), + [anon_sym_pub] = ACTIONS(2282), + [anon_sym_return] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2282), + [anon_sym_struct] = ACTIONS(2282), + [anon_sym_trait] = ACTIONS(2282), + [anon_sym_type] = ACTIONS(2282), + [anon_sym_union] = ACTIONS(2282), + [anon_sym_unsafe] = ACTIONS(2282), + [anon_sym_use] = ACTIONS(2282), + [anon_sym_while] = ACTIONS(2282), + [anon_sym_extern] = ACTIONS(2282), + [anon_sym_DOT_DOT] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2282), + [anon_sym_move] = ACTIONS(2282), + [anon_sym_try] = ACTIONS(2282), + [sym_integer_literal] = ACTIONS(2280), + [aux_sym_string_literal_token1] = ACTIONS(2280), + [sym_char_literal] = ACTIONS(2280), + [anon_sym_true] = ACTIONS(2282), + [anon_sym_false] = ACTIONS(2282), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2282), + [sym_super] = ACTIONS(2282), + [sym_crate] = ACTIONS(2282), + [sym_metavariable] = ACTIONS(2280), + [sym_raw_string_literal] = ACTIONS(2280), + [sym_float_literal] = ACTIONS(2280), + }, + [623] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), + [ts_builtin_sym_end] = ACTIONS(2284), + [sym_identifier] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_macro_rules_BANG] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_u8] = ACTIONS(2286), + [anon_sym_i8] = ACTIONS(2286), + [anon_sym_u16] = ACTIONS(2286), + [anon_sym_i16] = ACTIONS(2286), + [anon_sym_u32] = ACTIONS(2286), + [anon_sym_i32] = ACTIONS(2286), + [anon_sym_u64] = ACTIONS(2286), + [anon_sym_i64] = ACTIONS(2286), + [anon_sym_u128] = ACTIONS(2286), + [anon_sym_i128] = ACTIONS(2286), + [anon_sym_isize] = ACTIONS(2286), + [anon_sym_usize] = ACTIONS(2286), + [anon_sym_f32] = ACTIONS(2286), + [anon_sym_f64] = ACTIONS(2286), + [anon_sym_bool] = ACTIONS(2286), + [anon_sym_str] = ACTIONS(2286), + [anon_sym_char] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_COLON_COLON] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [anon_sym_fn] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_impl] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_mod] = ACTIONS(2286), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_struct] = ACTIONS(2286), + [anon_sym_trait] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_union] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_DOT_DOT] = ACTIONS(2284), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_move] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [sym_integer_literal] = ACTIONS(2284), + [aux_sym_string_literal_token1] = ACTIONS(2284), + [sym_char_literal] = ACTIONS(2284), + [anon_sym_true] = ACTIONS(2286), + [anon_sym_false] = ACTIONS(2286), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_crate] = ACTIONS(2286), + [sym_metavariable] = ACTIONS(2284), + [sym_raw_string_literal] = ACTIONS(2284), + [sym_float_literal] = ACTIONS(2284), + }, + [624] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_macro_rules_BANG] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_u8] = ACTIONS(2290), + [anon_sym_i8] = ACTIONS(2290), + [anon_sym_u16] = ACTIONS(2290), + [anon_sym_i16] = ACTIONS(2290), + [anon_sym_u32] = ACTIONS(2290), + [anon_sym_i32] = ACTIONS(2290), + [anon_sym_u64] = ACTIONS(2290), + [anon_sym_i64] = ACTIONS(2290), + [anon_sym_u128] = ACTIONS(2290), + [anon_sym_i128] = ACTIONS(2290), + [anon_sym_isize] = ACTIONS(2290), + [anon_sym_usize] = ACTIONS(2290), + [anon_sym_f32] = ACTIONS(2290), + [anon_sym_f64] = ACTIONS(2290), + [anon_sym_bool] = ACTIONS(2290), + [anon_sym_str] = ACTIONS(2290), + [anon_sym_char] = ACTIONS(2290), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_COLON_COLON] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2290), + [anon_sym_async] = ACTIONS(2290), + [anon_sym_break] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_continue] = ACTIONS(2290), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_enum] = ACTIONS(2290), + [anon_sym_fn] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2290), + [anon_sym_if] = ACTIONS(2290), + [anon_sym_impl] = ACTIONS(2290), + [anon_sym_let] = ACTIONS(2290), + [anon_sym_loop] = ACTIONS(2290), + [anon_sym_match] = ACTIONS(2290), + [anon_sym_mod] = ACTIONS(2290), + [anon_sym_pub] = ACTIONS(2290), + [anon_sym_return] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2290), + [anon_sym_struct] = ACTIONS(2290), + [anon_sym_trait] = ACTIONS(2290), + [anon_sym_type] = ACTIONS(2290), + [anon_sym_union] = ACTIONS(2290), + [anon_sym_unsafe] = ACTIONS(2290), + [anon_sym_use] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2290), + [anon_sym_DOT_DOT] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2290), + [anon_sym_move] = ACTIONS(2290), + [anon_sym_try] = ACTIONS(2290), + [sym_integer_literal] = ACTIONS(2288), + [aux_sym_string_literal_token1] = ACTIONS(2288), + [sym_char_literal] = ACTIONS(2288), + [anon_sym_true] = ACTIONS(2290), + [anon_sym_false] = ACTIONS(2290), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2290), + [sym_super] = ACTIONS(2290), + [sym_crate] = ACTIONS(2290), + [sym_metavariable] = ACTIONS(2288), + [sym_raw_string_literal] = ACTIONS(2288), + [sym_float_literal] = ACTIONS(2288), + }, + [625] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_macro_rules_BANG] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2292), + [anon_sym_u8] = ACTIONS(2294), + [anon_sym_i8] = ACTIONS(2294), + [anon_sym_u16] = ACTIONS(2294), + [anon_sym_i16] = ACTIONS(2294), + [anon_sym_u32] = ACTIONS(2294), + [anon_sym_i32] = ACTIONS(2294), + [anon_sym_u64] = ACTIONS(2294), + [anon_sym_i64] = ACTIONS(2294), + [anon_sym_u128] = ACTIONS(2294), + [anon_sym_i128] = ACTIONS(2294), + [anon_sym_isize] = ACTIONS(2294), + [anon_sym_usize] = ACTIONS(2294), + [anon_sym_f32] = ACTIONS(2294), + [anon_sym_f64] = ACTIONS(2294), + [anon_sym_bool] = ACTIONS(2294), + [anon_sym_str] = ACTIONS(2294), + [anon_sym_char] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_fn] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_impl] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_loop] = ACTIONS(2294), + [anon_sym_match] = ACTIONS(2294), + [anon_sym_mod] = ACTIONS(2294), + [anon_sym_pub] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_trait] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_unsafe] = ACTIONS(2294), + [anon_sym_use] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym_DOT_DOT] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_move] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [sym_integer_literal] = ACTIONS(2292), + [aux_sym_string_literal_token1] = ACTIONS(2292), + [sym_char_literal] = ACTIONS(2292), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_crate] = ACTIONS(2294), + [sym_metavariable] = ACTIONS(2292), + [sym_raw_string_literal] = ACTIONS(2292), + [sym_float_literal] = ACTIONS(2292), + }, + [626] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_macro_rules_BANG] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_u8] = ACTIONS(2298), + [anon_sym_i8] = ACTIONS(2298), + [anon_sym_u16] = ACTIONS(2298), + [anon_sym_i16] = ACTIONS(2298), + [anon_sym_u32] = ACTIONS(2298), + [anon_sym_i32] = ACTIONS(2298), + [anon_sym_u64] = ACTIONS(2298), + [anon_sym_i64] = ACTIONS(2298), + [anon_sym_u128] = ACTIONS(2298), + [anon_sym_i128] = ACTIONS(2298), + [anon_sym_isize] = ACTIONS(2298), + [anon_sym_usize] = ACTIONS(2298), + [anon_sym_f32] = ACTIONS(2298), + [anon_sym_f64] = ACTIONS(2298), + [anon_sym_bool] = ACTIONS(2298), + [anon_sym_str] = ACTIONS(2298), + [anon_sym_char] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_COLON_COLON] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_POUND] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [anon_sym_fn] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_impl] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_loop] = ACTIONS(2298), + [anon_sym_match] = ACTIONS(2298), + [anon_sym_mod] = ACTIONS(2298), + [anon_sym_pub] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_struct] = ACTIONS(2298), + [anon_sym_trait] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_union] = ACTIONS(2298), + [anon_sym_unsafe] = ACTIONS(2298), + [anon_sym_use] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_extern] = ACTIONS(2298), + [anon_sym_DOT_DOT] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_move] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [sym_integer_literal] = ACTIONS(2296), + [aux_sym_string_literal_token1] = ACTIONS(2296), + [sym_char_literal] = ACTIONS(2296), + [anon_sym_true] = ACTIONS(2298), + [anon_sym_false] = ACTIONS(2298), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_crate] = ACTIONS(2298), + [sym_metavariable] = ACTIONS(2296), + [sym_raw_string_literal] = ACTIONS(2296), + [sym_float_literal] = ACTIONS(2296), + }, + [627] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_macro_rules_BANG] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_u8] = ACTIONS(2302), + [anon_sym_i8] = ACTIONS(2302), + [anon_sym_u16] = ACTIONS(2302), + [anon_sym_i16] = ACTIONS(2302), + [anon_sym_u32] = ACTIONS(2302), + [anon_sym_i32] = ACTIONS(2302), + [anon_sym_u64] = ACTIONS(2302), + [anon_sym_i64] = ACTIONS(2302), + [anon_sym_u128] = ACTIONS(2302), + [anon_sym_i128] = ACTIONS(2302), + [anon_sym_isize] = ACTIONS(2302), + [anon_sym_usize] = ACTIONS(2302), + [anon_sym_f32] = ACTIONS(2302), + [anon_sym_f64] = ACTIONS(2302), + [anon_sym_bool] = ACTIONS(2302), + [anon_sym_str] = ACTIONS(2302), + [anon_sym_char] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_COLON_COLON] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [anon_sym_fn] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_impl] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_loop] = ACTIONS(2302), + [anon_sym_match] = ACTIONS(2302), + [anon_sym_mod] = ACTIONS(2302), + [anon_sym_pub] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_struct] = ACTIONS(2302), + [anon_sym_trait] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_union] = ACTIONS(2302), + [anon_sym_unsafe] = ACTIONS(2302), + [anon_sym_use] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2302), + [anon_sym_DOT_DOT] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_move] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [sym_integer_literal] = ACTIONS(2300), + [aux_sym_string_literal_token1] = ACTIONS(2300), + [sym_char_literal] = ACTIONS(2300), + [anon_sym_true] = ACTIONS(2302), + [anon_sym_false] = ACTIONS(2302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_crate] = ACTIONS(2302), + [sym_metavariable] = ACTIONS(2300), + [sym_raw_string_literal] = ACTIONS(2300), + [sym_float_literal] = ACTIONS(2300), + }, + [628] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), + [ts_builtin_sym_end] = ACTIONS(2304), + [sym_identifier] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_macro_rules_BANG] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_u8] = ACTIONS(2306), + [anon_sym_i8] = ACTIONS(2306), + [anon_sym_u16] = ACTIONS(2306), + [anon_sym_i16] = ACTIONS(2306), + [anon_sym_u32] = ACTIONS(2306), + [anon_sym_i32] = ACTIONS(2306), + [anon_sym_u64] = ACTIONS(2306), + [anon_sym_i64] = ACTIONS(2306), + [anon_sym_u128] = ACTIONS(2306), + [anon_sym_i128] = ACTIONS(2306), + [anon_sym_isize] = ACTIONS(2306), + [anon_sym_usize] = ACTIONS(2306), + [anon_sym_f32] = ACTIONS(2306), + [anon_sym_f64] = ACTIONS(2306), + [anon_sym_bool] = ACTIONS(2306), + [anon_sym_str] = ACTIONS(2306), + [anon_sym_char] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_COLON_COLON] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_POUND] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2306), + [anon_sym_async] = ACTIONS(2306), + [anon_sym_break] = ACTIONS(2306), + [anon_sym_const] = ACTIONS(2306), + [anon_sym_continue] = ACTIONS(2306), + [anon_sym_default] = ACTIONS(2306), + [anon_sym_enum] = ACTIONS(2306), + [anon_sym_fn] = ACTIONS(2306), + [anon_sym_for] = ACTIONS(2306), + [anon_sym_if] = ACTIONS(2306), + [anon_sym_impl] = ACTIONS(2306), + [anon_sym_let] = ACTIONS(2306), + [anon_sym_loop] = ACTIONS(2306), + [anon_sym_match] = ACTIONS(2306), + [anon_sym_mod] = ACTIONS(2306), + [anon_sym_pub] = ACTIONS(2306), + [anon_sym_return] = ACTIONS(2306), + [anon_sym_static] = ACTIONS(2306), + [anon_sym_struct] = ACTIONS(2306), + [anon_sym_trait] = ACTIONS(2306), + [anon_sym_type] = ACTIONS(2306), + [anon_sym_union] = ACTIONS(2306), + [anon_sym_unsafe] = ACTIONS(2306), + [anon_sym_use] = ACTIONS(2306), + [anon_sym_while] = ACTIONS(2306), + [anon_sym_extern] = ACTIONS(2306), + [anon_sym_DOT_DOT] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2306), + [anon_sym_move] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2306), + [sym_integer_literal] = ACTIONS(2304), + [aux_sym_string_literal_token1] = ACTIONS(2304), + [sym_char_literal] = ACTIONS(2304), + [anon_sym_true] = ACTIONS(2306), + [anon_sym_false] = ACTIONS(2306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2306), + [sym_super] = ACTIONS(2306), + [sym_crate] = ACTIONS(2306), + [sym_metavariable] = ACTIONS(2304), + [sym_raw_string_literal] = ACTIONS(2304), + [sym_float_literal] = ACTIONS(2304), + }, + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), + [ts_builtin_sym_end] = ACTIONS(2308), + [sym_identifier] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_macro_rules_BANG] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_u8] = ACTIONS(2310), + [anon_sym_i8] = ACTIONS(2310), + [anon_sym_u16] = ACTIONS(2310), + [anon_sym_i16] = ACTIONS(2310), + [anon_sym_u32] = ACTIONS(2310), + [anon_sym_i32] = ACTIONS(2310), + [anon_sym_u64] = ACTIONS(2310), + [anon_sym_i64] = ACTIONS(2310), + [anon_sym_u128] = ACTIONS(2310), + [anon_sym_i128] = ACTIONS(2310), + [anon_sym_isize] = ACTIONS(2310), + [anon_sym_usize] = ACTIONS(2310), + [anon_sym_f32] = ACTIONS(2310), + [anon_sym_f64] = ACTIONS(2310), + [anon_sym_bool] = ACTIONS(2310), + [anon_sym_str] = ACTIONS(2310), + [anon_sym_char] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_COLON_COLON] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_AMP] = ACTIONS(2308), + [anon_sym_POUND] = ACTIONS(2308), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_PIPE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [anon_sym_fn] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_impl] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_loop] = ACTIONS(2310), + [anon_sym_match] = ACTIONS(2310), + [anon_sym_mod] = ACTIONS(2310), + [anon_sym_pub] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_struct] = ACTIONS(2310), + [anon_sym_trait] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_union] = ACTIONS(2310), + [anon_sym_unsafe] = ACTIONS(2310), + [anon_sym_use] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(2310), + [anon_sym_DOT_DOT] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_move] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [sym_integer_literal] = ACTIONS(2308), + [aux_sym_string_literal_token1] = ACTIONS(2308), + [sym_char_literal] = ACTIONS(2308), + [anon_sym_true] = ACTIONS(2310), + [anon_sym_false] = ACTIONS(2310), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_crate] = ACTIONS(2310), + [sym_metavariable] = ACTIONS(2308), + [sym_raw_string_literal] = ACTIONS(2308), + [sym_float_literal] = ACTIONS(2308), + }, + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2312), + [anon_sym_macro_rules_BANG] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2312), + [anon_sym_u8] = ACTIONS(2314), + [anon_sym_i8] = ACTIONS(2314), + [anon_sym_u16] = ACTIONS(2314), + [anon_sym_i16] = ACTIONS(2314), + [anon_sym_u32] = ACTIONS(2314), + [anon_sym_i32] = ACTIONS(2314), + [anon_sym_u64] = ACTIONS(2314), + [anon_sym_i64] = ACTIONS(2314), + [anon_sym_u128] = ACTIONS(2314), + [anon_sym_i128] = ACTIONS(2314), + [anon_sym_isize] = ACTIONS(2314), + [anon_sym_usize] = ACTIONS(2314), + [anon_sym_f32] = ACTIONS(2314), + [anon_sym_f64] = ACTIONS(2314), + [anon_sym_bool] = ACTIONS(2314), + [anon_sym_str] = ACTIONS(2314), + [anon_sym_char] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2312), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_AMP] = ACTIONS(2312), + [anon_sym_POUND] = ACTIONS(2312), + [anon_sym_LT] = ACTIONS(2312), + [anon_sym_PIPE] = ACTIONS(2312), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_default] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_fn] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_impl] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_loop] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_mod] = ACTIONS(2314), + [anon_sym_pub] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2314), + [anon_sym_trait] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_union] = ACTIONS(2314), + [anon_sym_unsafe] = ACTIONS(2314), + [anon_sym_use] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_extern] = ACTIONS(2314), + [anon_sym_DOT_DOT] = ACTIONS(2312), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_move] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [sym_integer_literal] = ACTIONS(2312), + [aux_sym_string_literal_token1] = ACTIONS(2312), + [sym_char_literal] = ACTIONS(2312), + [anon_sym_true] = ACTIONS(2314), + [anon_sym_false] = ACTIONS(2314), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_crate] = ACTIONS(2314), + [sym_metavariable] = ACTIONS(2312), + [sym_raw_string_literal] = ACTIONS(2312), + [sym_float_literal] = ACTIONS(2312), + }, + [631] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), + [ts_builtin_sym_end] = ACTIONS(2316), + [sym_identifier] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_macro_rules_BANG] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_LBRACK] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_u8] = ACTIONS(2318), + [anon_sym_i8] = ACTIONS(2318), + [anon_sym_u16] = ACTIONS(2318), + [anon_sym_i16] = ACTIONS(2318), + [anon_sym_u32] = ACTIONS(2318), + [anon_sym_i32] = ACTIONS(2318), + [anon_sym_u64] = ACTIONS(2318), + [anon_sym_i64] = ACTIONS(2318), + [anon_sym_u128] = ACTIONS(2318), + [anon_sym_i128] = ACTIONS(2318), + [anon_sym_isize] = ACTIONS(2318), + [anon_sym_usize] = ACTIONS(2318), + [anon_sym_f32] = ACTIONS(2318), + [anon_sym_f64] = ACTIONS(2318), + [anon_sym_bool] = ACTIONS(2318), + [anon_sym_str] = ACTIONS(2318), + [anon_sym_char] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_COLON_COLON] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_POUND] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2316), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_fn] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_impl] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_loop] = ACTIONS(2318), + [anon_sym_match] = ACTIONS(2318), + [anon_sym_mod] = ACTIONS(2318), + [anon_sym_pub] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_trait] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_unsafe] = ACTIONS(2318), + [anon_sym_use] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_DOT_DOT] = ACTIONS(2316), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_move] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [sym_integer_literal] = ACTIONS(2316), + [aux_sym_string_literal_token1] = ACTIONS(2316), + [sym_char_literal] = ACTIONS(2316), + [anon_sym_true] = ACTIONS(2318), + [anon_sym_false] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_crate] = ACTIONS(2318), + [sym_metavariable] = ACTIONS(2316), + [sym_raw_string_literal] = ACTIONS(2316), + [sym_float_literal] = ACTIONS(2316), + }, + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(2320), + [sym_identifier] = ACTIONS(2322), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_macro_rules_BANG] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_u8] = ACTIONS(2322), + [anon_sym_i8] = ACTIONS(2322), + [anon_sym_u16] = ACTIONS(2322), + [anon_sym_i16] = ACTIONS(2322), + [anon_sym_u32] = ACTIONS(2322), + [anon_sym_i32] = ACTIONS(2322), + [anon_sym_u64] = ACTIONS(2322), + [anon_sym_i64] = ACTIONS(2322), + [anon_sym_u128] = ACTIONS(2322), + [anon_sym_i128] = ACTIONS(2322), + [anon_sym_isize] = ACTIONS(2322), + [anon_sym_usize] = ACTIONS(2322), + [anon_sym_f32] = ACTIONS(2322), + [anon_sym_f64] = ACTIONS(2322), + [anon_sym_bool] = ACTIONS(2322), + [anon_sym_str] = ACTIONS(2322), + [anon_sym_char] = ACTIONS(2322), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_POUND] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2322), + [anon_sym_async] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_default] = ACTIONS(2322), + [anon_sym_enum] = ACTIONS(2322), + [anon_sym_fn] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_impl] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_mod] = ACTIONS(2322), + [anon_sym_pub] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_static] = ACTIONS(2322), + [anon_sym_struct] = ACTIONS(2322), + [anon_sym_trait] = ACTIONS(2322), + [anon_sym_type] = ACTIONS(2322), + [anon_sym_union] = ACTIONS(2322), + [anon_sym_unsafe] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(2320), + [anon_sym_yield] = ACTIONS(2322), + [anon_sym_move] = ACTIONS(2322), + [anon_sym_try] = ACTIONS(2322), + [sym_integer_literal] = ACTIONS(2320), + [aux_sym_string_literal_token1] = ACTIONS(2320), + [sym_char_literal] = ACTIONS(2320), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2322), + [sym_super] = ACTIONS(2322), + [sym_crate] = ACTIONS(2322), + [sym_metavariable] = ACTIONS(2320), + [sym_raw_string_literal] = ACTIONS(2320), + [sym_float_literal] = ACTIONS(2320), + }, + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), + [ts_builtin_sym_end] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_macro_rules_BANG] = ACTIONS(2324), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_RBRACE] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2324), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_u8] = ACTIONS(2326), + [anon_sym_i8] = ACTIONS(2326), + [anon_sym_u16] = ACTIONS(2326), + [anon_sym_i16] = ACTIONS(2326), + [anon_sym_u32] = ACTIONS(2326), + [anon_sym_i32] = ACTIONS(2326), + [anon_sym_u64] = ACTIONS(2326), + [anon_sym_i64] = ACTIONS(2326), + [anon_sym_u128] = ACTIONS(2326), + [anon_sym_i128] = ACTIONS(2326), + [anon_sym_isize] = ACTIONS(2326), + [anon_sym_usize] = ACTIONS(2326), + [anon_sym_f32] = ACTIONS(2326), + [anon_sym_f64] = ACTIONS(2326), + [anon_sym_bool] = ACTIONS(2326), + [anon_sym_str] = ACTIONS(2326), + [anon_sym_char] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_BANG] = ACTIONS(2324), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_POUND] = ACTIONS(2324), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_SQUOTE] = ACTIONS(2326), + [anon_sym_async] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_default] = ACTIONS(2326), + [anon_sym_enum] = ACTIONS(2326), + [anon_sym_fn] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_impl] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_mod] = ACTIONS(2326), + [anon_sym_pub] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_static] = ACTIONS(2326), + [anon_sym_struct] = ACTIONS(2326), + [anon_sym_trait] = ACTIONS(2326), + [anon_sym_type] = ACTIONS(2326), + [anon_sym_union] = ACTIONS(2326), + [anon_sym_unsafe] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_DOT_DOT] = ACTIONS(2324), + [anon_sym_yield] = ACTIONS(2326), + [anon_sym_move] = ACTIONS(2326), + [anon_sym_try] = ACTIONS(2326), + [sym_integer_literal] = ACTIONS(2324), + [aux_sym_string_literal_token1] = ACTIONS(2324), + [sym_char_literal] = ACTIONS(2324), + [anon_sym_true] = ACTIONS(2326), + [anon_sym_false] = ACTIONS(2326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2326), + [sym_super] = ACTIONS(2326), + [sym_crate] = ACTIONS(2326), + [sym_metavariable] = ACTIONS(2324), + [sym_raw_string_literal] = ACTIONS(2324), + [sym_float_literal] = ACTIONS(2324), + }, + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), + [ts_builtin_sym_end] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_macro_rules_BANG] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_u8] = ACTIONS(2330), + [anon_sym_i8] = ACTIONS(2330), + [anon_sym_u16] = ACTIONS(2330), + [anon_sym_i16] = ACTIONS(2330), + [anon_sym_u32] = ACTIONS(2330), + [anon_sym_i32] = ACTIONS(2330), + [anon_sym_u64] = ACTIONS(2330), + [anon_sym_i64] = ACTIONS(2330), + [anon_sym_u128] = ACTIONS(2330), + [anon_sym_i128] = ACTIONS(2330), + [anon_sym_isize] = ACTIONS(2330), + [anon_sym_usize] = ACTIONS(2330), + [anon_sym_f32] = ACTIONS(2330), + [anon_sym_f64] = ACTIONS(2330), + [anon_sym_bool] = ACTIONS(2330), + [anon_sym_str] = ACTIONS(2330), + [anon_sym_char] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_COLON_COLON] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_POUND] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_async] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_default] = ACTIONS(2330), + [anon_sym_enum] = ACTIONS(2330), + [anon_sym_fn] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_impl] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_mod] = ACTIONS(2330), + [anon_sym_pub] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2330), + [anon_sym_struct] = ACTIONS(2330), + [anon_sym_trait] = ACTIONS(2330), + [anon_sym_type] = ACTIONS(2330), + [anon_sym_union] = ACTIONS(2330), + [anon_sym_unsafe] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_DOT_DOT] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2330), + [anon_sym_move] = ACTIONS(2330), + [anon_sym_try] = ACTIONS(2330), + [sym_integer_literal] = ACTIONS(2328), + [aux_sym_string_literal_token1] = ACTIONS(2328), + [sym_char_literal] = ACTIONS(2328), + [anon_sym_true] = ACTIONS(2330), + [anon_sym_false] = ACTIONS(2330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2330), + [sym_super] = ACTIONS(2330), + [sym_crate] = ACTIONS(2330), + [sym_metavariable] = ACTIONS(2328), + [sym_raw_string_literal] = ACTIONS(2328), + [sym_float_literal] = ACTIONS(2328), + }, + [635] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), + [ts_builtin_sym_end] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_macro_rules_BANG] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_u8] = ACTIONS(2334), + [anon_sym_i8] = ACTIONS(2334), + [anon_sym_u16] = ACTIONS(2334), + [anon_sym_i16] = ACTIONS(2334), + [anon_sym_u32] = ACTIONS(2334), + [anon_sym_i32] = ACTIONS(2334), + [anon_sym_u64] = ACTIONS(2334), + [anon_sym_i64] = ACTIONS(2334), + [anon_sym_u128] = ACTIONS(2334), + [anon_sym_i128] = ACTIONS(2334), + [anon_sym_isize] = ACTIONS(2334), + [anon_sym_usize] = ACTIONS(2334), + [anon_sym_f32] = ACTIONS(2334), + [anon_sym_f64] = ACTIONS(2334), + [anon_sym_bool] = ACTIONS(2334), + [anon_sym_str] = ACTIONS(2334), + [anon_sym_char] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2334), + [anon_sym_async] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2334), + [anon_sym_enum] = ACTIONS(2334), + [anon_sym_fn] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_impl] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_mod] = ACTIONS(2334), + [anon_sym_pub] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2334), + [anon_sym_struct] = ACTIONS(2334), + [anon_sym_trait] = ACTIONS(2334), + [anon_sym_type] = ACTIONS(2334), + [anon_sym_union] = ACTIONS(2334), + [anon_sym_unsafe] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_DOT_DOT] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2334), + [anon_sym_move] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2334), + [sym_integer_literal] = ACTIONS(2332), + [aux_sym_string_literal_token1] = ACTIONS(2332), + [sym_char_literal] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2334), + [anon_sym_false] = ACTIONS(2334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2334), + [sym_super] = ACTIONS(2334), + [sym_crate] = ACTIONS(2334), + [sym_metavariable] = ACTIONS(2332), + [sym_raw_string_literal] = ACTIONS(2332), + [sym_float_literal] = ACTIONS(2332), + }, + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(2336), + [sym_identifier] = ACTIONS(2338), + [anon_sym_SEMI] = ACTIONS(2336), + [anon_sym_macro_rules_BANG] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2336), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2336), + [anon_sym_STAR] = ACTIONS(2336), + [anon_sym_u8] = ACTIONS(2338), + [anon_sym_i8] = ACTIONS(2338), + [anon_sym_u16] = ACTIONS(2338), + [anon_sym_i16] = ACTIONS(2338), + [anon_sym_u32] = ACTIONS(2338), + [anon_sym_i32] = ACTIONS(2338), + [anon_sym_u64] = ACTIONS(2338), + [anon_sym_i64] = ACTIONS(2338), + [anon_sym_u128] = ACTIONS(2338), + [anon_sym_i128] = ACTIONS(2338), + [anon_sym_isize] = ACTIONS(2338), + [anon_sym_usize] = ACTIONS(2338), + [anon_sym_f32] = ACTIONS(2338), + [anon_sym_f64] = ACTIONS(2338), + [anon_sym_bool] = ACTIONS(2338), + [anon_sym_str] = ACTIONS(2338), + [anon_sym_char] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2336), + [anon_sym_COLON_COLON] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(2336), + [anon_sym_SQUOTE] = ACTIONS(2338), + [anon_sym_async] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_default] = ACTIONS(2338), + [anon_sym_enum] = ACTIONS(2338), + [anon_sym_fn] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_impl] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_mod] = ACTIONS(2338), + [anon_sym_pub] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2338), + [anon_sym_struct] = ACTIONS(2338), + [anon_sym_trait] = ACTIONS(2338), + [anon_sym_type] = ACTIONS(2338), + [anon_sym_union] = ACTIONS(2338), + [anon_sym_unsafe] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_DOT_DOT] = ACTIONS(2336), + [anon_sym_yield] = ACTIONS(2338), + [anon_sym_move] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2336), + [aux_sym_string_literal_token1] = ACTIONS(2336), + [sym_char_literal] = ACTIONS(2336), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2338), + [sym_super] = ACTIONS(2338), + [sym_crate] = ACTIONS(2338), + [sym_metavariable] = ACTIONS(2336), + [sym_raw_string_literal] = ACTIONS(2336), + [sym_float_literal] = ACTIONS(2336), + }, + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_macro_rules_BANG] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_u8] = ACTIONS(2342), + [anon_sym_i8] = ACTIONS(2342), + [anon_sym_u16] = ACTIONS(2342), + [anon_sym_i16] = ACTIONS(2342), + [anon_sym_u32] = ACTIONS(2342), + [anon_sym_i32] = ACTIONS(2342), + [anon_sym_u64] = ACTIONS(2342), + [anon_sym_i64] = ACTIONS(2342), + [anon_sym_u128] = ACTIONS(2342), + [anon_sym_i128] = ACTIONS(2342), + [anon_sym_isize] = ACTIONS(2342), + [anon_sym_usize] = ACTIONS(2342), + [anon_sym_f32] = ACTIONS(2342), + [anon_sym_f64] = ACTIONS(2342), + [anon_sym_bool] = ACTIONS(2342), + [anon_sym_str] = ACTIONS(2342), + [anon_sym_char] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_AMP] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_impl] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_mod] = ACTIONS(2342), + [anon_sym_pub] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_static] = ACTIONS(2342), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_trait] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_DOT_DOT] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2342), + [anon_sym_move] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2342), + [sym_integer_literal] = ACTIONS(2340), + [aux_sym_string_literal_token1] = ACTIONS(2340), + [sym_char_literal] = ACTIONS(2340), + [anon_sym_true] = ACTIONS(2342), + [anon_sym_false] = ACTIONS(2342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2342), + [sym_super] = ACTIONS(2342), + [sym_crate] = ACTIONS(2342), + [sym_metavariable] = ACTIONS(2340), + [sym_raw_string_literal] = ACTIONS(2340), + [sym_float_literal] = ACTIONS(2340), + }, + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2346), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_macro_rules_BANG] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(2344), + [anon_sym_u8] = ACTIONS(2346), + [anon_sym_i8] = ACTIONS(2346), + [anon_sym_u16] = ACTIONS(2346), + [anon_sym_i16] = ACTIONS(2346), + [anon_sym_u32] = ACTIONS(2346), + [anon_sym_i32] = ACTIONS(2346), + [anon_sym_u64] = ACTIONS(2346), + [anon_sym_i64] = ACTIONS(2346), + [anon_sym_u128] = ACTIONS(2346), + [anon_sym_i128] = ACTIONS(2346), + [anon_sym_isize] = ACTIONS(2346), + [anon_sym_usize] = ACTIONS(2346), + [anon_sym_f32] = ACTIONS(2346), + [anon_sym_f64] = ACTIONS(2346), + [anon_sym_bool] = ACTIONS(2346), + [anon_sym_str] = ACTIONS(2346), + [anon_sym_char] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_COLON_COLON] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2344), + [anon_sym_AMP] = ACTIONS(2344), + [anon_sym_POUND] = ACTIONS(2344), + [anon_sym_LT] = ACTIONS(2344), + [anon_sym_PIPE] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_async] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_impl] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_mod] = ACTIONS(2346), + [anon_sym_pub] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_trait] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_DOT_DOT] = ACTIONS(2344), + [anon_sym_yield] = ACTIONS(2346), + [anon_sym_move] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [sym_integer_literal] = ACTIONS(2344), + [aux_sym_string_literal_token1] = ACTIONS(2344), + [sym_char_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2346), + [sym_super] = ACTIONS(2346), + [sym_crate] = ACTIONS(2346), + [sym_metavariable] = ACTIONS(2344), + [sym_raw_string_literal] = ACTIONS(2344), + [sym_float_literal] = ACTIONS(2344), + }, + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_macro_rules_BANG] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_u8] = ACTIONS(2350), + [anon_sym_i8] = ACTIONS(2350), + [anon_sym_u16] = ACTIONS(2350), + [anon_sym_i16] = ACTIONS(2350), + [anon_sym_u32] = ACTIONS(2350), + [anon_sym_i32] = ACTIONS(2350), + [anon_sym_u64] = ACTIONS(2350), + [anon_sym_i64] = ACTIONS(2350), + [anon_sym_u128] = ACTIONS(2350), + [anon_sym_i128] = ACTIONS(2350), + [anon_sym_isize] = ACTIONS(2350), + [anon_sym_usize] = ACTIONS(2350), + [anon_sym_f32] = ACTIONS(2350), + [anon_sym_f64] = ACTIONS(2350), + [anon_sym_bool] = ACTIONS(2350), + [anon_sym_str] = ACTIONS(2350), + [anon_sym_char] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_COLON_COLON] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2350), + [anon_sym_async] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_fn] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_impl] = ACTIONS(2350), + [anon_sym_let] = ACTIONS(2350), + [anon_sym_loop] = ACTIONS(2350), + [anon_sym_match] = ACTIONS(2350), + [anon_sym_mod] = ACTIONS(2350), + [anon_sym_pub] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_trait] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_unsafe] = ACTIONS(2350), + [anon_sym_use] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym_DOT_DOT] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2350), + [anon_sym_move] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2350), + [sym_integer_literal] = ACTIONS(2348), + [aux_sym_string_literal_token1] = ACTIONS(2348), + [sym_char_literal] = ACTIONS(2348), + [anon_sym_true] = ACTIONS(2350), + [anon_sym_false] = ACTIONS(2350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2350), + [sym_super] = ACTIONS(2350), + [sym_crate] = ACTIONS(2350), + [sym_metavariable] = ACTIONS(2348), + [sym_raw_string_literal] = ACTIONS(2348), + [sym_float_literal] = ACTIONS(2348), + }, + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), + [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_LBRACE] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2352), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2354), + [sym_super] = ACTIONS(2354), + [sym_crate] = ACTIONS(2354), + [sym_metavariable] = ACTIONS(2352), + [sym_raw_string_literal] = ACTIONS(2352), + [sym_float_literal] = ACTIONS(2352), + }, + [641] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [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_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_POUND] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2356), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_crate] = ACTIONS(2358), + [sym_metavariable] = ACTIONS(2356), + [sym_raw_string_literal] = ACTIONS(2356), + [sym_float_literal] = ACTIONS(2356), + }, + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), + [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_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2360), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2362), + [sym_super] = ACTIONS(2362), + [sym_crate] = ACTIONS(2362), + [sym_metavariable] = ACTIONS(2360), + [sym_raw_string_literal] = ACTIONS(2360), + [sym_float_literal] = ACTIONS(2360), + }, + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), + [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_LBRACE] = ACTIONS(2364), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2364), + [anon_sym_BANG] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(2364), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2364), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_crate] = ACTIONS(2366), + [sym_metavariable] = ACTIONS(2364), + [sym_raw_string_literal] = ACTIONS(2364), + [sym_float_literal] = ACTIONS(2364), + }, + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), + [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_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2368), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_crate] = ACTIONS(2370), + [sym_metavariable] = ACTIONS(2368), + [sym_raw_string_literal] = ACTIONS(2368), + [sym_float_literal] = ACTIONS(2368), + }, + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [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_LBRACE] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(2372), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(2372), + [anon_sym_LT] = ACTIONS(2372), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2372), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2374), + [sym_super] = ACTIONS(2374), + [sym_crate] = ACTIONS(2374), + [sym_metavariable] = ACTIONS(2372), + [sym_raw_string_literal] = ACTIONS(2372), + [sym_float_literal] = ACTIONS(2372), + }, + [646] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [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_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_POUND] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2376), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2378), + [sym_super] = ACTIONS(2378), + [sym_crate] = ACTIONS(2378), + [sym_metavariable] = ACTIONS(2376), + [sym_raw_string_literal] = ACTIONS(2376), + [sym_float_literal] = ACTIONS(2376), + }, + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2382), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_macro_rules_BANG] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_u8] = ACTIONS(2382), + [anon_sym_i8] = ACTIONS(2382), + [anon_sym_u16] = ACTIONS(2382), + [anon_sym_i16] = ACTIONS(2382), + [anon_sym_u32] = ACTIONS(2382), + [anon_sym_i32] = ACTIONS(2382), + [anon_sym_u64] = ACTIONS(2382), + [anon_sym_i64] = ACTIONS(2382), + [anon_sym_u128] = ACTIONS(2382), + [anon_sym_i128] = ACTIONS(2382), + [anon_sym_isize] = ACTIONS(2382), + [anon_sym_usize] = ACTIONS(2382), + [anon_sym_f32] = ACTIONS(2382), + [anon_sym_f64] = ACTIONS(2382), + [anon_sym_bool] = ACTIONS(2382), + [anon_sym_str] = ACTIONS(2382), + [anon_sym_char] = ACTIONS(2382), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_COLON_COLON] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_POUND] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2382), + [anon_sym_async] = ACTIONS(2382), + [anon_sym_break] = ACTIONS(2382), + [anon_sym_const] = ACTIONS(2382), + [anon_sym_continue] = ACTIONS(2382), + [anon_sym_default] = ACTIONS(2382), + [anon_sym_enum] = ACTIONS(2382), + [anon_sym_fn] = ACTIONS(2382), + [anon_sym_for] = ACTIONS(2382), + [anon_sym_if] = ACTIONS(2382), + [anon_sym_impl] = ACTIONS(2382), + [anon_sym_let] = ACTIONS(2382), + [anon_sym_loop] = ACTIONS(2382), + [anon_sym_match] = ACTIONS(2382), + [anon_sym_mod] = ACTIONS(2382), + [anon_sym_pub] = ACTIONS(2382), + [anon_sym_return] = ACTIONS(2382), + [anon_sym_static] = ACTIONS(2382), + [anon_sym_struct] = ACTIONS(2382), + [anon_sym_trait] = ACTIONS(2382), + [anon_sym_type] = ACTIONS(2382), + [anon_sym_union] = ACTIONS(2382), + [anon_sym_unsafe] = ACTIONS(2382), + [anon_sym_use] = ACTIONS(2382), + [anon_sym_while] = ACTIONS(2382), + [anon_sym_extern] = ACTIONS(2382), + [anon_sym_DOT_DOT] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2382), + [anon_sym_move] = ACTIONS(2382), + [anon_sym_try] = ACTIONS(2382), + [sym_integer_literal] = ACTIONS(2380), + [aux_sym_string_literal_token1] = ACTIONS(2380), + [sym_char_literal] = ACTIONS(2380), + [anon_sym_true] = ACTIONS(2382), + [anon_sym_false] = ACTIONS(2382), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2382), + [sym_super] = ACTIONS(2382), + [sym_crate] = ACTIONS(2382), + [sym_metavariable] = ACTIONS(2380), + [sym_raw_string_literal] = ACTIONS(2380), + [sym_float_literal] = ACTIONS(2380), + }, + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(2384), + [sym_identifier] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_macro_rules_BANG] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_u8] = ACTIONS(2386), + [anon_sym_i8] = ACTIONS(2386), + [anon_sym_u16] = ACTIONS(2386), + [anon_sym_i16] = ACTIONS(2386), + [anon_sym_u32] = ACTIONS(2386), + [anon_sym_i32] = ACTIONS(2386), + [anon_sym_u64] = ACTIONS(2386), + [anon_sym_i64] = ACTIONS(2386), + [anon_sym_u128] = ACTIONS(2386), + [anon_sym_i128] = ACTIONS(2386), + [anon_sym_isize] = ACTIONS(2386), + [anon_sym_usize] = ACTIONS(2386), + [anon_sym_f32] = ACTIONS(2386), + [anon_sym_f64] = ACTIONS(2386), + [anon_sym_bool] = ACTIONS(2386), + [anon_sym_str] = ACTIONS(2386), + [anon_sym_char] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_POUND] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_default] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [anon_sym_fn] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_impl] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_loop] = ACTIONS(2386), + [anon_sym_match] = ACTIONS(2386), + [anon_sym_mod] = ACTIONS(2386), + [anon_sym_pub] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_struct] = ACTIONS(2386), + [anon_sym_trait] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_union] = ACTIONS(2386), + [anon_sym_unsafe] = ACTIONS(2386), + [anon_sym_use] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_extern] = ACTIONS(2386), + [anon_sym_DOT_DOT] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_move] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [sym_integer_literal] = ACTIONS(2384), + [aux_sym_string_literal_token1] = ACTIONS(2384), + [sym_char_literal] = ACTIONS(2384), + [anon_sym_true] = ACTIONS(2386), + [anon_sym_false] = ACTIONS(2386), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_crate] = ACTIONS(2386), + [sym_metavariable] = ACTIONS(2384), + [sym_raw_string_literal] = ACTIONS(2384), + [sym_float_literal] = ACTIONS(2384), + }, + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_macro_rules_BANG] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_u8] = ACTIONS(2390), + [anon_sym_i8] = ACTIONS(2390), + [anon_sym_u16] = ACTIONS(2390), + [anon_sym_i16] = ACTIONS(2390), + [anon_sym_u32] = ACTIONS(2390), + [anon_sym_i32] = ACTIONS(2390), + [anon_sym_u64] = ACTIONS(2390), + [anon_sym_i64] = ACTIONS(2390), + [anon_sym_u128] = ACTIONS(2390), + [anon_sym_i128] = ACTIONS(2390), + [anon_sym_isize] = ACTIONS(2390), + [anon_sym_usize] = ACTIONS(2390), + [anon_sym_f32] = ACTIONS(2390), + [anon_sym_f64] = ACTIONS(2390), + [anon_sym_bool] = ACTIONS(2390), + [anon_sym_str] = ACTIONS(2390), + [anon_sym_char] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_COLON_COLON] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2390), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_break] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [anon_sym_continue] = ACTIONS(2390), + [anon_sym_default] = ACTIONS(2390), + [anon_sym_enum] = ACTIONS(2390), + [anon_sym_fn] = ACTIONS(2390), + [anon_sym_for] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(2390), + [anon_sym_impl] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_loop] = ACTIONS(2390), + [anon_sym_match] = ACTIONS(2390), + [anon_sym_mod] = ACTIONS(2390), + [anon_sym_pub] = ACTIONS(2390), + [anon_sym_return] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2390), + [anon_sym_trait] = ACTIONS(2390), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_union] = ACTIONS(2390), + [anon_sym_unsafe] = ACTIONS(2390), + [anon_sym_use] = ACTIONS(2390), + [anon_sym_while] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym_DOT_DOT] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2390), + [anon_sym_move] = ACTIONS(2390), + [anon_sym_try] = ACTIONS(2390), + [sym_integer_literal] = ACTIONS(2388), + [aux_sym_string_literal_token1] = ACTIONS(2388), + [sym_char_literal] = ACTIONS(2388), + [anon_sym_true] = ACTIONS(2390), + [anon_sym_false] = ACTIONS(2390), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2390), + [sym_super] = ACTIONS(2390), + [sym_crate] = ACTIONS(2390), + [sym_metavariable] = ACTIONS(2388), + [sym_raw_string_literal] = ACTIONS(2388), + [sym_float_literal] = ACTIONS(2388), + }, + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(2392), + [sym_identifier] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_macro_rules_BANG] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_u8] = ACTIONS(2394), + [anon_sym_i8] = ACTIONS(2394), + [anon_sym_u16] = ACTIONS(2394), + [anon_sym_i16] = ACTIONS(2394), + [anon_sym_u32] = ACTIONS(2394), + [anon_sym_i32] = ACTIONS(2394), + [anon_sym_u64] = ACTIONS(2394), + [anon_sym_i64] = ACTIONS(2394), + [anon_sym_u128] = ACTIONS(2394), + [anon_sym_i128] = ACTIONS(2394), + [anon_sym_isize] = ACTIONS(2394), + [anon_sym_usize] = ACTIONS(2394), + [anon_sym_f32] = ACTIONS(2394), + [anon_sym_f64] = ACTIONS(2394), + [anon_sym_bool] = ACTIONS(2394), + [anon_sym_str] = ACTIONS(2394), + [anon_sym_char] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(2394), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_break] = ACTIONS(2394), + [anon_sym_const] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2394), + [anon_sym_default] = ACTIONS(2394), + [anon_sym_enum] = ACTIONS(2394), + [anon_sym_fn] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2394), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_impl] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_loop] = ACTIONS(2394), + [anon_sym_match] = ACTIONS(2394), + [anon_sym_mod] = ACTIONS(2394), + [anon_sym_pub] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2394), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_struct] = ACTIONS(2394), + [anon_sym_trait] = ACTIONS(2394), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_union] = ACTIONS(2394), + [anon_sym_unsafe] = ACTIONS(2394), + [anon_sym_use] = ACTIONS(2394), + [anon_sym_while] = ACTIONS(2394), + [anon_sym_extern] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2392), + [anon_sym_yield] = ACTIONS(2394), + [anon_sym_move] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2394), + [sym_integer_literal] = ACTIONS(2392), + [aux_sym_string_literal_token1] = ACTIONS(2392), + [sym_char_literal] = ACTIONS(2392), + [anon_sym_true] = ACTIONS(2394), + [anon_sym_false] = ACTIONS(2394), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2394), + [sym_super] = ACTIONS(2394), + [sym_crate] = ACTIONS(2394), + [sym_metavariable] = ACTIONS(2392), + [sym_raw_string_literal] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2392), + }, + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_macro_rules_BANG] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_u8] = ACTIONS(2398), + [anon_sym_i8] = ACTIONS(2398), + [anon_sym_u16] = ACTIONS(2398), + [anon_sym_i16] = ACTIONS(2398), + [anon_sym_u32] = ACTIONS(2398), + [anon_sym_i32] = ACTIONS(2398), + [anon_sym_u64] = ACTIONS(2398), + [anon_sym_i64] = ACTIONS(2398), + [anon_sym_u128] = ACTIONS(2398), + [anon_sym_i128] = ACTIONS(2398), + [anon_sym_isize] = ACTIONS(2398), + [anon_sym_usize] = ACTIONS(2398), + [anon_sym_f32] = ACTIONS(2398), + [anon_sym_f64] = ACTIONS(2398), + [anon_sym_bool] = ACTIONS(2398), + [anon_sym_str] = ACTIONS(2398), + [anon_sym_char] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2398), + [anon_sym_async] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_default] = ACTIONS(2398), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_impl] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_mod] = ACTIONS(2398), + [anon_sym_pub] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_static] = ACTIONS(2398), + [anon_sym_struct] = ACTIONS(2398), + [anon_sym_trait] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2398), + [anon_sym_union] = ACTIONS(2398), + [anon_sym_unsafe] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_DOT_DOT] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2398), + [anon_sym_move] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2398), + [sym_integer_literal] = ACTIONS(2396), + [aux_sym_string_literal_token1] = ACTIONS(2396), + [sym_char_literal] = ACTIONS(2396), + [anon_sym_true] = ACTIONS(2398), + [anon_sym_false] = ACTIONS(2398), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2398), + [sym_super] = ACTIONS(2398), + [sym_crate] = ACTIONS(2398), + [sym_metavariable] = ACTIONS(2396), + [sym_raw_string_literal] = ACTIONS(2396), + [sym_float_literal] = ACTIONS(2396), + }, + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_macro_rules_BANG] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2400), + [anon_sym_u8] = ACTIONS(2402), + [anon_sym_i8] = ACTIONS(2402), + [anon_sym_u16] = ACTIONS(2402), + [anon_sym_i16] = ACTIONS(2402), + [anon_sym_u32] = ACTIONS(2402), + [anon_sym_i32] = ACTIONS(2402), + [anon_sym_u64] = ACTIONS(2402), + [anon_sym_i64] = ACTIONS(2402), + [anon_sym_u128] = ACTIONS(2402), + [anon_sym_i128] = ACTIONS(2402), + [anon_sym_isize] = ACTIONS(2402), + [anon_sym_usize] = ACTIONS(2402), + [anon_sym_f32] = ACTIONS(2402), + [anon_sym_f64] = ACTIONS(2402), + [anon_sym_bool] = ACTIONS(2402), + [anon_sym_str] = ACTIONS(2402), + [anon_sym_char] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(2400), + [anon_sym_LT] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_fn] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_impl] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_mod] = ACTIONS(2402), + [anon_sym_pub] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_trait] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_unsafe] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2400), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_move] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [sym_integer_literal] = ACTIONS(2400), + [aux_sym_string_literal_token1] = ACTIONS(2400), + [sym_char_literal] = ACTIONS(2400), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_crate] = ACTIONS(2402), + [sym_metavariable] = ACTIONS(2400), + [sym_raw_string_literal] = ACTIONS(2400), + [sym_float_literal] = ACTIONS(2400), + }, + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2404), + [sym_identifier] = ACTIONS(2406), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_macro_rules_BANG] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_u8] = ACTIONS(2406), + [anon_sym_i8] = ACTIONS(2406), + [anon_sym_u16] = ACTIONS(2406), + [anon_sym_i16] = ACTIONS(2406), + [anon_sym_u32] = ACTIONS(2406), + [anon_sym_i32] = ACTIONS(2406), + [anon_sym_u64] = ACTIONS(2406), + [anon_sym_i64] = ACTIONS(2406), + [anon_sym_u128] = ACTIONS(2406), + [anon_sym_i128] = ACTIONS(2406), + [anon_sym_isize] = ACTIONS(2406), + [anon_sym_usize] = ACTIONS(2406), + [anon_sym_f32] = ACTIONS(2406), + [anon_sym_f64] = ACTIONS(2406), + [anon_sym_bool] = ACTIONS(2406), + [anon_sym_str] = ACTIONS(2406), + [anon_sym_char] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2406), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_default] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2406), + [anon_sym_fn] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_impl] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_mod] = ACTIONS(2406), + [anon_sym_pub] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_struct] = ACTIONS(2406), + [anon_sym_trait] = ACTIONS(2406), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_union] = ACTIONS(2406), + [anon_sym_unsafe] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_DOT_DOT] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2406), + [anon_sym_move] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2406), + [sym_integer_literal] = ACTIONS(2404), + [aux_sym_string_literal_token1] = ACTIONS(2404), + [sym_char_literal] = ACTIONS(2404), + [anon_sym_true] = ACTIONS(2406), + [anon_sym_false] = ACTIONS(2406), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2406), + [sym_super] = ACTIONS(2406), + [sym_crate] = ACTIONS(2406), + [sym_metavariable] = ACTIONS(2404), + [sym_raw_string_literal] = ACTIONS(2404), + [sym_float_literal] = ACTIONS(2404), + }, + [654] = { + [sym_empty_statement] = STATE(1426), + [sym_macro_definition] = STATE(1426), + [sym_attribute_item] = STATE(1426), + [sym_inner_attribute_item] = STATE(1426), + [sym_mod_item] = STATE(1426), + [sym_foreign_mod_item] = STATE(1426), + [sym_struct_item] = STATE(1426), + [sym_union_item] = STATE(1426), + [sym_enum_item] = STATE(1426), + [sym_extern_crate_declaration] = STATE(1426), + [sym_const_item] = STATE(1426), + [sym_static_item] = STATE(1426), + [sym_type_item] = STATE(1426), + [sym_function_item] = STATE(1426), + [sym_function_signature_item] = STATE(1426), + [sym_function_modifiers] = STATE(3492), + [sym_impl_item] = STATE(1426), + [sym_trait_item] = STATE(1426), + [sym_associated_type] = STATE(1426), + [sym_let_declaration] = STATE(1426), + [sym_use_declaration] = STATE(1426), + [sym_extern_modifier] = STATE(2121), + [sym_visibility_modifier] = STATE(1931), + [sym_bracketed_type] = STATE(3236), + [sym_generic_type_with_turbofish] = STATE(3261), + [sym_macro_invocation] = STATE(1426), + [sym_scoped_identifier] = STATE(3002), + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [aux_sym_declaration_list_repeat1] = STATE(506), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(1715), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_macro_rules_BANG] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_u8] = ACTIONS(1723), + [anon_sym_i8] = ACTIONS(1723), + [anon_sym_u16] = ACTIONS(1723), + [anon_sym_i16] = ACTIONS(1723), + [anon_sym_u32] = ACTIONS(1723), + [anon_sym_i32] = ACTIONS(1723), + [anon_sym_u64] = ACTIONS(1723), + [anon_sym_i64] = ACTIONS(1723), + [anon_sym_u128] = ACTIONS(1723), + [anon_sym_i128] = ACTIONS(1723), + [anon_sym_isize] = ACTIONS(1723), + [anon_sym_usize] = ACTIONS(1723), + [anon_sym_f32] = ACTIONS(1723), + [anon_sym_f64] = ACTIONS(1723), + [anon_sym_bool] = ACTIONS(1723), + [anon_sym_str] = ACTIONS(1723), + [anon_sym_char] = ACTIONS(1723), + [anon_sym_COLON_COLON] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1731), + [anon_sym_enum] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1735), + [anon_sym_impl] = ACTIONS(1737), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_mod] = ACTIONS(1741), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1743), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_trait] = ACTIONS(1747), + [anon_sym_type] = ACTIONS(1749), + [anon_sym_union] = ACTIONS(1751), + [anon_sym_unsafe] = ACTIONS(1753), + [anon_sym_use] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1759), + [sym_super] = ACTIONS(1759), + [sym_crate] = ACTIONS(1761), + [sym_metavariable] = ACTIONS(1763), + }, + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [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_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_fn] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_impl] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_loop] = ACTIONS(2412), + [anon_sym_match] = ACTIONS(2412), + [anon_sym_mod] = ACTIONS(2412), + [anon_sym_pub] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_trait] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_unsafe] = ACTIONS(2412), + [anon_sym_use] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_DOT_DOT] = ACTIONS(2410), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2412), + [sym_super] = ACTIONS(2412), + [sym_crate] = ACTIONS(2412), + [sym_metavariable] = ACTIONS(2410), + [sym_raw_string_literal] = ACTIONS(2410), + [sym_float_literal] = ACTIONS(2410), + }, + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [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_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2416), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_fn] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_impl] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_loop] = ACTIONS(2416), + [anon_sym_match] = ACTIONS(2416), + [anon_sym_mod] = ACTIONS(2416), + [anon_sym_pub] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_trait] = ACTIONS(2416), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(2416), + [anon_sym_use] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2414), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2416), + [sym_super] = ACTIONS(2416), + [sym_crate] = ACTIONS(2416), + [sym_metavariable] = ACTIONS(2414), + [sym_raw_string_literal] = ACTIONS(2414), + [sym_float_literal] = ACTIONS(2414), + }, + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [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_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_fn] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_impl] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_loop] = ACTIONS(2420), + [anon_sym_match] = ACTIONS(2420), + [anon_sym_mod] = ACTIONS(2420), + [anon_sym_pub] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_trait] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_unsafe] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_crate] = ACTIONS(2420), + [sym_metavariable] = ACTIONS(2418), + [sym_raw_string_literal] = ACTIONS(2418), + [sym_float_literal] = ACTIONS(2418), + }, + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [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_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_fn] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_impl] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_loop] = ACTIONS(2424), + [anon_sym_match] = ACTIONS(2424), + [anon_sym_mod] = ACTIONS(2424), + [anon_sym_pub] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_trait] = ACTIONS(2424), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_unsafe] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_DOT_DOT] = ACTIONS(2422), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2424), + [sym_super] = ACTIONS(2424), + [sym_crate] = ACTIONS(2424), + [sym_metavariable] = ACTIONS(2422), + [sym_raw_string_literal] = ACTIONS(2422), + [sym_float_literal] = ACTIONS(2422), + }, + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [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_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_POUND] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_PIPE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_fn] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_impl] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_loop] = ACTIONS(2428), + [anon_sym_match] = ACTIONS(2428), + [anon_sym_mod] = ACTIONS(2428), + [anon_sym_pub] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_trait] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(2428), + [anon_sym_use] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym_DOT_DOT] = ACTIONS(2426), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_crate] = ACTIONS(2428), + [sym_metavariable] = ACTIONS(2426), + [sym_raw_string_literal] = ACTIONS(2426), + [sym_float_literal] = ACTIONS(2426), + }, + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [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_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_fn] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_impl] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_loop] = ACTIONS(2432), + [anon_sym_match] = ACTIONS(2432), + [anon_sym_mod] = ACTIONS(2432), + [anon_sym_pub] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_trait] = ACTIONS(2432), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_unsafe] = ACTIONS(2432), + [anon_sym_use] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym_DOT_DOT] = ACTIONS(2430), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2432), + [sym_super] = ACTIONS(2432), + [sym_crate] = ACTIONS(2432), + [sym_metavariable] = ACTIONS(2430), + [sym_raw_string_literal] = ACTIONS(2430), + [sym_float_literal] = ACTIONS(2430), + }, + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_macro_rules_BANG] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_u8] = ACTIONS(2436), + [anon_sym_i8] = ACTIONS(2436), + [anon_sym_u16] = ACTIONS(2436), + [anon_sym_i16] = ACTIONS(2436), + [anon_sym_u32] = ACTIONS(2436), + [anon_sym_i32] = ACTIONS(2436), + [anon_sym_u64] = ACTIONS(2436), + [anon_sym_i64] = ACTIONS(2436), + [anon_sym_u128] = ACTIONS(2436), + [anon_sym_i128] = ACTIONS(2436), + [anon_sym_isize] = ACTIONS(2436), + [anon_sym_usize] = ACTIONS(2436), + [anon_sym_f32] = ACTIONS(2436), + [anon_sym_f64] = ACTIONS(2436), + [anon_sym_bool] = ACTIONS(2436), + [anon_sym_str] = ACTIONS(2436), + [anon_sym_char] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_POUND] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_fn] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_impl] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_loop] = ACTIONS(2436), + [anon_sym_match] = ACTIONS(2436), + [anon_sym_mod] = ACTIONS(2436), + [anon_sym_pub] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_trait] = ACTIONS(2436), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_unsafe] = ACTIONS(2436), + [anon_sym_use] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2436), + [anon_sym_move] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [sym_integer_literal] = ACTIONS(2434), + [aux_sym_string_literal_token1] = ACTIONS(2434), + [sym_char_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2436), + [sym_super] = ACTIONS(2436), + [sym_crate] = ACTIONS(2436), + [sym_metavariable] = ACTIONS(2434), + [sym_raw_string_literal] = ACTIONS(2434), + [sym_float_literal] = ACTIONS(2434), + }, + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_macro_rules_BANG] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_u8] = ACTIONS(2440), + [anon_sym_i8] = ACTIONS(2440), + [anon_sym_u16] = ACTIONS(2440), + [anon_sym_i16] = ACTIONS(2440), + [anon_sym_u32] = ACTIONS(2440), + [anon_sym_i32] = ACTIONS(2440), + [anon_sym_u64] = ACTIONS(2440), + [anon_sym_i64] = ACTIONS(2440), + [anon_sym_u128] = ACTIONS(2440), + [anon_sym_i128] = ACTIONS(2440), + [anon_sym_isize] = ACTIONS(2440), + [anon_sym_usize] = ACTIONS(2440), + [anon_sym_f32] = ACTIONS(2440), + [anon_sym_f64] = ACTIONS(2440), + [anon_sym_bool] = ACTIONS(2440), + [anon_sym_str] = ACTIONS(2440), + [anon_sym_char] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_fn] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_impl] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_loop] = ACTIONS(2440), + [anon_sym_match] = ACTIONS(2440), + [anon_sym_mod] = ACTIONS(2440), + [anon_sym_pub] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_trait] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_unsafe] = ACTIONS(2440), + [anon_sym_use] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym_DOT_DOT] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_move] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [sym_integer_literal] = ACTIONS(2438), + [aux_sym_string_literal_token1] = ACTIONS(2438), + [sym_char_literal] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_crate] = ACTIONS(2440), + [sym_metavariable] = ACTIONS(2438), + [sym_raw_string_literal] = ACTIONS(2438), + [sym_float_literal] = ACTIONS(2438), + }, + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_macro_rules_BANG] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_u8] = ACTIONS(2444), + [anon_sym_i8] = ACTIONS(2444), + [anon_sym_u16] = ACTIONS(2444), + [anon_sym_i16] = ACTIONS(2444), + [anon_sym_u32] = ACTIONS(2444), + [anon_sym_i32] = ACTIONS(2444), + [anon_sym_u64] = ACTIONS(2444), + [anon_sym_i64] = ACTIONS(2444), + [anon_sym_u128] = ACTIONS(2444), + [anon_sym_i128] = ACTIONS(2444), + [anon_sym_isize] = ACTIONS(2444), + [anon_sym_usize] = ACTIONS(2444), + [anon_sym_f32] = ACTIONS(2444), + [anon_sym_f64] = ACTIONS(2444), + [anon_sym_bool] = ACTIONS(2444), + [anon_sym_str] = ACTIONS(2444), + [anon_sym_char] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2444), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_fn] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_impl] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_loop] = ACTIONS(2444), + [anon_sym_match] = ACTIONS(2444), + [anon_sym_mod] = ACTIONS(2444), + [anon_sym_pub] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_trait] = ACTIONS(2444), + [anon_sym_type] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [anon_sym_unsafe] = ACTIONS(2444), + [anon_sym_use] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_DOT_DOT] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2444), + [anon_sym_move] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [sym_integer_literal] = ACTIONS(2442), + [aux_sym_string_literal_token1] = ACTIONS(2442), + [sym_char_literal] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2444), + [sym_super] = ACTIONS(2444), + [sym_crate] = ACTIONS(2444), + [sym_metavariable] = ACTIONS(2442), + [sym_raw_string_literal] = ACTIONS(2442), + [sym_float_literal] = ACTIONS(2442), + }, + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym_macro_rules_BANG] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_u8] = ACTIONS(2448), + [anon_sym_i8] = ACTIONS(2448), + [anon_sym_u16] = ACTIONS(2448), + [anon_sym_i16] = ACTIONS(2448), + [anon_sym_u32] = ACTIONS(2448), + [anon_sym_i32] = ACTIONS(2448), + [anon_sym_u64] = ACTIONS(2448), + [anon_sym_i64] = ACTIONS(2448), + [anon_sym_u128] = ACTIONS(2448), + [anon_sym_i128] = ACTIONS(2448), + [anon_sym_isize] = ACTIONS(2448), + [anon_sym_usize] = ACTIONS(2448), + [anon_sym_f32] = ACTIONS(2448), + [anon_sym_f64] = ACTIONS(2448), + [anon_sym_bool] = ACTIONS(2448), + [anon_sym_str] = ACTIONS(2448), + [anon_sym_char] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [anon_sym_fn] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_impl] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_mod] = ACTIONS(2448), + [anon_sym_pub] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2448), + [anon_sym_trait] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_union] = ACTIONS(2448), + [anon_sym_unsafe] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_DOT_DOT] = ACTIONS(2446), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_move] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [sym_integer_literal] = ACTIONS(2446), + [aux_sym_string_literal_token1] = ACTIONS(2446), + [sym_char_literal] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_crate] = ACTIONS(2448), + [sym_metavariable] = ACTIONS(2446), + [sym_raw_string_literal] = ACTIONS(2446), + [sym_float_literal] = ACTIONS(2446), + }, + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_macro_rules_BANG] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_u8] = ACTIONS(2452), + [anon_sym_i8] = ACTIONS(2452), + [anon_sym_u16] = ACTIONS(2452), + [anon_sym_i16] = ACTIONS(2452), + [anon_sym_u32] = ACTIONS(2452), + [anon_sym_i32] = ACTIONS(2452), + [anon_sym_u64] = ACTIONS(2452), + [anon_sym_i64] = ACTIONS(2452), + [anon_sym_u128] = ACTIONS(2452), + [anon_sym_i128] = ACTIONS(2452), + [anon_sym_isize] = ACTIONS(2452), + [anon_sym_usize] = ACTIONS(2452), + [anon_sym_f32] = ACTIONS(2452), + [anon_sym_f64] = ACTIONS(2452), + [anon_sym_bool] = ACTIONS(2452), + [anon_sym_str] = ACTIONS(2452), + [anon_sym_char] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [anon_sym_fn] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_impl] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_loop] = ACTIONS(2452), + [anon_sym_match] = ACTIONS(2452), + [anon_sym_mod] = ACTIONS(2452), + [anon_sym_pub] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_struct] = ACTIONS(2452), + [anon_sym_trait] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_union] = ACTIONS(2452), + [anon_sym_unsafe] = ACTIONS(2452), + [anon_sym_use] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_extern] = ACTIONS(2452), + [anon_sym_DOT_DOT] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_move] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [sym_integer_literal] = ACTIONS(2450), + [aux_sym_string_literal_token1] = ACTIONS(2450), + [sym_char_literal] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_crate] = ACTIONS(2452), + [sym_metavariable] = ACTIONS(2450), + [sym_raw_string_literal] = ACTIONS(2450), + [sym_float_literal] = ACTIONS(2450), + }, + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_macro_rules_BANG] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_u8] = ACTIONS(2456), + [anon_sym_i8] = ACTIONS(2456), + [anon_sym_u16] = ACTIONS(2456), + [anon_sym_i16] = ACTIONS(2456), + [anon_sym_u32] = ACTIONS(2456), + [anon_sym_i32] = ACTIONS(2456), + [anon_sym_u64] = ACTIONS(2456), + [anon_sym_i64] = ACTIONS(2456), + [anon_sym_u128] = ACTIONS(2456), + [anon_sym_i128] = ACTIONS(2456), + [anon_sym_isize] = ACTIONS(2456), + [anon_sym_usize] = ACTIONS(2456), + [anon_sym_f32] = ACTIONS(2456), + [anon_sym_f64] = ACTIONS(2456), + [anon_sym_bool] = ACTIONS(2456), + [anon_sym_str] = ACTIONS(2456), + [anon_sym_char] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [anon_sym_fn] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_impl] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_loop] = ACTIONS(2456), + [anon_sym_match] = ACTIONS(2456), + [anon_sym_mod] = ACTIONS(2456), + [anon_sym_pub] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_struct] = ACTIONS(2456), + [anon_sym_trait] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_union] = ACTIONS(2456), + [anon_sym_unsafe] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_DOT_DOT] = ACTIONS(2454), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_move] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [sym_integer_literal] = ACTIONS(2454), + [aux_sym_string_literal_token1] = ACTIONS(2454), + [sym_char_literal] = ACTIONS(2454), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_crate] = ACTIONS(2456), + [sym_metavariable] = ACTIONS(2454), + [sym_raw_string_literal] = ACTIONS(2454), + [sym_float_literal] = ACTIONS(2454), + }, + [667] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_macro_rules_BANG] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_u8] = ACTIONS(2460), + [anon_sym_i8] = ACTIONS(2460), + [anon_sym_u16] = ACTIONS(2460), + [anon_sym_i16] = ACTIONS(2460), + [anon_sym_u32] = ACTIONS(2460), + [anon_sym_i32] = ACTIONS(2460), + [anon_sym_u64] = ACTIONS(2460), + [anon_sym_i64] = ACTIONS(2460), + [anon_sym_u128] = ACTIONS(2460), + [anon_sym_i128] = ACTIONS(2460), + [anon_sym_isize] = ACTIONS(2460), + [anon_sym_usize] = ACTIONS(2460), + [anon_sym_f32] = ACTIONS(2460), + [anon_sym_f64] = ACTIONS(2460), + [anon_sym_bool] = ACTIONS(2460), + [anon_sym_str] = ACTIONS(2460), + [anon_sym_char] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_COLON_COLON] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_async] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_default] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + [anon_sym_fn] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_impl] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_loop] = ACTIONS(2460), + [anon_sym_match] = ACTIONS(2460), + [anon_sym_mod] = ACTIONS(2460), + [anon_sym_pub] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_struct] = ACTIONS(2460), + [anon_sym_trait] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2460), + [anon_sym_union] = ACTIONS(2460), + [anon_sym_unsafe] = ACTIONS(2460), + [anon_sym_use] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_extern] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2460), + [anon_sym_move] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2460), + [sym_integer_literal] = ACTIONS(2458), + [aux_sym_string_literal_token1] = ACTIONS(2458), + [sym_char_literal] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2460), + [sym_super] = ACTIONS(2460), + [sym_crate] = ACTIONS(2460), + [sym_metavariable] = ACTIONS(2458), + [sym_raw_string_literal] = ACTIONS(2458), + [sym_float_literal] = ACTIONS(2458), + }, + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_macro_rules_BANG] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_u8] = ACTIONS(2464), + [anon_sym_i8] = ACTIONS(2464), + [anon_sym_u16] = ACTIONS(2464), + [anon_sym_i16] = ACTIONS(2464), + [anon_sym_u32] = ACTIONS(2464), + [anon_sym_i32] = ACTIONS(2464), + [anon_sym_u64] = ACTIONS(2464), + [anon_sym_i64] = ACTIONS(2464), + [anon_sym_u128] = ACTIONS(2464), + [anon_sym_i128] = ACTIONS(2464), + [anon_sym_isize] = ACTIONS(2464), + [anon_sym_usize] = ACTIONS(2464), + [anon_sym_f32] = ACTIONS(2464), + [anon_sym_f64] = ACTIONS(2464), + [anon_sym_bool] = ACTIONS(2464), + [anon_sym_str] = ACTIONS(2464), + [anon_sym_char] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_fn] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_impl] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_loop] = ACTIONS(2464), + [anon_sym_match] = ACTIONS(2464), + [anon_sym_mod] = ACTIONS(2464), + [anon_sym_pub] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [anon_sym_trait] = ACTIONS(2464), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_unsafe] = ACTIONS(2464), + [anon_sym_use] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2464), + [anon_sym_move] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2464), + [sym_integer_literal] = ACTIONS(2462), + [aux_sym_string_literal_token1] = ACTIONS(2462), + [sym_char_literal] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2464), + [sym_super] = ACTIONS(2464), + [sym_crate] = ACTIONS(2464), + [sym_metavariable] = ACTIONS(2462), + [sym_raw_string_literal] = ACTIONS(2462), + [sym_float_literal] = ACTIONS(2462), + }, + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(2466), + [sym_identifier] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_macro_rules_BANG] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_u8] = ACTIONS(2468), + [anon_sym_i8] = ACTIONS(2468), + [anon_sym_u16] = ACTIONS(2468), + [anon_sym_i16] = ACTIONS(2468), + [anon_sym_u32] = ACTIONS(2468), + [anon_sym_i32] = ACTIONS(2468), + [anon_sym_u64] = ACTIONS(2468), + [anon_sym_i64] = ACTIONS(2468), + [anon_sym_u128] = ACTIONS(2468), + [anon_sym_i128] = ACTIONS(2468), + [anon_sym_isize] = ACTIONS(2468), + [anon_sym_usize] = ACTIONS(2468), + [anon_sym_f32] = ACTIONS(2468), + [anon_sym_f64] = ACTIONS(2468), + [anon_sym_bool] = ACTIONS(2468), + [anon_sym_str] = ACTIONS(2468), + [anon_sym_char] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_COLON_COLON] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_async] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_fn] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_impl] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_mod] = ACTIONS(2468), + [anon_sym_pub] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_trait] = ACTIONS(2468), + [anon_sym_type] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2468), + [anon_sym_unsafe] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2468), + [anon_sym_move] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [sym_integer_literal] = ACTIONS(2466), + [aux_sym_string_literal_token1] = ACTIONS(2466), + [sym_char_literal] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2468), + [sym_super] = ACTIONS(2468), + [sym_crate] = ACTIONS(2468), + [sym_metavariable] = ACTIONS(2466), + [sym_raw_string_literal] = ACTIONS(2466), + [sym_float_literal] = ACTIONS(2466), + }, + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(2470), + [sym_identifier] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_macro_rules_BANG] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_u8] = ACTIONS(2472), + [anon_sym_i8] = ACTIONS(2472), + [anon_sym_u16] = ACTIONS(2472), + [anon_sym_i16] = ACTIONS(2472), + [anon_sym_u32] = ACTIONS(2472), + [anon_sym_i32] = ACTIONS(2472), + [anon_sym_u64] = ACTIONS(2472), + [anon_sym_i64] = ACTIONS(2472), + [anon_sym_u128] = ACTIONS(2472), + [anon_sym_i128] = ACTIONS(2472), + [anon_sym_isize] = ACTIONS(2472), + [anon_sym_usize] = ACTIONS(2472), + [anon_sym_f32] = ACTIONS(2472), + [anon_sym_f64] = ACTIONS(2472), + [anon_sym_bool] = ACTIONS(2472), + [anon_sym_str] = ACTIONS(2472), + [anon_sym_char] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_COLON_COLON] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_async] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2472), + [anon_sym_enum] = ACTIONS(2472), + [anon_sym_fn] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_impl] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_loop] = ACTIONS(2472), + [anon_sym_match] = ACTIONS(2472), + [anon_sym_mod] = ACTIONS(2472), + [anon_sym_pub] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(2472), + [anon_sym_trait] = ACTIONS(2472), + [anon_sym_type] = ACTIONS(2472), + [anon_sym_union] = ACTIONS(2472), + [anon_sym_unsafe] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2472), + [anon_sym_move] = ACTIONS(2472), + [anon_sym_try] = ACTIONS(2472), + [sym_integer_literal] = ACTIONS(2470), + [aux_sym_string_literal_token1] = ACTIONS(2470), + [sym_char_literal] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2472), + [sym_super] = ACTIONS(2472), + [sym_crate] = ACTIONS(2472), + [sym_metavariable] = ACTIONS(2470), + [sym_raw_string_literal] = ACTIONS(2470), + [sym_float_literal] = ACTIONS(2470), + }, + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(2474), + [sym_identifier] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_macro_rules_BANG] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_u8] = ACTIONS(2476), + [anon_sym_i8] = ACTIONS(2476), + [anon_sym_u16] = ACTIONS(2476), + [anon_sym_i16] = ACTIONS(2476), + [anon_sym_u32] = ACTIONS(2476), + [anon_sym_i32] = ACTIONS(2476), + [anon_sym_u64] = ACTIONS(2476), + [anon_sym_i64] = ACTIONS(2476), + [anon_sym_u128] = ACTIONS(2476), + [anon_sym_i128] = ACTIONS(2476), + [anon_sym_isize] = ACTIONS(2476), + [anon_sym_usize] = ACTIONS(2476), + [anon_sym_f32] = ACTIONS(2476), + [anon_sym_f64] = ACTIONS(2476), + [anon_sym_bool] = ACTIONS(2476), + [anon_sym_str] = ACTIONS(2476), + [anon_sym_char] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_COLON_COLON] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_fn] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_impl] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_loop] = ACTIONS(2476), + [anon_sym_match] = ACTIONS(2476), + [anon_sym_mod] = ACTIONS(2476), + [anon_sym_pub] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_trait] = ACTIONS(2476), + [anon_sym_type] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_unsafe] = ACTIONS(2476), + [anon_sym_use] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_DOT_DOT] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2476), + [anon_sym_move] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [sym_integer_literal] = ACTIONS(2474), + [aux_sym_string_literal_token1] = ACTIONS(2474), + [sym_char_literal] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2476), + [sym_super] = ACTIONS(2476), + [sym_crate] = ACTIONS(2476), + [sym_metavariable] = ACTIONS(2474), + [sym_raw_string_literal] = ACTIONS(2474), + [sym_float_literal] = ACTIONS(2474), + }, + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_macro_rules_BANG] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_u8] = ACTIONS(2480), + [anon_sym_i8] = ACTIONS(2480), + [anon_sym_u16] = ACTIONS(2480), + [anon_sym_i16] = ACTIONS(2480), + [anon_sym_u32] = ACTIONS(2480), + [anon_sym_i32] = ACTIONS(2480), + [anon_sym_u64] = ACTIONS(2480), + [anon_sym_i64] = ACTIONS(2480), + [anon_sym_u128] = ACTIONS(2480), + [anon_sym_i128] = ACTIONS(2480), + [anon_sym_isize] = ACTIONS(2480), + [anon_sym_usize] = ACTIONS(2480), + [anon_sym_f32] = ACTIONS(2480), + [anon_sym_f64] = ACTIONS(2480), + [anon_sym_bool] = ACTIONS(2480), + [anon_sym_str] = ACTIONS(2480), + [anon_sym_char] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_async] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_fn] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_impl] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_loop] = ACTIONS(2480), + [anon_sym_match] = ACTIONS(2480), + [anon_sym_mod] = ACTIONS(2480), + [anon_sym_pub] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_trait] = ACTIONS(2480), + [anon_sym_type] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_unsafe] = ACTIONS(2480), + [anon_sym_use] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_DOT_DOT] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2480), + [anon_sym_move] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2480), + [sym_integer_literal] = ACTIONS(2478), + [aux_sym_string_literal_token1] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2480), + [anon_sym_false] = ACTIONS(2480), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2480), + [sym_super] = ACTIONS(2480), + [sym_crate] = ACTIONS(2480), + [sym_metavariable] = ACTIONS(2478), + [sym_raw_string_literal] = ACTIONS(2478), + [sym_float_literal] = ACTIONS(2478), + }, + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_macro_rules_BANG] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_u8] = ACTIONS(2484), + [anon_sym_i8] = ACTIONS(2484), + [anon_sym_u16] = ACTIONS(2484), + [anon_sym_i16] = ACTIONS(2484), + [anon_sym_u32] = ACTIONS(2484), + [anon_sym_i32] = ACTIONS(2484), + [anon_sym_u64] = ACTIONS(2484), + [anon_sym_i64] = ACTIONS(2484), + [anon_sym_u128] = ACTIONS(2484), + [anon_sym_i128] = ACTIONS(2484), + [anon_sym_isize] = ACTIONS(2484), + [anon_sym_usize] = ACTIONS(2484), + [anon_sym_f32] = ACTIONS(2484), + [anon_sym_f64] = ACTIONS(2484), + [anon_sym_bool] = ACTIONS(2484), + [anon_sym_str] = ACTIONS(2484), + [anon_sym_char] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_async] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [anon_sym_fn] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_impl] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_loop] = ACTIONS(2484), + [anon_sym_match] = ACTIONS(2484), + [anon_sym_mod] = ACTIONS(2484), + [anon_sym_pub] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_struct] = ACTIONS(2484), + [anon_sym_trait] = ACTIONS(2484), + [anon_sym_type] = ACTIONS(2484), + [anon_sym_union] = ACTIONS(2484), + [anon_sym_unsafe] = ACTIONS(2484), + [anon_sym_use] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_DOT_DOT] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2484), + [anon_sym_move] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [sym_integer_literal] = ACTIONS(2482), + [aux_sym_string_literal_token1] = ACTIONS(2482), + [sym_char_literal] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2484), + [sym_super] = ACTIONS(2484), + [sym_crate] = ACTIONS(2484), + [sym_metavariable] = ACTIONS(2482), + [sym_raw_string_literal] = ACTIONS(2482), + [sym_float_literal] = ACTIONS(2482), + }, + [674] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_pattern] = STATE(3394), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), + }, + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_macro_rules_BANG] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_u8] = ACTIONS(2488), + [anon_sym_i8] = ACTIONS(2488), + [anon_sym_u16] = ACTIONS(2488), + [anon_sym_i16] = ACTIONS(2488), + [anon_sym_u32] = ACTIONS(2488), + [anon_sym_i32] = ACTIONS(2488), + [anon_sym_u64] = ACTIONS(2488), + [anon_sym_i64] = ACTIONS(2488), + [anon_sym_u128] = ACTIONS(2488), + [anon_sym_i128] = ACTIONS(2488), + [anon_sym_isize] = ACTIONS(2488), + [anon_sym_usize] = ACTIONS(2488), + [anon_sym_f32] = ACTIONS(2488), + [anon_sym_f64] = ACTIONS(2488), + [anon_sym_bool] = ACTIONS(2488), + [anon_sym_str] = ACTIONS(2488), + [anon_sym_char] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_COLON_COLON] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_AMP] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [anon_sym_fn] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_impl] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), + [anon_sym_mod] = ACTIONS(2488), + [anon_sym_pub] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_struct] = ACTIONS(2488), + [anon_sym_trait] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_union] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_DOT_DOT] = ACTIONS(2486), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_move] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2486), + [aux_sym_string_literal_token1] = ACTIONS(2486), + [sym_char_literal] = ACTIONS(2486), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_crate] = ACTIONS(2488), + [sym_metavariable] = ACTIONS(2486), + [sym_raw_string_literal] = ACTIONS(2486), + [sym_float_literal] = ACTIONS(2486), + }, + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_macro_rules_BANG] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2490), + [anon_sym_u8] = ACTIONS(2492), + [anon_sym_i8] = ACTIONS(2492), + [anon_sym_u16] = ACTIONS(2492), + [anon_sym_i16] = ACTIONS(2492), + [anon_sym_u32] = ACTIONS(2492), + [anon_sym_i32] = ACTIONS(2492), + [anon_sym_u64] = ACTIONS(2492), + [anon_sym_i64] = ACTIONS(2492), + [anon_sym_u128] = ACTIONS(2492), + [anon_sym_i128] = ACTIONS(2492), + [anon_sym_isize] = ACTIONS(2492), + [anon_sym_usize] = ACTIONS(2492), + [anon_sym_f32] = ACTIONS(2492), + [anon_sym_f64] = ACTIONS(2492), + [anon_sym_bool] = ACTIONS(2492), + [anon_sym_str] = ACTIONS(2492), + [anon_sym_char] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_async] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [anon_sym_fn] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_impl] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_mod] = ACTIONS(2492), + [anon_sym_pub] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_struct] = ACTIONS(2492), + [anon_sym_trait] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_DOT_DOT] = ACTIONS(2490), + [anon_sym_yield] = ACTIONS(2492), + [anon_sym_move] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [sym_integer_literal] = ACTIONS(2490), + [aux_sym_string_literal_token1] = ACTIONS(2490), + [sym_char_literal] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2492), + [sym_super] = ACTIONS(2492), + [sym_crate] = ACTIONS(2492), + [sym_metavariable] = ACTIONS(2490), + [sym_raw_string_literal] = ACTIONS(2490), + [sym_float_literal] = ACTIONS(2490), + }, + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_macro_rules_BANG] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2494), + [anon_sym_u8] = ACTIONS(2496), + [anon_sym_i8] = ACTIONS(2496), + [anon_sym_u16] = ACTIONS(2496), + [anon_sym_i16] = ACTIONS(2496), + [anon_sym_u32] = ACTIONS(2496), + [anon_sym_i32] = ACTIONS(2496), + [anon_sym_u64] = ACTIONS(2496), + [anon_sym_i64] = ACTIONS(2496), + [anon_sym_u128] = ACTIONS(2496), + [anon_sym_i128] = ACTIONS(2496), + [anon_sym_isize] = ACTIONS(2496), + [anon_sym_usize] = ACTIONS(2496), + [anon_sym_f32] = ACTIONS(2496), + [anon_sym_f64] = ACTIONS(2496), + [anon_sym_bool] = ACTIONS(2496), + [anon_sym_str] = ACTIONS(2496), + [anon_sym_char] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_COLON_COLON] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [anon_sym_fn] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_impl] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_mod] = ACTIONS(2496), + [anon_sym_pub] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_struct] = ACTIONS(2496), + [anon_sym_trait] = ACTIONS(2496), + [anon_sym_type] = ACTIONS(2496), + [anon_sym_union] = ACTIONS(2496), + [anon_sym_unsafe] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_DOT_DOT] = ACTIONS(2494), + [anon_sym_yield] = ACTIONS(2496), + [anon_sym_move] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [sym_integer_literal] = ACTIONS(2494), + [aux_sym_string_literal_token1] = ACTIONS(2494), + [sym_char_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2496), + [sym_super] = ACTIONS(2496), + [sym_crate] = ACTIONS(2496), + [sym_metavariable] = ACTIONS(2494), + [sym_raw_string_literal] = ACTIONS(2494), + [sym_float_literal] = ACTIONS(2494), + }, + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_macro_rules_BANG] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2498), + [anon_sym_u8] = ACTIONS(2500), + [anon_sym_i8] = ACTIONS(2500), + [anon_sym_u16] = ACTIONS(2500), + [anon_sym_i16] = ACTIONS(2500), + [anon_sym_u32] = ACTIONS(2500), + [anon_sym_i32] = ACTIONS(2500), + [anon_sym_u64] = ACTIONS(2500), + [anon_sym_i64] = ACTIONS(2500), + [anon_sym_u128] = ACTIONS(2500), + [anon_sym_i128] = ACTIONS(2500), + [anon_sym_isize] = ACTIONS(2500), + [anon_sym_usize] = ACTIONS(2500), + [anon_sym_f32] = ACTIONS(2500), + [anon_sym_f64] = ACTIONS(2500), + [anon_sym_bool] = ACTIONS(2500), + [anon_sym_str] = ACTIONS(2500), + [anon_sym_char] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_COLON_COLON] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_async] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), + [anon_sym_fn] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_impl] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_mod] = ACTIONS(2500), + [anon_sym_pub] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_struct] = ACTIONS(2500), + [anon_sym_trait] = ACTIONS(2500), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_union] = ACTIONS(2500), + [anon_sym_unsafe] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_DOT_DOT] = ACTIONS(2498), + [anon_sym_yield] = ACTIONS(2500), + [anon_sym_move] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [sym_integer_literal] = ACTIONS(2498), + [aux_sym_string_literal_token1] = ACTIONS(2498), + [sym_char_literal] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2498), + [sym_raw_string_literal] = ACTIONS(2498), + [sym_float_literal] = ACTIONS(2498), + }, + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [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_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [anon_sym_fn] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_impl] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_mod] = ACTIONS(2504), + [anon_sym_pub] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_struct] = ACTIONS(2504), + [anon_sym_trait] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_union] = ACTIONS(2504), + [anon_sym_unsafe] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_DOT_DOT] = ACTIONS(2502), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2502), + [sym_raw_string_literal] = ACTIONS(2502), + [sym_float_literal] = ACTIONS(2502), + }, + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), + [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_LBRACE] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2506), + [anon_sym_BANG] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(2506), + [anon_sym_LT] = ACTIONS(2506), + [anon_sym_PIPE] = ACTIONS(2506), + [anon_sym_SQUOTE] = ACTIONS(2508), + [anon_sym_async] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_const] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_default] = ACTIONS(2508), + [anon_sym_enum] = ACTIONS(2508), + [anon_sym_fn] = ACTIONS(2508), + [anon_sym_for] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_impl] = ACTIONS(2508), + [anon_sym_let] = ACTIONS(2508), + [anon_sym_loop] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_mod] = ACTIONS(2508), + [anon_sym_pub] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_struct] = ACTIONS(2508), + [anon_sym_trait] = ACTIONS(2508), + [anon_sym_type] = ACTIONS(2508), + [anon_sym_union] = ACTIONS(2508), + [anon_sym_unsafe] = ACTIONS(2508), + [anon_sym_use] = ACTIONS(2508), + [anon_sym_while] = ACTIONS(2508), + [anon_sym_extern] = ACTIONS(2508), + [anon_sym_DOT_DOT] = ACTIONS(2506), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2508), + [sym_super] = ACTIONS(2508), + [sym_crate] = ACTIONS(2508), + [sym_metavariable] = ACTIONS(2506), + [sym_raw_string_literal] = ACTIONS(2506), + [sym_float_literal] = ACTIONS(2506), + }, + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [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_LBRACE] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2510), + [anon_sym_BANG] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(2510), + [anon_sym_LT] = ACTIONS(2510), + [anon_sym_PIPE] = ACTIONS(2510), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_async] = ACTIONS(2512), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_const] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2512), + [anon_sym_default] = ACTIONS(2512), + [anon_sym_enum] = ACTIONS(2512), + [anon_sym_fn] = ACTIONS(2512), + [anon_sym_for] = ACTIONS(2512), + [anon_sym_if] = ACTIONS(2512), + [anon_sym_impl] = ACTIONS(2512), + [anon_sym_let] = ACTIONS(2512), + [anon_sym_loop] = ACTIONS(2512), + [anon_sym_match] = ACTIONS(2512), + [anon_sym_mod] = ACTIONS(2512), + [anon_sym_pub] = ACTIONS(2512), + [anon_sym_return] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2512), + [anon_sym_struct] = ACTIONS(2512), + [anon_sym_trait] = ACTIONS(2512), + [anon_sym_type] = ACTIONS(2512), + [anon_sym_union] = ACTIONS(2512), + [anon_sym_unsafe] = ACTIONS(2512), + [anon_sym_use] = ACTIONS(2512), + [anon_sym_while] = ACTIONS(2512), + [anon_sym_extern] = ACTIONS(2512), + [anon_sym_DOT_DOT] = ACTIONS(2510), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2512), + [sym_super] = ACTIONS(2512), + [sym_crate] = ACTIONS(2512), + [sym_metavariable] = ACTIONS(2510), + [sym_raw_string_literal] = ACTIONS(2510), + [sym_float_literal] = ACTIONS(2510), + }, + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [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_LBRACE] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(2514), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(2514), + [anon_sym_AMP] = ACTIONS(2514), + [anon_sym_POUND] = ACTIONS(2514), + [anon_sym_LT] = ACTIONS(2514), + [anon_sym_PIPE] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_default] = ACTIONS(2516), + [anon_sym_enum] = ACTIONS(2516), + [anon_sym_fn] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_impl] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_mod] = ACTIONS(2516), + [anon_sym_pub] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_trait] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_union] = ACTIONS(2516), + [anon_sym_unsafe] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), + [sym_crate] = ACTIONS(2516), + [sym_metavariable] = ACTIONS(2514), + [sym_raw_string_literal] = ACTIONS(2514), + [sym_float_literal] = ACTIONS(2514), + }, + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [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_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_POUND] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2520), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_fn] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_impl] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_loop] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2520), + [anon_sym_mod] = ACTIONS(2520), + [anon_sym_pub] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_trait] = ACTIONS(2520), + [anon_sym_type] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_unsafe] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2520), + [sym_super] = ACTIONS(2520), + [sym_crate] = ACTIONS(2520), + [sym_metavariable] = ACTIONS(2518), + [sym_raw_string_literal] = ACTIONS(2518), + [sym_float_literal] = ACTIONS(2518), + }, + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [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_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_fn] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_impl] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_loop] = ACTIONS(2524), + [anon_sym_match] = ACTIONS(2524), + [anon_sym_mod] = ACTIONS(2524), + [anon_sym_pub] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_trait] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_unsafe] = ACTIONS(2524), + [anon_sym_use] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_DOT_DOT] = ACTIONS(2522), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_crate] = ACTIONS(2524), + [sym_metavariable] = ACTIONS(2522), + [sym_raw_string_literal] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(2522), + }, + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_macro_rules_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_u8] = ACTIONS(2528), + [anon_sym_i8] = ACTIONS(2528), + [anon_sym_u16] = ACTIONS(2528), + [anon_sym_i16] = ACTIONS(2528), + [anon_sym_u32] = ACTIONS(2528), + [anon_sym_i32] = ACTIONS(2528), + [anon_sym_u64] = ACTIONS(2528), + [anon_sym_i64] = ACTIONS(2528), + [anon_sym_u128] = ACTIONS(2528), + [anon_sym_i128] = ACTIONS(2528), + [anon_sym_isize] = ACTIONS(2528), + [anon_sym_usize] = ACTIONS(2528), + [anon_sym_f32] = ACTIONS(2528), + [anon_sym_f64] = ACTIONS(2528), + [anon_sym_bool] = ACTIONS(2528), + [anon_sym_str] = ACTIONS(2528), + [anon_sym_char] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2526), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_fn] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_impl] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_loop] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_mod] = ACTIONS(2528), + [anon_sym_pub] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_trait] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_unsafe] = ACTIONS(2528), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_move] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [sym_integer_literal] = ACTIONS(2526), + [aux_sym_string_literal_token1] = ACTIONS(2526), + [sym_char_literal] = ACTIONS(2526), + [anon_sym_true] = ACTIONS(2528), + [anon_sym_false] = ACTIONS(2528), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2528), + [sym_super] = ACTIONS(2528), + [sym_crate] = ACTIONS(2528), + [sym_metavariable] = ACTIONS(2526), + [sym_raw_string_literal] = ACTIONS(2526), + [sym_float_literal] = ACTIONS(2526), + }, + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_macro_rules_BANG] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_u8] = ACTIONS(2532), + [anon_sym_i8] = ACTIONS(2532), + [anon_sym_u16] = ACTIONS(2532), + [anon_sym_i16] = ACTIONS(2532), + [anon_sym_u32] = ACTIONS(2532), + [anon_sym_i32] = ACTIONS(2532), + [anon_sym_u64] = ACTIONS(2532), + [anon_sym_i64] = ACTIONS(2532), + [anon_sym_u128] = ACTIONS(2532), + [anon_sym_i128] = ACTIONS(2532), + [anon_sym_isize] = ACTIONS(2532), + [anon_sym_usize] = ACTIONS(2532), + [anon_sym_f32] = ACTIONS(2532), + [anon_sym_f64] = ACTIONS(2532), + [anon_sym_bool] = ACTIONS(2532), + [anon_sym_str] = ACTIONS(2532), + [anon_sym_char] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_impl] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_loop] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_mod] = ACTIONS(2532), + [anon_sym_pub] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_trait] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_use] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_DOT_DOT] = ACTIONS(2530), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_move] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [sym_integer_literal] = ACTIONS(2530), + [aux_sym_string_literal_token1] = ACTIONS(2530), + [sym_char_literal] = ACTIONS(2530), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_crate] = ACTIONS(2532), + [sym_metavariable] = ACTIONS(2530), + [sym_raw_string_literal] = ACTIONS(2530), + [sym_float_literal] = ACTIONS(2530), + }, + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_macro_rules_BANG] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_u8] = ACTIONS(2536), + [anon_sym_i8] = ACTIONS(2536), + [anon_sym_u16] = ACTIONS(2536), + [anon_sym_i16] = ACTIONS(2536), + [anon_sym_u32] = ACTIONS(2536), + [anon_sym_i32] = ACTIONS(2536), + [anon_sym_u64] = ACTIONS(2536), + [anon_sym_i64] = ACTIONS(2536), + [anon_sym_u128] = ACTIONS(2536), + [anon_sym_i128] = ACTIONS(2536), + [anon_sym_isize] = ACTIONS(2536), + [anon_sym_usize] = ACTIONS(2536), + [anon_sym_f32] = ACTIONS(2536), + [anon_sym_f64] = ACTIONS(2536), + [anon_sym_bool] = ACTIONS(2536), + [anon_sym_str] = ACTIONS(2536), + [anon_sym_char] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_fn] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_impl] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_loop] = ACTIONS(2536), + [anon_sym_match] = ACTIONS(2536), + [anon_sym_mod] = ACTIONS(2536), + [anon_sym_pub] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_trait] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_unsafe] = ACTIONS(2536), + [anon_sym_use] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2534), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_move] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [sym_integer_literal] = ACTIONS(2534), + [aux_sym_string_literal_token1] = ACTIONS(2534), + [sym_char_literal] = ACTIONS(2534), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_crate] = ACTIONS(2536), + [sym_metavariable] = ACTIONS(2534), + [sym_raw_string_literal] = ACTIONS(2534), + [sym_float_literal] = ACTIONS(2534), + }, + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_macro_rules_BANG] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_u8] = ACTIONS(2540), + [anon_sym_i8] = ACTIONS(2540), + [anon_sym_u16] = ACTIONS(2540), + [anon_sym_i16] = ACTIONS(2540), + [anon_sym_u32] = ACTIONS(2540), + [anon_sym_i32] = ACTIONS(2540), + [anon_sym_u64] = ACTIONS(2540), + [anon_sym_i64] = ACTIONS(2540), + [anon_sym_u128] = ACTIONS(2540), + [anon_sym_i128] = ACTIONS(2540), + [anon_sym_isize] = ACTIONS(2540), + [anon_sym_usize] = ACTIONS(2540), + [anon_sym_f32] = ACTIONS(2540), + [anon_sym_f64] = ACTIONS(2540), + [anon_sym_bool] = ACTIONS(2540), + [anon_sym_str] = ACTIONS(2540), + [anon_sym_char] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_fn] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_impl] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_loop] = ACTIONS(2540), + [anon_sym_match] = ACTIONS(2540), + [anon_sym_mod] = ACTIONS(2540), + [anon_sym_pub] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_trait] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_unsafe] = ACTIONS(2540), + [anon_sym_use] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym_DOT_DOT] = ACTIONS(2538), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_move] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [sym_integer_literal] = ACTIONS(2538), + [aux_sym_string_literal_token1] = ACTIONS(2538), + [sym_char_literal] = ACTIONS(2538), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_crate] = ACTIONS(2540), + [sym_metavariable] = ACTIONS(2538), + [sym_raw_string_literal] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), + }, + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(2542), + [sym_identifier] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_macro_rules_BANG] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2542), + [anon_sym_RBRACE] = ACTIONS(2542), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2542), + [anon_sym_u8] = ACTIONS(2544), + [anon_sym_i8] = ACTIONS(2544), + [anon_sym_u16] = ACTIONS(2544), + [anon_sym_i16] = ACTIONS(2544), + [anon_sym_u32] = ACTIONS(2544), + [anon_sym_i32] = ACTIONS(2544), + [anon_sym_u64] = ACTIONS(2544), + [anon_sym_i64] = ACTIONS(2544), + [anon_sym_u128] = ACTIONS(2544), + [anon_sym_i128] = ACTIONS(2544), + [anon_sym_isize] = ACTIONS(2544), + [anon_sym_usize] = ACTIONS(2544), + [anon_sym_f32] = ACTIONS(2544), + [anon_sym_f64] = ACTIONS(2544), + [anon_sym_bool] = ACTIONS(2544), + [anon_sym_str] = ACTIONS(2544), + [anon_sym_char] = ACTIONS(2544), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2542), + [anon_sym_BANG] = ACTIONS(2542), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_POUND] = ACTIONS(2542), + [anon_sym_LT] = ACTIONS(2542), + [anon_sym_PIPE] = ACTIONS(2542), + [anon_sym_SQUOTE] = ACTIONS(2544), + [anon_sym_async] = ACTIONS(2544), + [anon_sym_break] = ACTIONS(2544), + [anon_sym_const] = ACTIONS(2544), + [anon_sym_continue] = ACTIONS(2544), + [anon_sym_default] = ACTIONS(2544), + [anon_sym_enum] = ACTIONS(2544), + [anon_sym_fn] = ACTIONS(2544), + [anon_sym_for] = ACTIONS(2544), + [anon_sym_if] = ACTIONS(2544), + [anon_sym_impl] = ACTIONS(2544), + [anon_sym_let] = ACTIONS(2544), + [anon_sym_loop] = ACTIONS(2544), + [anon_sym_match] = ACTIONS(2544), + [anon_sym_mod] = ACTIONS(2544), + [anon_sym_pub] = ACTIONS(2544), + [anon_sym_return] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_struct] = ACTIONS(2544), + [anon_sym_trait] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_union] = ACTIONS(2544), + [anon_sym_unsafe] = ACTIONS(2544), + [anon_sym_use] = ACTIONS(2544), + [anon_sym_while] = ACTIONS(2544), + [anon_sym_extern] = ACTIONS(2544), + [anon_sym_DOT_DOT] = ACTIONS(2542), + [anon_sym_yield] = ACTIONS(2544), + [anon_sym_move] = ACTIONS(2544), + [anon_sym_try] = ACTIONS(2544), + [sym_integer_literal] = ACTIONS(2542), + [aux_sym_string_literal_token1] = ACTIONS(2542), + [sym_char_literal] = ACTIONS(2542), + [anon_sym_true] = ACTIONS(2544), + [anon_sym_false] = ACTIONS(2544), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2544), + [sym_super] = ACTIONS(2544), + [sym_crate] = ACTIONS(2544), + [sym_metavariable] = ACTIONS(2542), + [sym_raw_string_literal] = ACTIONS(2542), + [sym_float_literal] = ACTIONS(2542), + }, + [690] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(2546), + [sym_identifier] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2546), + [anon_sym_macro_rules_BANG] = ACTIONS(2546), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(2546), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_STAR] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(2548), + [anon_sym_i8] = ACTIONS(2548), + [anon_sym_u16] = ACTIONS(2548), + [anon_sym_i16] = ACTIONS(2548), + [anon_sym_u32] = ACTIONS(2548), + [anon_sym_i32] = ACTIONS(2548), + [anon_sym_u64] = ACTIONS(2548), + [anon_sym_i64] = ACTIONS(2548), + [anon_sym_u128] = ACTIONS(2548), + [anon_sym_i128] = ACTIONS(2548), + [anon_sym_isize] = ACTIONS(2548), + [anon_sym_usize] = ACTIONS(2548), + [anon_sym_f32] = ACTIONS(2548), + [anon_sym_f64] = ACTIONS(2548), + [anon_sym_bool] = ACTIONS(2548), + [anon_sym_str] = ACTIONS(2548), + [anon_sym_char] = ACTIONS(2548), + [anon_sym_DASH] = ACTIONS(2546), + [anon_sym_COLON_COLON] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2546), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_POUND] = ACTIONS(2546), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_break] = ACTIONS(2548), + [anon_sym_const] = ACTIONS(2548), + [anon_sym_continue] = ACTIONS(2548), + [anon_sym_default] = ACTIONS(2548), + [anon_sym_enum] = ACTIONS(2548), + [anon_sym_fn] = ACTIONS(2548), + [anon_sym_for] = ACTIONS(2548), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_impl] = ACTIONS(2548), + [anon_sym_let] = ACTIONS(2548), + [anon_sym_loop] = ACTIONS(2548), + [anon_sym_match] = ACTIONS(2548), + [anon_sym_mod] = ACTIONS(2548), + [anon_sym_pub] = ACTIONS(2548), + [anon_sym_return] = ACTIONS(2548), + [anon_sym_static] = ACTIONS(2548), + [anon_sym_struct] = ACTIONS(2548), + [anon_sym_trait] = ACTIONS(2548), + [anon_sym_type] = ACTIONS(2548), + [anon_sym_union] = ACTIONS(2548), + [anon_sym_unsafe] = ACTIONS(2548), + [anon_sym_use] = ACTIONS(2548), + [anon_sym_while] = ACTIONS(2548), + [anon_sym_extern] = ACTIONS(2548), + [anon_sym_DOT_DOT] = ACTIONS(2546), + [anon_sym_yield] = ACTIONS(2548), + [anon_sym_move] = ACTIONS(2548), + [anon_sym_try] = ACTIONS(2548), + [sym_integer_literal] = ACTIONS(2546), + [aux_sym_string_literal_token1] = ACTIONS(2546), + [sym_char_literal] = ACTIONS(2546), + [anon_sym_true] = ACTIONS(2548), + [anon_sym_false] = ACTIONS(2548), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2548), + [sym_super] = ACTIONS(2548), + [sym_crate] = ACTIONS(2548), + [sym_metavariable] = ACTIONS(2546), + [sym_raw_string_literal] = ACTIONS(2546), + [sym_float_literal] = ACTIONS(2546), + }, + [691] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(2550), + [sym_identifier] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2550), + [anon_sym_macro_rules_BANG] = ACTIONS(2550), + [anon_sym_LPAREN] = ACTIONS(2550), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_RBRACE] = ACTIONS(2550), + [anon_sym_LBRACK] = ACTIONS(2550), + [anon_sym_STAR] = ACTIONS(2550), + [anon_sym_u8] = ACTIONS(2552), + [anon_sym_i8] = ACTIONS(2552), + [anon_sym_u16] = ACTIONS(2552), + [anon_sym_i16] = ACTIONS(2552), + [anon_sym_u32] = ACTIONS(2552), + [anon_sym_i32] = ACTIONS(2552), + [anon_sym_u64] = ACTIONS(2552), + [anon_sym_i64] = ACTIONS(2552), + [anon_sym_u128] = ACTIONS(2552), + [anon_sym_i128] = ACTIONS(2552), + [anon_sym_isize] = ACTIONS(2552), + [anon_sym_usize] = ACTIONS(2552), + [anon_sym_f32] = ACTIONS(2552), + [anon_sym_f64] = ACTIONS(2552), + [anon_sym_bool] = ACTIONS(2552), + [anon_sym_str] = ACTIONS(2552), + [anon_sym_char] = ACTIONS(2552), + [anon_sym_DASH] = ACTIONS(2550), + [anon_sym_COLON_COLON] = ACTIONS(2550), + [anon_sym_BANG] = ACTIONS(2550), + [anon_sym_AMP] = ACTIONS(2550), + [anon_sym_POUND] = ACTIONS(2550), + [anon_sym_LT] = ACTIONS(2550), + [anon_sym_PIPE] = ACTIONS(2550), + [anon_sym_SQUOTE] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(2552), + [anon_sym_break] = ACTIONS(2552), + [anon_sym_const] = ACTIONS(2552), + [anon_sym_continue] = ACTIONS(2552), + [anon_sym_default] = ACTIONS(2552), + [anon_sym_enum] = ACTIONS(2552), + [anon_sym_fn] = ACTIONS(2552), + [anon_sym_for] = ACTIONS(2552), + [anon_sym_if] = ACTIONS(2552), + [anon_sym_impl] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2552), + [anon_sym_loop] = ACTIONS(2552), + [anon_sym_match] = ACTIONS(2552), + [anon_sym_mod] = ACTIONS(2552), + [anon_sym_pub] = ACTIONS(2552), + [anon_sym_return] = ACTIONS(2552), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_struct] = ACTIONS(2552), + [anon_sym_trait] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_union] = ACTIONS(2552), + [anon_sym_unsafe] = ACTIONS(2552), + [anon_sym_use] = ACTIONS(2552), + [anon_sym_while] = ACTIONS(2552), + [anon_sym_extern] = ACTIONS(2552), + [anon_sym_DOT_DOT] = ACTIONS(2550), + [anon_sym_yield] = ACTIONS(2552), + [anon_sym_move] = ACTIONS(2552), + [anon_sym_try] = ACTIONS(2552), + [sym_integer_literal] = ACTIONS(2550), + [aux_sym_string_literal_token1] = ACTIONS(2550), + [sym_char_literal] = ACTIONS(2550), + [anon_sym_true] = ACTIONS(2552), + [anon_sym_false] = ACTIONS(2552), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2552), + [sym_super] = ACTIONS(2552), + [sym_crate] = ACTIONS(2552), + [sym_metavariable] = ACTIONS(2550), + [sym_raw_string_literal] = ACTIONS(2550), + [sym_float_literal] = ACTIONS(2550), + }, + [692] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(2554), + [sym_identifier] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2554), + [anon_sym_macro_rules_BANG] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(2554), + [anon_sym_RBRACE] = ACTIONS(2554), + [anon_sym_LBRACK] = ACTIONS(2554), + [anon_sym_STAR] = ACTIONS(2554), + [anon_sym_u8] = ACTIONS(2556), + [anon_sym_i8] = ACTIONS(2556), + [anon_sym_u16] = ACTIONS(2556), + [anon_sym_i16] = ACTIONS(2556), + [anon_sym_u32] = ACTIONS(2556), + [anon_sym_i32] = ACTIONS(2556), + [anon_sym_u64] = ACTIONS(2556), + [anon_sym_i64] = ACTIONS(2556), + [anon_sym_u128] = ACTIONS(2556), + [anon_sym_i128] = ACTIONS(2556), + [anon_sym_isize] = ACTIONS(2556), + [anon_sym_usize] = ACTIONS(2556), + [anon_sym_f32] = ACTIONS(2556), + [anon_sym_f64] = ACTIONS(2556), + [anon_sym_bool] = ACTIONS(2556), + [anon_sym_str] = ACTIONS(2556), + [anon_sym_char] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2554), + [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_BANG] = ACTIONS(2554), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_POUND] = ACTIONS(2554), + [anon_sym_LT] = ACTIONS(2554), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_SQUOTE] = ACTIONS(2556), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_fn] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_impl] = ACTIONS(2556), + [anon_sym_let] = ACTIONS(2556), + [anon_sym_loop] = ACTIONS(2556), + [anon_sym_match] = ACTIONS(2556), + [anon_sym_mod] = ACTIONS(2556), + [anon_sym_pub] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_trait] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_unsafe] = ACTIONS(2556), + [anon_sym_use] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_DOT_DOT] = ACTIONS(2554), + [anon_sym_yield] = ACTIONS(2556), + [anon_sym_move] = ACTIONS(2556), + [anon_sym_try] = ACTIONS(2556), + [sym_integer_literal] = ACTIONS(2554), + [aux_sym_string_literal_token1] = ACTIONS(2554), + [sym_char_literal] = ACTIONS(2554), + [anon_sym_true] = ACTIONS(2556), + [anon_sym_false] = ACTIONS(2556), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2556), + [sym_super] = ACTIONS(2556), + [sym_crate] = ACTIONS(2556), + [sym_metavariable] = ACTIONS(2554), + [sym_raw_string_literal] = ACTIONS(2554), + [sym_float_literal] = ACTIONS(2554), + }, + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2558), + [sym_identifier] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_macro_rules_BANG] = ACTIONS(2558), + [anon_sym_LPAREN] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_LBRACK] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_u8] = ACTIONS(2560), + [anon_sym_i8] = ACTIONS(2560), + [anon_sym_u16] = ACTIONS(2560), + [anon_sym_i16] = ACTIONS(2560), + [anon_sym_u32] = ACTIONS(2560), + [anon_sym_i32] = ACTIONS(2560), + [anon_sym_u64] = ACTIONS(2560), + [anon_sym_i64] = ACTIONS(2560), + [anon_sym_u128] = ACTIONS(2560), + [anon_sym_i128] = ACTIONS(2560), + [anon_sym_isize] = ACTIONS(2560), + [anon_sym_usize] = ACTIONS(2560), + [anon_sym_f32] = ACTIONS(2560), + [anon_sym_f64] = ACTIONS(2560), + [anon_sym_bool] = ACTIONS(2560), + [anon_sym_str] = ACTIONS(2560), + [anon_sym_char] = ACTIONS(2560), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_COLON_COLON] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_POUND] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2560), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_break] = ACTIONS(2560), + [anon_sym_const] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2560), + [anon_sym_default] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2560), + [anon_sym_fn] = ACTIONS(2560), + [anon_sym_for] = ACTIONS(2560), + [anon_sym_if] = ACTIONS(2560), + [anon_sym_impl] = ACTIONS(2560), + [anon_sym_let] = ACTIONS(2560), + [anon_sym_loop] = ACTIONS(2560), + [anon_sym_match] = ACTIONS(2560), + [anon_sym_mod] = ACTIONS(2560), + [anon_sym_pub] = ACTIONS(2560), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2560), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_trait] = ACTIONS(2560), + [anon_sym_type] = ACTIONS(2560), + [anon_sym_union] = ACTIONS(2560), + [anon_sym_unsafe] = ACTIONS(2560), + [anon_sym_use] = ACTIONS(2560), + [anon_sym_while] = ACTIONS(2560), + [anon_sym_extern] = ACTIONS(2560), + [anon_sym_DOT_DOT] = ACTIONS(2558), + [anon_sym_yield] = ACTIONS(2560), + [anon_sym_move] = ACTIONS(2560), + [anon_sym_try] = ACTIONS(2560), + [sym_integer_literal] = ACTIONS(2558), + [aux_sym_string_literal_token1] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [anon_sym_true] = ACTIONS(2560), + [anon_sym_false] = ACTIONS(2560), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2560), + [sym_super] = ACTIONS(2560), + [sym_crate] = ACTIONS(2560), + [sym_metavariable] = ACTIONS(2558), + [sym_raw_string_literal] = ACTIONS(2558), + [sym_float_literal] = ACTIONS(2558), + }, + [694] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_macro_rules_BANG] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_u8] = ACTIONS(2564), + [anon_sym_i8] = ACTIONS(2564), + [anon_sym_u16] = ACTIONS(2564), + [anon_sym_i16] = ACTIONS(2564), + [anon_sym_u32] = ACTIONS(2564), + [anon_sym_i32] = ACTIONS(2564), + [anon_sym_u64] = ACTIONS(2564), + [anon_sym_i64] = ACTIONS(2564), + [anon_sym_u128] = ACTIONS(2564), + [anon_sym_i128] = ACTIONS(2564), + [anon_sym_isize] = ACTIONS(2564), + [anon_sym_usize] = ACTIONS(2564), + [anon_sym_f32] = ACTIONS(2564), + [anon_sym_f64] = ACTIONS(2564), + [anon_sym_bool] = ACTIONS(2564), + [anon_sym_str] = ACTIONS(2564), + [anon_sym_char] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2562), + [anon_sym_COLON_COLON] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_POUND] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_fn] = ACTIONS(2564), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_impl] = ACTIONS(2564), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_loop] = ACTIONS(2564), + [anon_sym_match] = ACTIONS(2564), + [anon_sym_mod] = ACTIONS(2564), + [anon_sym_pub] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_trait] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2564), + [anon_sym_use] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym_DOT_DOT] = ACTIONS(2562), + [anon_sym_yield] = ACTIONS(2564), + [anon_sym_move] = ACTIONS(2564), + [anon_sym_try] = ACTIONS(2564), + [sym_integer_literal] = ACTIONS(2562), + [aux_sym_string_literal_token1] = ACTIONS(2562), + [sym_char_literal] = ACTIONS(2562), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2564), + [sym_super] = ACTIONS(2564), + [sym_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2562), + [sym_raw_string_literal] = ACTIONS(2562), + [sym_float_literal] = ACTIONS(2562), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [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_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_POUND] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2566), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_crate] = ACTIONS(2568), + [sym_metavariable] = ACTIONS(2566), + [sym_raw_string_literal] = ACTIONS(2566), + [sym_float_literal] = ACTIONS(2566), + }, + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [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_LBRACE] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2570), + [anon_sym_BANG] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_POUND] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2570), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2572), + [sym_super] = ACTIONS(2572), + [sym_crate] = ACTIONS(2572), + [sym_metavariable] = ACTIONS(2570), + [sym_raw_string_literal] = ACTIONS(2570), + [sym_float_literal] = ACTIONS(2570), + }, + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [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_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2574), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2576), + [sym_super] = ACTIONS(2576), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2574), + [sym_raw_string_literal] = ACTIONS(2574), + [sym_float_literal] = ACTIONS(2574), + }, + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [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_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2578), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2578), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2580), + [sym_super] = ACTIONS(2580), + [sym_crate] = ACTIONS(2580), + [sym_metavariable] = ACTIONS(2578), + [sym_raw_string_literal] = ACTIONS(2578), + [sym_float_literal] = ACTIONS(2578), + }, + [699] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [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_LBRACE] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2582), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2582), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2584), + [sym_super] = ACTIONS(2584), + [sym_crate] = ACTIONS(2584), + [sym_metavariable] = ACTIONS(2582), + [sym_raw_string_literal] = ACTIONS(2582), + [sym_float_literal] = ACTIONS(2582), + }, + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [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_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2586), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_crate] = ACTIONS(2588), + [sym_metavariable] = ACTIONS(2586), + [sym_raw_string_literal] = ACTIONS(2586), + [sym_float_literal] = ACTIONS(2586), + }, + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [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_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2590), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), + [sym_crate] = ACTIONS(2592), + [sym_metavariable] = ACTIONS(2590), + [sym_raw_string_literal] = ACTIONS(2590), + [sym_float_literal] = ACTIONS(2590), + }, + [702] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [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_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2594), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2594), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_crate] = ACTIONS(2596), + [sym_metavariable] = ACTIONS(2594), + [sym_raw_string_literal] = ACTIONS(2594), + [sym_float_literal] = ACTIONS(2594), + }, + [703] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_macro_rules_BANG] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2598), + [anon_sym_u8] = ACTIONS(2600), + [anon_sym_i8] = ACTIONS(2600), + [anon_sym_u16] = ACTIONS(2600), + [anon_sym_i16] = ACTIONS(2600), + [anon_sym_u32] = ACTIONS(2600), + [anon_sym_i32] = ACTIONS(2600), + [anon_sym_u64] = ACTIONS(2600), + [anon_sym_i64] = ACTIONS(2600), + [anon_sym_u128] = ACTIONS(2600), + [anon_sym_i128] = ACTIONS(2600), + [anon_sym_isize] = ACTIONS(2600), + [anon_sym_usize] = ACTIONS(2600), + [anon_sym_f32] = ACTIONS(2600), + [anon_sym_f64] = ACTIONS(2600), + [anon_sym_bool] = ACTIONS(2600), + [anon_sym_str] = ACTIONS(2600), + [anon_sym_char] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_COLON_COLON] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [anon_sym_fn] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_impl] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_loop] = ACTIONS(2600), + [anon_sym_match] = ACTIONS(2600), + [anon_sym_mod] = ACTIONS(2600), + [anon_sym_pub] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_struct] = ACTIONS(2600), + [anon_sym_trait] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_union] = ACTIONS(2600), + [anon_sym_unsafe] = ACTIONS(2600), + [anon_sym_use] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_extern] = ACTIONS(2600), + [anon_sym_DOT_DOT] = ACTIONS(2598), + [anon_sym_yield] = ACTIONS(2600), + [anon_sym_move] = ACTIONS(2600), + [anon_sym_try] = ACTIONS(2600), + [sym_integer_literal] = ACTIONS(2598), + [aux_sym_string_literal_token1] = ACTIONS(2598), + [sym_char_literal] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2600), + [anon_sym_false] = ACTIONS(2600), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2600), + [sym_super] = ACTIONS(2600), + [sym_crate] = ACTIONS(2600), + [sym_metavariable] = ACTIONS(2598), + [sym_raw_string_literal] = ACTIONS(2598), + [sym_float_literal] = ACTIONS(2598), + }, + [704] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_macro_rules_BANG] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2602), + [anon_sym_u8] = ACTIONS(2604), + [anon_sym_i8] = ACTIONS(2604), + [anon_sym_u16] = ACTIONS(2604), + [anon_sym_i16] = ACTIONS(2604), + [anon_sym_u32] = ACTIONS(2604), + [anon_sym_i32] = ACTIONS(2604), + [anon_sym_u64] = ACTIONS(2604), + [anon_sym_i64] = ACTIONS(2604), + [anon_sym_u128] = ACTIONS(2604), + [anon_sym_i128] = ACTIONS(2604), + [anon_sym_isize] = ACTIONS(2604), + [anon_sym_usize] = ACTIONS(2604), + [anon_sym_f32] = ACTIONS(2604), + [anon_sym_f64] = ACTIONS(2604), + [anon_sym_bool] = ACTIONS(2604), + [anon_sym_str] = ACTIONS(2604), + [anon_sym_char] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_COLON_COLON] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_const] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_fn] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_impl] = ACTIONS(2604), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_loop] = ACTIONS(2604), + [anon_sym_match] = ACTIONS(2604), + [anon_sym_mod] = ACTIONS(2604), + [anon_sym_pub] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(2604), + [anon_sym_trait] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_union] = ACTIONS(2604), + [anon_sym_unsafe] = ACTIONS(2604), + [anon_sym_use] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_extern] = ACTIONS(2604), + [anon_sym_DOT_DOT] = ACTIONS(2602), + [anon_sym_yield] = ACTIONS(2604), + [anon_sym_move] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [sym_integer_literal] = ACTIONS(2602), + [aux_sym_string_literal_token1] = ACTIONS(2602), + [sym_char_literal] = ACTIONS(2602), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2604), + [sym_super] = ACTIONS(2604), + [sym_crate] = ACTIONS(2604), + [sym_metavariable] = ACTIONS(2602), + [sym_raw_string_literal] = ACTIONS(2602), + [sym_float_literal] = ACTIONS(2602), + }, + [705] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_macro_rules_BANG] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2606), + [anon_sym_u8] = ACTIONS(2608), + [anon_sym_i8] = ACTIONS(2608), + [anon_sym_u16] = ACTIONS(2608), + [anon_sym_i16] = ACTIONS(2608), + [anon_sym_u32] = ACTIONS(2608), + [anon_sym_i32] = ACTIONS(2608), + [anon_sym_u64] = ACTIONS(2608), + [anon_sym_i64] = ACTIONS(2608), + [anon_sym_u128] = ACTIONS(2608), + [anon_sym_i128] = ACTIONS(2608), + [anon_sym_isize] = ACTIONS(2608), + [anon_sym_usize] = ACTIONS(2608), + [anon_sym_f32] = ACTIONS(2608), + [anon_sym_f64] = ACTIONS(2608), + [anon_sym_bool] = ACTIONS(2608), + [anon_sym_str] = ACTIONS(2608), + [anon_sym_char] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [anon_sym_fn] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_impl] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_loop] = ACTIONS(2608), + [anon_sym_match] = ACTIONS(2608), + [anon_sym_mod] = ACTIONS(2608), + [anon_sym_pub] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_struct] = ACTIONS(2608), + [anon_sym_trait] = ACTIONS(2608), + [anon_sym_type] = ACTIONS(2608), + [anon_sym_union] = ACTIONS(2608), + [anon_sym_unsafe] = ACTIONS(2608), + [anon_sym_use] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2606), + [anon_sym_yield] = ACTIONS(2608), + [anon_sym_move] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [sym_integer_literal] = ACTIONS(2606), + [aux_sym_string_literal_token1] = ACTIONS(2606), + [sym_char_literal] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2608), + [sym_super] = ACTIONS(2608), + [sym_crate] = ACTIONS(2608), + [sym_metavariable] = ACTIONS(2606), + [sym_raw_string_literal] = ACTIONS(2606), + [sym_float_literal] = ACTIONS(2606), + }, + [706] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(2610), + [sym_identifier] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym_macro_rules_BANG] = ACTIONS(2610), + [anon_sym_LPAREN] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_RBRACE] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(2610), + [anon_sym_u8] = ACTIONS(2612), + [anon_sym_i8] = ACTIONS(2612), + [anon_sym_u16] = ACTIONS(2612), + [anon_sym_i16] = ACTIONS(2612), + [anon_sym_u32] = ACTIONS(2612), + [anon_sym_i32] = ACTIONS(2612), + [anon_sym_u64] = ACTIONS(2612), + [anon_sym_i64] = ACTIONS(2612), + [anon_sym_u128] = ACTIONS(2612), + [anon_sym_i128] = ACTIONS(2612), + [anon_sym_isize] = ACTIONS(2612), + [anon_sym_usize] = ACTIONS(2612), + [anon_sym_f32] = ACTIONS(2612), + [anon_sym_f64] = ACTIONS(2612), + [anon_sym_bool] = ACTIONS(2612), + [anon_sym_str] = ACTIONS(2612), + [anon_sym_char] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_COLON_COLON] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2610), + [anon_sym_AMP] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_SQUOTE] = ACTIONS(2612), + [anon_sym_async] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_fn] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_impl] = ACTIONS(2612), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_loop] = ACTIONS(2612), + [anon_sym_match] = ACTIONS(2612), + [anon_sym_mod] = ACTIONS(2612), + [anon_sym_pub] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_trait] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_unsafe] = ACTIONS(2612), + [anon_sym_use] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_yield] = ACTIONS(2612), + [anon_sym_move] = ACTIONS(2612), + [anon_sym_try] = ACTIONS(2612), + [sym_integer_literal] = ACTIONS(2610), + [aux_sym_string_literal_token1] = ACTIONS(2610), + [sym_char_literal] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2612), + [sym_super] = ACTIONS(2612), + [sym_crate] = ACTIONS(2612), + [sym_metavariable] = ACTIONS(2610), + [sym_raw_string_literal] = ACTIONS(2610), + [sym_float_literal] = ACTIONS(2610), + }, + [707] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_macro_rules_BANG] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_u8] = ACTIONS(2616), + [anon_sym_i8] = ACTIONS(2616), + [anon_sym_u16] = ACTIONS(2616), + [anon_sym_i16] = ACTIONS(2616), + [anon_sym_u32] = ACTIONS(2616), + [anon_sym_i32] = ACTIONS(2616), + [anon_sym_u64] = ACTIONS(2616), + [anon_sym_i64] = ACTIONS(2616), + [anon_sym_u128] = ACTIONS(2616), + [anon_sym_i128] = ACTIONS(2616), + [anon_sym_isize] = ACTIONS(2616), + [anon_sym_usize] = ACTIONS(2616), + [anon_sym_f32] = ACTIONS(2616), + [anon_sym_f64] = ACTIONS(2616), + [anon_sym_bool] = ACTIONS(2616), + [anon_sym_str] = ACTIONS(2616), + [anon_sym_char] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2616), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_impl] = ACTIONS(2616), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_loop] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_mod] = ACTIONS(2616), + [anon_sym_pub] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_trait] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_use] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym_DOT_DOT] = ACTIONS(2614), + [anon_sym_yield] = ACTIONS(2616), + [anon_sym_move] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [sym_integer_literal] = ACTIONS(2614), + [aux_sym_string_literal_token1] = ACTIONS(2614), + [sym_char_literal] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2616), + [sym_super] = ACTIONS(2616), + [sym_crate] = ACTIONS(2616), + [sym_metavariable] = ACTIONS(2614), + [sym_raw_string_literal] = ACTIONS(2614), + [sym_float_literal] = ACTIONS(2614), + }, + [708] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_macro_rules_BANG] = ACTIONS(2618), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_u8] = ACTIONS(2620), + [anon_sym_i8] = ACTIONS(2620), + [anon_sym_u16] = ACTIONS(2620), + [anon_sym_i16] = ACTIONS(2620), + [anon_sym_u32] = ACTIONS(2620), + [anon_sym_i32] = ACTIONS(2620), + [anon_sym_u64] = ACTIONS(2620), + [anon_sym_i64] = ACTIONS(2620), + [anon_sym_u128] = ACTIONS(2620), + [anon_sym_i128] = ACTIONS(2620), + [anon_sym_isize] = ACTIONS(2620), + [anon_sym_usize] = ACTIONS(2620), + [anon_sym_f32] = ACTIONS(2620), + [anon_sym_f64] = ACTIONS(2620), + [anon_sym_bool] = ACTIONS(2620), + [anon_sym_str] = ACTIONS(2620), + [anon_sym_char] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_COLON_COLON] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_POUND] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2618), + [anon_sym_PIPE] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_fn] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_impl] = ACTIONS(2620), + [anon_sym_let] = ACTIONS(2620), + [anon_sym_loop] = ACTIONS(2620), + [anon_sym_match] = ACTIONS(2620), + [anon_sym_mod] = ACTIONS(2620), + [anon_sym_pub] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_trait] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(2620), + [anon_sym_use] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym_DOT_DOT] = ACTIONS(2618), + [anon_sym_yield] = ACTIONS(2620), + [anon_sym_move] = ACTIONS(2620), + [anon_sym_try] = ACTIONS(2620), + [sym_integer_literal] = ACTIONS(2618), + [aux_sym_string_literal_token1] = ACTIONS(2618), + [sym_char_literal] = ACTIONS(2618), + [anon_sym_true] = ACTIONS(2620), + [anon_sym_false] = ACTIONS(2620), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2620), + [sym_super] = ACTIONS(2620), + [sym_crate] = ACTIONS(2620), + [sym_metavariable] = ACTIONS(2618), + [sym_raw_string_literal] = ACTIONS(2618), + [sym_float_literal] = ACTIONS(2618), + }, + [709] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_macro_rules_BANG] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_u8] = ACTIONS(2624), + [anon_sym_i8] = ACTIONS(2624), + [anon_sym_u16] = ACTIONS(2624), + [anon_sym_i16] = ACTIONS(2624), + [anon_sym_u32] = ACTIONS(2624), + [anon_sym_i32] = ACTIONS(2624), + [anon_sym_u64] = ACTIONS(2624), + [anon_sym_i64] = ACTIONS(2624), + [anon_sym_u128] = ACTIONS(2624), + [anon_sym_i128] = ACTIONS(2624), + [anon_sym_isize] = ACTIONS(2624), + [anon_sym_usize] = ACTIONS(2624), + [anon_sym_f32] = ACTIONS(2624), + [anon_sym_f64] = ACTIONS(2624), + [anon_sym_bool] = ACTIONS(2624), + [anon_sym_str] = ACTIONS(2624), + [anon_sym_char] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_COLON_COLON] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_POUND] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2624), + [anon_sym_async] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_fn] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_impl] = ACTIONS(2624), + [anon_sym_let] = ACTIONS(2624), + [anon_sym_loop] = ACTIONS(2624), + [anon_sym_match] = ACTIONS(2624), + [anon_sym_mod] = ACTIONS(2624), + [anon_sym_pub] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_trait] = ACTIONS(2624), + [anon_sym_type] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_unsafe] = ACTIONS(2624), + [anon_sym_use] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym_DOT_DOT] = ACTIONS(2622), + [anon_sym_yield] = ACTIONS(2624), + [anon_sym_move] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [sym_integer_literal] = ACTIONS(2622), + [aux_sym_string_literal_token1] = ACTIONS(2622), + [sym_char_literal] = ACTIONS(2622), + [anon_sym_true] = ACTIONS(2624), + [anon_sym_false] = ACTIONS(2624), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2624), + [sym_super] = ACTIONS(2624), + [sym_crate] = ACTIONS(2624), + [sym_metavariable] = ACTIONS(2622), + [sym_raw_string_literal] = ACTIONS(2622), + [sym_float_literal] = ACTIONS(2622), + }, + [710] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [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_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(2626), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_POUND] = ACTIONS(2626), + [anon_sym_LT] = ACTIONS(2626), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2626), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2628), + [sym_super] = ACTIONS(2628), + [sym_crate] = ACTIONS(2628), + [sym_metavariable] = ACTIONS(2626), + [sym_raw_string_literal] = ACTIONS(2626), + [sym_float_literal] = ACTIONS(2626), + }, + [711] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [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_LBRACE] = ACTIONS(2630), + [anon_sym_RBRACE] = ACTIONS(2630), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2630), + [anon_sym_BANG] = ACTIONS(2630), + [anon_sym_AMP] = ACTIONS(2630), + [anon_sym_POUND] = ACTIONS(2630), + [anon_sym_LT] = ACTIONS(2630), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2630), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2632), + [sym_super] = ACTIONS(2632), + [sym_crate] = ACTIONS(2632), + [sym_metavariable] = ACTIONS(2630), + [sym_raw_string_literal] = ACTIONS(2630), + [sym_float_literal] = ACTIONS(2630), + }, + [712] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), + [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_LBRACE] = ACTIONS(2634), + [anon_sym_RBRACE] = ACTIONS(2634), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2634), + [anon_sym_BANG] = ACTIONS(2634), + [anon_sym_AMP] = ACTIONS(2634), + [anon_sym_POUND] = ACTIONS(2634), + [anon_sym_LT] = ACTIONS(2634), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2634), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2636), + [sym_super] = ACTIONS(2636), + [sym_crate] = ACTIONS(2636), + [sym_metavariable] = ACTIONS(2634), + [sym_raw_string_literal] = ACTIONS(2634), + [sym_float_literal] = ACTIONS(2634), + }, + [713] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [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_LBRACE] = ACTIONS(2638), + [anon_sym_RBRACE] = ACTIONS(2638), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2638), + [anon_sym_BANG] = ACTIONS(2638), + [anon_sym_AMP] = ACTIONS(2638), + [anon_sym_POUND] = ACTIONS(2638), + [anon_sym_LT] = ACTIONS(2638), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2638), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2640), + [sym_super] = ACTIONS(2640), + [sym_crate] = ACTIONS(2640), + [sym_metavariable] = ACTIONS(2638), + [sym_raw_string_literal] = ACTIONS(2638), + [sym_float_literal] = ACTIONS(2638), + }, + [714] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [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_LBRACE] = ACTIONS(2642), + [anon_sym_RBRACE] = ACTIONS(2642), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2642), + [anon_sym_BANG] = ACTIONS(2642), + [anon_sym_AMP] = ACTIONS(2642), + [anon_sym_POUND] = ACTIONS(2642), + [anon_sym_LT] = ACTIONS(2642), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2642), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2644), + [sym_super] = ACTIONS(2644), + [sym_crate] = ACTIONS(2644), + [sym_metavariable] = ACTIONS(2642), + [sym_raw_string_literal] = ACTIONS(2642), + [sym_float_literal] = ACTIONS(2642), + }, + [715] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [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_LBRACE] = ACTIONS(2646), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(2646), + [anon_sym_AMP] = ACTIONS(2646), + [anon_sym_POUND] = ACTIONS(2646), + [anon_sym_LT] = ACTIONS(2646), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2646), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2648), + [sym_super] = ACTIONS(2648), + [sym_crate] = ACTIONS(2648), + [sym_metavariable] = ACTIONS(2646), + [sym_raw_string_literal] = ACTIONS(2646), + [sym_float_literal] = ACTIONS(2646), + }, + [716] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [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_LBRACE] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2650), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2650), + [anon_sym_BANG] = ACTIONS(2650), + [anon_sym_AMP] = ACTIONS(2650), + [anon_sym_POUND] = ACTIONS(2650), + [anon_sym_LT] = ACTIONS(2650), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2650), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2652), + [sym_super] = ACTIONS(2652), + [sym_crate] = ACTIONS(2652), + [sym_metavariable] = ACTIONS(2650), + [sym_raw_string_literal] = ACTIONS(2650), + [sym_float_literal] = ACTIONS(2650), + }, + [717] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [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_LBRACE] = ACTIONS(2654), + [anon_sym_RBRACE] = ACTIONS(2654), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2654), + [anon_sym_BANG] = ACTIONS(2654), + [anon_sym_AMP] = ACTIONS(2654), + [anon_sym_POUND] = ACTIONS(2654), + [anon_sym_LT] = ACTIONS(2654), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2654), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2656), + [sym_super] = ACTIONS(2656), + [sym_crate] = ACTIONS(2656), + [sym_metavariable] = ACTIONS(2654), + [sym_raw_string_literal] = ACTIONS(2654), + [sym_float_literal] = ACTIONS(2654), + }, + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [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_LBRACE] = ACTIONS(2658), + [anon_sym_RBRACE] = ACTIONS(2658), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2658), + [anon_sym_BANG] = ACTIONS(2658), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(2658), + [anon_sym_LT] = ACTIONS(2658), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2658), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2660), + [sym_super] = ACTIONS(2660), + [sym_crate] = ACTIONS(2660), + [sym_metavariable] = ACTIONS(2658), + [sym_raw_string_literal] = ACTIONS(2658), + [sym_float_literal] = ACTIONS(2658), + }, + [719] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), + [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_LBRACE] = ACTIONS(2662), + [anon_sym_RBRACE] = ACTIONS(2662), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2662), + [anon_sym_BANG] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2662), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2664), + [sym_super] = ACTIONS(2664), + [sym_crate] = ACTIONS(2664), + [sym_metavariable] = ACTIONS(2662), + [sym_raw_string_literal] = ACTIONS(2662), + [sym_float_literal] = ACTIONS(2662), + }, + [720] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), + [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_LBRACE] = ACTIONS(2666), + [anon_sym_RBRACE] = ACTIONS(2666), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2666), + [anon_sym_BANG] = ACTIONS(2666), + [anon_sym_AMP] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(2666), + [anon_sym_LT] = ACTIONS(2666), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2666), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2668), + [sym_super] = ACTIONS(2668), + [sym_crate] = ACTIONS(2668), + [sym_metavariable] = ACTIONS(2666), + [sym_raw_string_literal] = ACTIONS(2666), + [sym_float_literal] = ACTIONS(2666), + }, + [721] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), + [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_LBRACE] = ACTIONS(2670), + [anon_sym_RBRACE] = ACTIONS(2670), + [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2670), + [anon_sym_BANG] = ACTIONS(2670), + [anon_sym_AMP] = ACTIONS(2670), + [anon_sym_POUND] = ACTIONS(2670), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2670), + [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(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2672), + [sym_super] = ACTIONS(2672), + [sym_crate] = ACTIONS(2672), + [sym_metavariable] = ACTIONS(2670), + [sym_raw_string_literal] = ACTIONS(2670), + [sym_float_literal] = ACTIONS(2670), + }, + [722] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(2674), + [sym_identifier] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2674), + [anon_sym_macro_rules_BANG] = ACTIONS(2674), + [anon_sym_LPAREN] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(2674), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2674), + [anon_sym_STAR] = ACTIONS(2674), + [anon_sym_u8] = ACTIONS(2676), + [anon_sym_i8] = ACTIONS(2676), + [anon_sym_u16] = ACTIONS(2676), + [anon_sym_i16] = ACTIONS(2676), + [anon_sym_u32] = ACTIONS(2676), + [anon_sym_i32] = ACTIONS(2676), + [anon_sym_u64] = ACTIONS(2676), + [anon_sym_i64] = ACTIONS(2676), + [anon_sym_u128] = ACTIONS(2676), + [anon_sym_i128] = ACTIONS(2676), + [anon_sym_isize] = ACTIONS(2676), + [anon_sym_usize] = ACTIONS(2676), + [anon_sym_f32] = ACTIONS(2676), + [anon_sym_f64] = ACTIONS(2676), + [anon_sym_bool] = ACTIONS(2676), + [anon_sym_str] = ACTIONS(2676), + [anon_sym_char] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2674), + [anon_sym_COLON_COLON] = ACTIONS(2674), + [anon_sym_BANG] = ACTIONS(2674), + [anon_sym_AMP] = ACTIONS(2674), + [anon_sym_POUND] = ACTIONS(2674), + [anon_sym_LT] = ACTIONS(2674), + [anon_sym_PIPE] = ACTIONS(2674), + [anon_sym_SQUOTE] = ACTIONS(2676), + [anon_sym_async] = ACTIONS(2676), + [anon_sym_break] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_continue] = ACTIONS(2676), + [anon_sym_default] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_fn] = ACTIONS(2676), + [anon_sym_for] = ACTIONS(2676), + [anon_sym_if] = ACTIONS(2676), + [anon_sym_impl] = ACTIONS(2676), + [anon_sym_let] = ACTIONS(2676), + [anon_sym_loop] = ACTIONS(2676), + [anon_sym_match] = ACTIONS(2676), + [anon_sym_mod] = ACTIONS(2676), + [anon_sym_pub] = ACTIONS(2676), + [anon_sym_return] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_trait] = ACTIONS(2676), + [anon_sym_type] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [anon_sym_unsafe] = ACTIONS(2676), + [anon_sym_use] = ACTIONS(2676), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_DOT_DOT] = ACTIONS(2674), + [anon_sym_yield] = ACTIONS(2676), + [anon_sym_move] = ACTIONS(2676), + [anon_sym_try] = ACTIONS(2676), + [sym_integer_literal] = ACTIONS(2674), + [aux_sym_string_literal_token1] = ACTIONS(2674), + [sym_char_literal] = ACTIONS(2674), + [anon_sym_true] = ACTIONS(2676), + [anon_sym_false] = ACTIONS(2676), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2676), + [sym_super] = ACTIONS(2676), + [sym_crate] = ACTIONS(2676), + [sym_metavariable] = ACTIONS(2674), + [sym_raw_string_literal] = ACTIONS(2674), + [sym_float_literal] = ACTIONS(2674), + }, + [723] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(2678), + [sym_identifier] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_macro_rules_BANG] = ACTIONS(2678), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_LBRACE] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_LBRACK] = ACTIONS(2678), + [anon_sym_STAR] = ACTIONS(2678), + [anon_sym_u8] = ACTIONS(2680), + [anon_sym_i8] = ACTIONS(2680), + [anon_sym_u16] = ACTIONS(2680), + [anon_sym_i16] = ACTIONS(2680), + [anon_sym_u32] = ACTIONS(2680), + [anon_sym_i32] = ACTIONS(2680), + [anon_sym_u64] = ACTIONS(2680), + [anon_sym_i64] = ACTIONS(2680), + [anon_sym_u128] = ACTIONS(2680), + [anon_sym_i128] = ACTIONS(2680), + [anon_sym_isize] = ACTIONS(2680), + [anon_sym_usize] = ACTIONS(2680), + [anon_sym_f32] = ACTIONS(2680), + [anon_sym_f64] = ACTIONS(2680), + [anon_sym_bool] = ACTIONS(2680), + [anon_sym_str] = ACTIONS(2680), + [anon_sym_char] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2678), + [anon_sym_COLON_COLON] = ACTIONS(2678), + [anon_sym_BANG] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + [anon_sym_POUND] = ACTIONS(2678), + [anon_sym_LT] = ACTIONS(2678), + [anon_sym_PIPE] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2680), + [anon_sym_break] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_continue] = ACTIONS(2680), + [anon_sym_default] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_fn] = ACTIONS(2680), + [anon_sym_for] = ACTIONS(2680), + [anon_sym_if] = ACTIONS(2680), + [anon_sym_impl] = ACTIONS(2680), + [anon_sym_let] = ACTIONS(2680), + [anon_sym_loop] = ACTIONS(2680), + [anon_sym_match] = ACTIONS(2680), + [anon_sym_mod] = ACTIONS(2680), + [anon_sym_pub] = ACTIONS(2680), + [anon_sym_return] = ACTIONS(2680), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_trait] = ACTIONS(2680), + [anon_sym_type] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [anon_sym_unsafe] = ACTIONS(2680), + [anon_sym_use] = ACTIONS(2680), + [anon_sym_while] = ACTIONS(2680), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym_DOT_DOT] = ACTIONS(2678), + [anon_sym_yield] = ACTIONS(2680), + [anon_sym_move] = ACTIONS(2680), + [anon_sym_try] = ACTIONS(2680), + [sym_integer_literal] = ACTIONS(2678), + [aux_sym_string_literal_token1] = ACTIONS(2678), + [sym_char_literal] = ACTIONS(2678), + [anon_sym_true] = ACTIONS(2680), + [anon_sym_false] = ACTIONS(2680), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2680), + [sym_super] = ACTIONS(2680), + [sym_crate] = ACTIONS(2680), + [sym_metavariable] = ACTIONS(2678), + [sym_raw_string_literal] = ACTIONS(2678), + [sym_float_literal] = ACTIONS(2678), + }, + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2682), + [anon_sym_macro_rules_BANG] = ACTIONS(2682), + [anon_sym_LPAREN] = ACTIONS(2682), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_LBRACK] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(2682), + [anon_sym_u8] = ACTIONS(2684), + [anon_sym_i8] = ACTIONS(2684), + [anon_sym_u16] = ACTIONS(2684), + [anon_sym_i16] = ACTIONS(2684), + [anon_sym_u32] = ACTIONS(2684), + [anon_sym_i32] = ACTIONS(2684), + [anon_sym_u64] = ACTIONS(2684), + [anon_sym_i64] = ACTIONS(2684), + [anon_sym_u128] = ACTIONS(2684), + [anon_sym_i128] = ACTIONS(2684), + [anon_sym_isize] = ACTIONS(2684), + [anon_sym_usize] = ACTIONS(2684), + [anon_sym_f32] = ACTIONS(2684), + [anon_sym_f64] = ACTIONS(2684), + [anon_sym_bool] = ACTIONS(2684), + [anon_sym_str] = ACTIONS(2684), + [anon_sym_char] = ACTIONS(2684), + [anon_sym_DASH] = ACTIONS(2682), + [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_BANG] = ACTIONS(2682), + [anon_sym_AMP] = ACTIONS(2682), + [anon_sym_POUND] = ACTIONS(2682), + [anon_sym_LT] = ACTIONS(2682), + [anon_sym_PIPE] = ACTIONS(2682), + [anon_sym_SQUOTE] = ACTIONS(2684), + [anon_sym_async] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_fn] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_impl] = ACTIONS(2684), + [anon_sym_let] = ACTIONS(2684), + [anon_sym_loop] = ACTIONS(2684), + [anon_sym_match] = ACTIONS(2684), + [anon_sym_mod] = ACTIONS(2684), + [anon_sym_pub] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_trait] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_unsafe] = ACTIONS(2684), + [anon_sym_use] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym_DOT_DOT] = ACTIONS(2682), + [anon_sym_yield] = ACTIONS(2684), + [anon_sym_move] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [sym_integer_literal] = ACTIONS(2682), + [aux_sym_string_literal_token1] = ACTIONS(2682), + [sym_char_literal] = ACTIONS(2682), + [anon_sym_true] = ACTIONS(2684), + [anon_sym_false] = ACTIONS(2684), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2684), + [sym_super] = ACTIONS(2684), + [sym_crate] = ACTIONS(2684), + [sym_metavariable] = ACTIONS(2682), + [sym_raw_string_literal] = ACTIONS(2682), + [sym_float_literal] = ACTIONS(2682), + }, + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_macro_rules_BANG] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2686), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_u8] = ACTIONS(2688), + [anon_sym_i8] = ACTIONS(2688), + [anon_sym_u16] = ACTIONS(2688), + [anon_sym_i16] = ACTIONS(2688), + [anon_sym_u32] = ACTIONS(2688), + [anon_sym_i32] = ACTIONS(2688), + [anon_sym_u64] = ACTIONS(2688), + [anon_sym_i64] = ACTIONS(2688), + [anon_sym_u128] = ACTIONS(2688), + [anon_sym_i128] = ACTIONS(2688), + [anon_sym_isize] = ACTIONS(2688), + [anon_sym_usize] = ACTIONS(2688), + [anon_sym_f32] = ACTIONS(2688), + [anon_sym_f64] = ACTIONS(2688), + [anon_sym_bool] = ACTIONS(2688), + [anon_sym_str] = ACTIONS(2688), + [anon_sym_char] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2686), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_BANG] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2686), + [anon_sym_POUND] = ACTIONS(2686), + [anon_sym_LT] = ACTIONS(2686), + [anon_sym_PIPE] = ACTIONS(2686), + [anon_sym_SQUOTE] = ACTIONS(2688), + [anon_sym_async] = ACTIONS(2688), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2688), + [anon_sym_default] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_fn] = ACTIONS(2688), + [anon_sym_for] = ACTIONS(2688), + [anon_sym_if] = ACTIONS(2688), + [anon_sym_impl] = ACTIONS(2688), + [anon_sym_let] = ACTIONS(2688), + [anon_sym_loop] = ACTIONS(2688), + [anon_sym_match] = ACTIONS(2688), + [anon_sym_mod] = ACTIONS(2688), + [anon_sym_pub] = ACTIONS(2688), + [anon_sym_return] = ACTIONS(2688), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_trait] = ACTIONS(2688), + [anon_sym_type] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [anon_sym_unsafe] = ACTIONS(2688), + [anon_sym_use] = ACTIONS(2688), + [anon_sym_while] = ACTIONS(2688), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2686), + [anon_sym_yield] = ACTIONS(2688), + [anon_sym_move] = ACTIONS(2688), + [anon_sym_try] = ACTIONS(2688), + [sym_integer_literal] = ACTIONS(2686), + [aux_sym_string_literal_token1] = ACTIONS(2686), + [sym_char_literal] = ACTIONS(2686), + [anon_sym_true] = ACTIONS(2688), + [anon_sym_false] = ACTIONS(2688), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2688), + [sym_super] = ACTIONS(2688), + [sym_crate] = ACTIONS(2688), + [sym_metavariable] = ACTIONS(2686), + [sym_raw_string_literal] = ACTIONS(2686), + [sym_float_literal] = ACTIONS(2686), + }, + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(2690), + [sym_identifier] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_macro_rules_BANG] = ACTIONS(2690), + [anon_sym_LPAREN] = ACTIONS(2690), + [anon_sym_LBRACE] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_u8] = ACTIONS(2692), + [anon_sym_i8] = ACTIONS(2692), + [anon_sym_u16] = ACTIONS(2692), + [anon_sym_i16] = ACTIONS(2692), + [anon_sym_u32] = ACTIONS(2692), + [anon_sym_i32] = ACTIONS(2692), + [anon_sym_u64] = ACTIONS(2692), + [anon_sym_i64] = ACTIONS(2692), + [anon_sym_u128] = ACTIONS(2692), + [anon_sym_i128] = ACTIONS(2692), + [anon_sym_isize] = ACTIONS(2692), + [anon_sym_usize] = ACTIONS(2692), + [anon_sym_f32] = ACTIONS(2692), + [anon_sym_f64] = ACTIONS(2692), + [anon_sym_bool] = ACTIONS(2692), + [anon_sym_str] = ACTIONS(2692), + [anon_sym_char] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2690), + [anon_sym_COLON_COLON] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2690), + [anon_sym_POUND] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2690), + [anon_sym_SQUOTE] = ACTIONS(2692), + [anon_sym_async] = ACTIONS(2692), + [anon_sym_break] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_continue] = ACTIONS(2692), + [anon_sym_default] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_fn] = ACTIONS(2692), + [anon_sym_for] = ACTIONS(2692), + [anon_sym_if] = ACTIONS(2692), + [anon_sym_impl] = ACTIONS(2692), + [anon_sym_let] = ACTIONS(2692), + [anon_sym_loop] = ACTIONS(2692), + [anon_sym_match] = ACTIONS(2692), + [anon_sym_mod] = ACTIONS(2692), + [anon_sym_pub] = ACTIONS(2692), + [anon_sym_return] = ACTIONS(2692), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_trait] = ACTIONS(2692), + [anon_sym_type] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [anon_sym_unsafe] = ACTIONS(2692), + [anon_sym_use] = ACTIONS(2692), + [anon_sym_while] = ACTIONS(2692), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2690), + [anon_sym_yield] = ACTIONS(2692), + [anon_sym_move] = ACTIONS(2692), + [anon_sym_try] = ACTIONS(2692), + [sym_integer_literal] = ACTIONS(2690), + [aux_sym_string_literal_token1] = ACTIONS(2690), + [sym_char_literal] = ACTIONS(2690), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2692), + [sym_super] = ACTIONS(2692), + [sym_crate] = ACTIONS(2692), + [sym_metavariable] = ACTIONS(2690), + [sym_raw_string_literal] = ACTIONS(2690), + [sym_float_literal] = ACTIONS(2690), + }, + [727] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2694), + [sym_identifier] = ACTIONS(2696), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_macro_rules_BANG] = ACTIONS(2694), + [anon_sym_LPAREN] = ACTIONS(2694), + [anon_sym_LBRACE] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_LBRACK] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_u8] = ACTIONS(2696), + [anon_sym_i8] = ACTIONS(2696), + [anon_sym_u16] = ACTIONS(2696), + [anon_sym_i16] = ACTIONS(2696), + [anon_sym_u32] = ACTIONS(2696), + [anon_sym_i32] = ACTIONS(2696), + [anon_sym_u64] = ACTIONS(2696), + [anon_sym_i64] = ACTIONS(2696), + [anon_sym_u128] = ACTIONS(2696), + [anon_sym_i128] = ACTIONS(2696), + [anon_sym_isize] = ACTIONS(2696), + [anon_sym_usize] = ACTIONS(2696), + [anon_sym_f32] = ACTIONS(2696), + [anon_sym_f64] = ACTIONS(2696), + [anon_sym_bool] = ACTIONS(2696), + [anon_sym_str] = ACTIONS(2696), + [anon_sym_char] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2694), + [anon_sym_COLON_COLON] = ACTIONS(2694), + [anon_sym_BANG] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2694), + [anon_sym_POUND] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2694), + [anon_sym_SQUOTE] = ACTIONS(2696), + [anon_sym_async] = ACTIONS(2696), + [anon_sym_break] = ACTIONS(2696), + [anon_sym_const] = ACTIONS(2696), + [anon_sym_continue] = ACTIONS(2696), + [anon_sym_default] = ACTIONS(2696), + [anon_sym_enum] = ACTIONS(2696), + [anon_sym_fn] = ACTIONS(2696), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_if] = ACTIONS(2696), + [anon_sym_impl] = ACTIONS(2696), + [anon_sym_let] = ACTIONS(2696), + [anon_sym_loop] = ACTIONS(2696), + [anon_sym_match] = ACTIONS(2696), + [anon_sym_mod] = ACTIONS(2696), + [anon_sym_pub] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2696), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_struct] = ACTIONS(2696), + [anon_sym_trait] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_union] = ACTIONS(2696), + [anon_sym_unsafe] = ACTIONS(2696), + [anon_sym_use] = ACTIONS(2696), + [anon_sym_while] = ACTIONS(2696), + [anon_sym_extern] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2694), + [anon_sym_yield] = ACTIONS(2696), + [anon_sym_move] = ACTIONS(2696), + [anon_sym_try] = ACTIONS(2696), + [sym_integer_literal] = ACTIONS(2694), + [aux_sym_string_literal_token1] = ACTIONS(2694), + [sym_char_literal] = ACTIONS(2694), + [anon_sym_true] = ACTIONS(2696), + [anon_sym_false] = ACTIONS(2696), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2696), + [sym_super] = ACTIONS(2696), + [sym_crate] = ACTIONS(2696), + [sym_metavariable] = ACTIONS(2694), + [sym_raw_string_literal] = ACTIONS(2694), + [sym_float_literal] = ACTIONS(2694), + }, + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2700), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_macro_rules_BANG] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_u8] = ACTIONS(2700), + [anon_sym_i8] = ACTIONS(2700), + [anon_sym_u16] = ACTIONS(2700), + [anon_sym_i16] = ACTIONS(2700), + [anon_sym_u32] = ACTIONS(2700), + [anon_sym_i32] = ACTIONS(2700), + [anon_sym_u64] = ACTIONS(2700), + [anon_sym_i64] = ACTIONS(2700), + [anon_sym_u128] = ACTIONS(2700), + [anon_sym_i128] = ACTIONS(2700), + [anon_sym_isize] = ACTIONS(2700), + [anon_sym_usize] = ACTIONS(2700), + [anon_sym_f32] = ACTIONS(2700), + [anon_sym_f64] = ACTIONS(2700), + [anon_sym_bool] = ACTIONS(2700), + [anon_sym_str] = ACTIONS(2700), + [anon_sym_char] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2698), + [anon_sym_COLON_COLON] = ACTIONS(2698), + [anon_sym_BANG] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_async] = ACTIONS(2700), + [anon_sym_break] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [anon_sym_continue] = ACTIONS(2700), + [anon_sym_default] = ACTIONS(2700), + [anon_sym_enum] = ACTIONS(2700), + [anon_sym_fn] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_impl] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_loop] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_mod] = ACTIONS(2700), + [anon_sym_pub] = ACTIONS(2700), + [anon_sym_return] = ACTIONS(2700), + [anon_sym_static] = ACTIONS(2700), + [anon_sym_struct] = ACTIONS(2700), + [anon_sym_trait] = ACTIONS(2700), + [anon_sym_type] = ACTIONS(2700), + [anon_sym_union] = ACTIONS(2700), + [anon_sym_unsafe] = ACTIONS(2700), + [anon_sym_use] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2698), + [anon_sym_yield] = ACTIONS(2700), + [anon_sym_move] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [sym_integer_literal] = ACTIONS(2698), + [aux_sym_string_literal_token1] = ACTIONS(2698), + [sym_char_literal] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2700), + [sym_super] = ACTIONS(2700), + [sym_crate] = ACTIONS(2700), + [sym_metavariable] = ACTIONS(2698), + [sym_raw_string_literal] = ACTIONS(2698), + [sym_float_literal] = ACTIONS(2698), + }, + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2702), + [sym_identifier] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_macro_rules_BANG] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_u8] = ACTIONS(2704), + [anon_sym_i8] = ACTIONS(2704), + [anon_sym_u16] = ACTIONS(2704), + [anon_sym_i16] = ACTIONS(2704), + [anon_sym_u32] = ACTIONS(2704), + [anon_sym_i32] = ACTIONS(2704), + [anon_sym_u64] = ACTIONS(2704), + [anon_sym_i64] = ACTIONS(2704), + [anon_sym_u128] = ACTIONS(2704), + [anon_sym_i128] = ACTIONS(2704), + [anon_sym_isize] = ACTIONS(2704), + [anon_sym_usize] = ACTIONS(2704), + [anon_sym_f32] = ACTIONS(2704), + [anon_sym_f64] = ACTIONS(2704), + [anon_sym_bool] = ACTIONS(2704), + [anon_sym_str] = ACTIONS(2704), + [anon_sym_char] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2702), + [anon_sym_COLON_COLON] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_POUND] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2704), + [anon_sym_async] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_fn] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_impl] = ACTIONS(2704), + [anon_sym_let] = ACTIONS(2704), + [anon_sym_loop] = ACTIONS(2704), + [anon_sym_match] = ACTIONS(2704), + [anon_sym_mod] = ACTIONS(2704), + [anon_sym_pub] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_trait] = ACTIONS(2704), + [anon_sym_type] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_unsafe] = ACTIONS(2704), + [anon_sym_use] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2702), + [anon_sym_yield] = ACTIONS(2704), + [anon_sym_move] = ACTIONS(2704), + [anon_sym_try] = ACTIONS(2704), + [sym_integer_literal] = ACTIONS(2702), + [aux_sym_string_literal_token1] = ACTIONS(2702), + [sym_char_literal] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2704), + [anon_sym_false] = ACTIONS(2704), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2704), + [sym_super] = ACTIONS(2704), + [sym_crate] = ACTIONS(2704), + [sym_metavariable] = ACTIONS(2702), + [sym_raw_string_literal] = ACTIONS(2702), + [sym_float_literal] = ACTIONS(2702), + }, + [730] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2706), + [sym_identifier] = ACTIONS(2708), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_macro_rules_BANG] = ACTIONS(2706), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2706), + [anon_sym_u8] = ACTIONS(2708), + [anon_sym_i8] = ACTIONS(2708), + [anon_sym_u16] = ACTIONS(2708), + [anon_sym_i16] = ACTIONS(2708), + [anon_sym_u32] = ACTIONS(2708), + [anon_sym_i32] = ACTIONS(2708), + [anon_sym_u64] = ACTIONS(2708), + [anon_sym_i64] = ACTIONS(2708), + [anon_sym_u128] = ACTIONS(2708), + [anon_sym_i128] = ACTIONS(2708), + [anon_sym_isize] = ACTIONS(2708), + [anon_sym_usize] = ACTIONS(2708), + [anon_sym_f32] = ACTIONS(2708), + [anon_sym_f64] = ACTIONS(2708), + [anon_sym_bool] = ACTIONS(2708), + [anon_sym_str] = ACTIONS(2708), + [anon_sym_char] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2706), + [anon_sym_COLON_COLON] = ACTIONS(2706), + [anon_sym_BANG] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_SQUOTE] = ACTIONS(2708), + [anon_sym_async] = ACTIONS(2708), + [anon_sym_break] = ACTIONS(2708), + [anon_sym_const] = ACTIONS(2708), + [anon_sym_continue] = ACTIONS(2708), + [anon_sym_default] = ACTIONS(2708), + [anon_sym_enum] = ACTIONS(2708), + [anon_sym_fn] = ACTIONS(2708), + [anon_sym_for] = ACTIONS(2708), + [anon_sym_if] = ACTIONS(2708), + [anon_sym_impl] = ACTIONS(2708), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_loop] = ACTIONS(2708), + [anon_sym_match] = ACTIONS(2708), + [anon_sym_mod] = ACTIONS(2708), + [anon_sym_pub] = ACTIONS(2708), + [anon_sym_return] = ACTIONS(2708), + [anon_sym_static] = ACTIONS(2708), + [anon_sym_struct] = ACTIONS(2708), + [anon_sym_trait] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_union] = ACTIONS(2708), + [anon_sym_unsafe] = ACTIONS(2708), + [anon_sym_use] = ACTIONS(2708), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_extern] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2706), + [anon_sym_yield] = ACTIONS(2708), + [anon_sym_move] = ACTIONS(2708), + [anon_sym_try] = ACTIONS(2708), + [sym_integer_literal] = ACTIONS(2706), + [aux_sym_string_literal_token1] = ACTIONS(2706), + [sym_char_literal] = ACTIONS(2706), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2708), + [sym_super] = ACTIONS(2708), + [sym_crate] = ACTIONS(2708), + [sym_metavariable] = ACTIONS(2706), + [sym_raw_string_literal] = ACTIONS(2706), + [sym_float_literal] = ACTIONS(2706), + }, + [731] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(2710), + [sym_identifier] = ACTIONS(2712), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_macro_rules_BANG] = ACTIONS(2710), + [anon_sym_LPAREN] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2710), + [anon_sym_u8] = ACTIONS(2712), + [anon_sym_i8] = ACTIONS(2712), + [anon_sym_u16] = ACTIONS(2712), + [anon_sym_i16] = ACTIONS(2712), + [anon_sym_u32] = ACTIONS(2712), + [anon_sym_i32] = ACTIONS(2712), + [anon_sym_u64] = ACTIONS(2712), + [anon_sym_i64] = ACTIONS(2712), + [anon_sym_u128] = ACTIONS(2712), + [anon_sym_i128] = ACTIONS(2712), + [anon_sym_isize] = ACTIONS(2712), + [anon_sym_usize] = ACTIONS(2712), + [anon_sym_f32] = ACTIONS(2712), + [anon_sym_f64] = ACTIONS(2712), + [anon_sym_bool] = ACTIONS(2712), + [anon_sym_str] = ACTIONS(2712), + [anon_sym_char] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2710), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym_BANG] = ACTIONS(2710), + [anon_sym_AMP] = ACTIONS(2710), + [anon_sym_POUND] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_SQUOTE] = ACTIONS(2712), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_break] = ACTIONS(2712), + [anon_sym_const] = ACTIONS(2712), + [anon_sym_continue] = ACTIONS(2712), + [anon_sym_default] = ACTIONS(2712), + [anon_sym_enum] = ACTIONS(2712), + [anon_sym_fn] = ACTIONS(2712), + [anon_sym_for] = ACTIONS(2712), + [anon_sym_if] = ACTIONS(2712), + [anon_sym_impl] = ACTIONS(2712), + [anon_sym_let] = ACTIONS(2712), + [anon_sym_loop] = ACTIONS(2712), + [anon_sym_match] = ACTIONS(2712), + [anon_sym_mod] = ACTIONS(2712), + [anon_sym_pub] = ACTIONS(2712), + [anon_sym_return] = ACTIONS(2712), + [anon_sym_static] = ACTIONS(2712), + [anon_sym_struct] = ACTIONS(2712), + [anon_sym_trait] = ACTIONS(2712), + [anon_sym_type] = ACTIONS(2712), + [anon_sym_union] = ACTIONS(2712), + [anon_sym_unsafe] = ACTIONS(2712), + [anon_sym_use] = ACTIONS(2712), + [anon_sym_while] = ACTIONS(2712), + [anon_sym_extern] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2712), + [anon_sym_move] = ACTIONS(2712), + [anon_sym_try] = ACTIONS(2712), + [sym_integer_literal] = ACTIONS(2710), + [aux_sym_string_literal_token1] = ACTIONS(2710), + [sym_char_literal] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2712), + [anon_sym_false] = ACTIONS(2712), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2712), + [sym_super] = ACTIONS(2712), + [sym_crate] = ACTIONS(2712), + [sym_metavariable] = ACTIONS(2710), + [sym_raw_string_literal] = ACTIONS(2710), + [sym_float_literal] = ACTIONS(2710), + }, + [732] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(2714), + [sym_identifier] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_macro_rules_BANG] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2714), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_RBRACE] = ACTIONS(2714), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_STAR] = ACTIONS(2714), + [anon_sym_u8] = ACTIONS(2716), + [anon_sym_i8] = ACTIONS(2716), + [anon_sym_u16] = ACTIONS(2716), + [anon_sym_i16] = ACTIONS(2716), + [anon_sym_u32] = ACTIONS(2716), + [anon_sym_i32] = ACTIONS(2716), + [anon_sym_u64] = ACTIONS(2716), + [anon_sym_i64] = ACTIONS(2716), + [anon_sym_u128] = ACTIONS(2716), + [anon_sym_i128] = ACTIONS(2716), + [anon_sym_isize] = ACTIONS(2716), + [anon_sym_usize] = ACTIONS(2716), + [anon_sym_f32] = ACTIONS(2716), + [anon_sym_f64] = ACTIONS(2716), + [anon_sym_bool] = ACTIONS(2716), + [anon_sym_str] = ACTIONS(2716), + [anon_sym_char] = ACTIONS(2716), + [anon_sym_DASH] = ACTIONS(2714), + [anon_sym_COLON_COLON] = ACTIONS(2714), + [anon_sym_BANG] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_LT] = ACTIONS(2714), + [anon_sym_PIPE] = ACTIONS(2714), + [anon_sym_SQUOTE] = ACTIONS(2716), + [anon_sym_async] = ACTIONS(2716), + [anon_sym_break] = ACTIONS(2716), + [anon_sym_const] = ACTIONS(2716), + [anon_sym_continue] = ACTIONS(2716), + [anon_sym_default] = ACTIONS(2716), + [anon_sym_enum] = ACTIONS(2716), + [anon_sym_fn] = ACTIONS(2716), + [anon_sym_for] = ACTIONS(2716), + [anon_sym_if] = ACTIONS(2716), + [anon_sym_impl] = ACTIONS(2716), + [anon_sym_let] = ACTIONS(2716), + [anon_sym_loop] = ACTIONS(2716), + [anon_sym_match] = ACTIONS(2716), + [anon_sym_mod] = ACTIONS(2716), + [anon_sym_pub] = ACTIONS(2716), + [anon_sym_return] = ACTIONS(2716), + [anon_sym_static] = ACTIONS(2716), + [anon_sym_struct] = ACTIONS(2716), + [anon_sym_trait] = ACTIONS(2716), + [anon_sym_type] = ACTIONS(2716), + [anon_sym_union] = ACTIONS(2716), + [anon_sym_unsafe] = ACTIONS(2716), + [anon_sym_use] = ACTIONS(2716), + [anon_sym_while] = ACTIONS(2716), + [anon_sym_extern] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2714), + [anon_sym_yield] = ACTIONS(2716), + [anon_sym_move] = ACTIONS(2716), + [anon_sym_try] = ACTIONS(2716), + [sym_integer_literal] = ACTIONS(2714), + [aux_sym_string_literal_token1] = ACTIONS(2714), + [sym_char_literal] = ACTIONS(2714), + [anon_sym_true] = ACTIONS(2716), + [anon_sym_false] = ACTIONS(2716), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2716), + [sym_super] = ACTIONS(2716), + [sym_crate] = ACTIONS(2716), + [sym_metavariable] = ACTIONS(2714), + [sym_raw_string_literal] = ACTIONS(2714), + [sym_float_literal] = ACTIONS(2714), + }, + [733] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(2718), + [sym_identifier] = ACTIONS(2720), + [anon_sym_SEMI] = ACTIONS(2718), + [anon_sym_macro_rules_BANG] = ACTIONS(2718), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_u8] = ACTIONS(2720), + [anon_sym_i8] = ACTIONS(2720), + [anon_sym_u16] = ACTIONS(2720), + [anon_sym_i16] = ACTIONS(2720), + [anon_sym_u32] = ACTIONS(2720), + [anon_sym_i32] = ACTIONS(2720), + [anon_sym_u64] = ACTIONS(2720), + [anon_sym_i64] = ACTIONS(2720), + [anon_sym_u128] = ACTIONS(2720), + [anon_sym_i128] = ACTIONS(2720), + [anon_sym_isize] = ACTIONS(2720), + [anon_sym_usize] = ACTIONS(2720), + [anon_sym_f32] = ACTIONS(2720), + [anon_sym_f64] = ACTIONS(2720), + [anon_sym_bool] = ACTIONS(2720), + [anon_sym_str] = ACTIONS(2720), + [anon_sym_char] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_COLON_COLON] = ACTIONS(2718), + [anon_sym_BANG] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_SQUOTE] = ACTIONS(2720), + [anon_sym_async] = ACTIONS(2720), + [anon_sym_break] = ACTIONS(2720), + [anon_sym_const] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_enum] = ACTIONS(2720), + [anon_sym_fn] = ACTIONS(2720), + [anon_sym_for] = ACTIONS(2720), + [anon_sym_if] = ACTIONS(2720), + [anon_sym_impl] = ACTIONS(2720), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_loop] = ACTIONS(2720), + [anon_sym_match] = ACTIONS(2720), + [anon_sym_mod] = ACTIONS(2720), + [anon_sym_pub] = ACTIONS(2720), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_struct] = ACTIONS(2720), + [anon_sym_trait] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_union] = ACTIONS(2720), + [anon_sym_unsafe] = ACTIONS(2720), + [anon_sym_use] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2720), + [anon_sym_extern] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2720), + [anon_sym_move] = ACTIONS(2720), + [anon_sym_try] = ACTIONS(2720), + [sym_integer_literal] = ACTIONS(2718), + [aux_sym_string_literal_token1] = ACTIONS(2718), + [sym_char_literal] = ACTIONS(2718), + [anon_sym_true] = ACTIONS(2720), + [anon_sym_false] = ACTIONS(2720), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2720), + [sym_super] = ACTIONS(2720), + [sym_crate] = ACTIONS(2720), + [sym_metavariable] = ACTIONS(2718), + [sym_raw_string_literal] = ACTIONS(2718), + [sym_float_literal] = ACTIONS(2718), + }, + [734] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2722), + [sym_identifier] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_macro_rules_BANG] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_RBRACE] = ACTIONS(2722), + [anon_sym_LBRACK] = ACTIONS(2722), + [anon_sym_STAR] = ACTIONS(2722), + [anon_sym_u8] = ACTIONS(2724), + [anon_sym_i8] = ACTIONS(2724), + [anon_sym_u16] = ACTIONS(2724), + [anon_sym_i16] = ACTIONS(2724), + [anon_sym_u32] = ACTIONS(2724), + [anon_sym_i32] = ACTIONS(2724), + [anon_sym_u64] = ACTIONS(2724), + [anon_sym_i64] = ACTIONS(2724), + [anon_sym_u128] = ACTIONS(2724), + [anon_sym_i128] = ACTIONS(2724), + [anon_sym_isize] = ACTIONS(2724), + [anon_sym_usize] = ACTIONS(2724), + [anon_sym_f32] = ACTIONS(2724), + [anon_sym_f64] = ACTIONS(2724), + [anon_sym_bool] = ACTIONS(2724), + [anon_sym_str] = ACTIONS(2724), + [anon_sym_char] = ACTIONS(2724), + [anon_sym_DASH] = ACTIONS(2722), + [anon_sym_COLON_COLON] = ACTIONS(2722), + [anon_sym_BANG] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_LT] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_SQUOTE] = ACTIONS(2724), + [anon_sym_async] = ACTIONS(2724), + [anon_sym_break] = ACTIONS(2724), + [anon_sym_const] = ACTIONS(2724), + [anon_sym_continue] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(2724), + [anon_sym_enum] = ACTIONS(2724), + [anon_sym_fn] = ACTIONS(2724), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2724), + [anon_sym_impl] = ACTIONS(2724), + [anon_sym_let] = ACTIONS(2724), + [anon_sym_loop] = ACTIONS(2724), + [anon_sym_match] = ACTIONS(2724), + [anon_sym_mod] = ACTIONS(2724), + [anon_sym_pub] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(2724), + [anon_sym_static] = ACTIONS(2724), + [anon_sym_struct] = ACTIONS(2724), + [anon_sym_trait] = ACTIONS(2724), + [anon_sym_type] = ACTIONS(2724), + [anon_sym_union] = ACTIONS(2724), + [anon_sym_unsafe] = ACTIONS(2724), + [anon_sym_use] = ACTIONS(2724), + [anon_sym_while] = ACTIONS(2724), + [anon_sym_extern] = ACTIONS(2724), + [anon_sym_DOT_DOT] = ACTIONS(2722), + [anon_sym_yield] = ACTIONS(2724), + [anon_sym_move] = ACTIONS(2724), + [anon_sym_try] = ACTIONS(2724), + [sym_integer_literal] = ACTIONS(2722), + [aux_sym_string_literal_token1] = ACTIONS(2722), + [sym_char_literal] = ACTIONS(2722), + [anon_sym_true] = ACTIONS(2724), + [anon_sym_false] = ACTIONS(2724), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2724), + [sym_super] = ACTIONS(2724), + [sym_crate] = ACTIONS(2724), + [sym_metavariable] = ACTIONS(2722), + [sym_raw_string_literal] = ACTIONS(2722), + [sym_float_literal] = ACTIONS(2722), + }, + [735] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(2726), + [sym_identifier] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2726), + [anon_sym_macro_rules_BANG] = ACTIONS(2726), + [anon_sym_LPAREN] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_RBRACE] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(2726), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_u8] = ACTIONS(2728), + [anon_sym_i8] = ACTIONS(2728), + [anon_sym_u16] = ACTIONS(2728), + [anon_sym_i16] = ACTIONS(2728), + [anon_sym_u32] = ACTIONS(2728), + [anon_sym_i32] = ACTIONS(2728), + [anon_sym_u64] = ACTIONS(2728), + [anon_sym_i64] = ACTIONS(2728), + [anon_sym_u128] = ACTIONS(2728), + [anon_sym_i128] = ACTIONS(2728), + [anon_sym_isize] = ACTIONS(2728), + [anon_sym_usize] = ACTIONS(2728), + [anon_sym_f32] = ACTIONS(2728), + [anon_sym_f64] = ACTIONS(2728), + [anon_sym_bool] = ACTIONS(2728), + [anon_sym_str] = ACTIONS(2728), + [anon_sym_char] = ACTIONS(2728), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_COLON_COLON] = ACTIONS(2726), + [anon_sym_BANG] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_POUND] = ACTIONS(2726), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_SQUOTE] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(2728), + [anon_sym_break] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2728), + [anon_sym_continue] = ACTIONS(2728), + [anon_sym_default] = ACTIONS(2728), + [anon_sym_enum] = ACTIONS(2728), + [anon_sym_fn] = ACTIONS(2728), + [anon_sym_for] = ACTIONS(2728), + [anon_sym_if] = ACTIONS(2728), + [anon_sym_impl] = ACTIONS(2728), + [anon_sym_let] = ACTIONS(2728), + [anon_sym_loop] = ACTIONS(2728), + [anon_sym_match] = ACTIONS(2728), + [anon_sym_mod] = ACTIONS(2728), + [anon_sym_pub] = ACTIONS(2728), + [anon_sym_return] = ACTIONS(2728), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_struct] = ACTIONS(2728), + [anon_sym_trait] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_union] = ACTIONS(2728), + [anon_sym_unsafe] = ACTIONS(2728), + [anon_sym_use] = ACTIONS(2728), + [anon_sym_while] = ACTIONS(2728), + [anon_sym_extern] = ACTIONS(2728), + [anon_sym_DOT_DOT] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2728), + [anon_sym_move] = ACTIONS(2728), + [anon_sym_try] = ACTIONS(2728), + [sym_integer_literal] = ACTIONS(2726), + [aux_sym_string_literal_token1] = ACTIONS(2726), + [sym_char_literal] = ACTIONS(2726), + [anon_sym_true] = ACTIONS(2728), + [anon_sym_false] = ACTIONS(2728), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2728), + [sym_super] = ACTIONS(2728), + [sym_crate] = ACTIONS(2728), + [sym_metavariable] = ACTIONS(2726), + [sym_raw_string_literal] = ACTIONS(2726), + [sym_float_literal] = ACTIONS(2726), + }, + [736] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [ts_builtin_sym_end] = ACTIONS(2730), + [sym_identifier] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2730), + [anon_sym_macro_rules_BANG] = ACTIONS(2730), + [anon_sym_LPAREN] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_RBRACE] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_u8] = ACTIONS(2732), + [anon_sym_i8] = ACTIONS(2732), + [anon_sym_u16] = ACTIONS(2732), + [anon_sym_i16] = ACTIONS(2732), + [anon_sym_u32] = ACTIONS(2732), + [anon_sym_i32] = ACTIONS(2732), + [anon_sym_u64] = ACTIONS(2732), + [anon_sym_i64] = ACTIONS(2732), + [anon_sym_u128] = ACTIONS(2732), + [anon_sym_i128] = ACTIONS(2732), + [anon_sym_isize] = ACTIONS(2732), + [anon_sym_usize] = ACTIONS(2732), + [anon_sym_f32] = ACTIONS(2732), + [anon_sym_f64] = ACTIONS(2732), + [anon_sym_bool] = ACTIONS(2732), + [anon_sym_str] = ACTIONS(2732), + [anon_sym_char] = ACTIONS(2732), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_COLON_COLON] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_POUND] = ACTIONS(2730), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(2732), + [anon_sym_async] = ACTIONS(2732), + [anon_sym_break] = ACTIONS(2732), + [anon_sym_const] = ACTIONS(2732), + [anon_sym_continue] = ACTIONS(2732), + [anon_sym_default] = ACTIONS(2732), + [anon_sym_enum] = ACTIONS(2732), + [anon_sym_fn] = ACTIONS(2732), + [anon_sym_for] = ACTIONS(2732), + [anon_sym_if] = ACTIONS(2732), + [anon_sym_impl] = ACTIONS(2732), + [anon_sym_let] = ACTIONS(2732), + [anon_sym_loop] = ACTIONS(2732), + [anon_sym_match] = ACTIONS(2732), + [anon_sym_mod] = ACTIONS(2732), + [anon_sym_pub] = ACTIONS(2732), + [anon_sym_return] = ACTIONS(2732), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2732), + [anon_sym_trait] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_union] = ACTIONS(2732), + [anon_sym_unsafe] = ACTIONS(2732), + [anon_sym_use] = ACTIONS(2732), + [anon_sym_while] = ACTIONS(2732), + [anon_sym_extern] = ACTIONS(2732), + [anon_sym_DOT_DOT] = ACTIONS(2730), + [anon_sym_yield] = ACTIONS(2732), + [anon_sym_move] = ACTIONS(2732), + [anon_sym_try] = ACTIONS(2732), + [sym_integer_literal] = ACTIONS(2730), + [aux_sym_string_literal_token1] = ACTIONS(2730), + [sym_char_literal] = ACTIONS(2730), + [anon_sym_true] = ACTIONS(2732), + [anon_sym_false] = ACTIONS(2732), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2732), + [sym_super] = ACTIONS(2732), + [sym_crate] = ACTIONS(2732), + [sym_metavariable] = ACTIONS(2730), + [sym_raw_string_literal] = ACTIONS(2730), + [sym_float_literal] = ACTIONS(2730), + }, + [737] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [ts_builtin_sym_end] = ACTIONS(2734), + [sym_identifier] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_macro_rules_BANG] = ACTIONS(2734), + [anon_sym_LPAREN] = ACTIONS(2734), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LBRACK] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_u8] = ACTIONS(2736), + [anon_sym_i8] = ACTIONS(2736), + [anon_sym_u16] = ACTIONS(2736), + [anon_sym_i16] = ACTIONS(2736), + [anon_sym_u32] = ACTIONS(2736), + [anon_sym_i32] = ACTIONS(2736), + [anon_sym_u64] = ACTIONS(2736), + [anon_sym_i64] = ACTIONS(2736), + [anon_sym_u128] = ACTIONS(2736), + [anon_sym_i128] = ACTIONS(2736), + [anon_sym_isize] = ACTIONS(2736), + [anon_sym_usize] = ACTIONS(2736), + [anon_sym_f32] = ACTIONS(2736), + [anon_sym_f64] = ACTIONS(2736), + [anon_sym_bool] = ACTIONS(2736), + [anon_sym_str] = ACTIONS(2736), + [anon_sym_char] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_COLON_COLON] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_POUND] = ACTIONS(2734), + [anon_sym_LT] = ACTIONS(2734), + [anon_sym_PIPE] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2736), + [anon_sym_async] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_fn] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_impl] = ACTIONS(2736), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_loop] = ACTIONS(2736), + [anon_sym_match] = ACTIONS(2736), + [anon_sym_mod] = ACTIONS(2736), + [anon_sym_pub] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_trait] = ACTIONS(2736), + [anon_sym_type] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_unsafe] = ACTIONS(2736), + [anon_sym_use] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_DOT_DOT] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2736), + [anon_sym_move] = ACTIONS(2736), + [anon_sym_try] = ACTIONS(2736), + [sym_integer_literal] = ACTIONS(2734), + [aux_sym_string_literal_token1] = ACTIONS(2734), + [sym_char_literal] = ACTIONS(2734), + [anon_sym_true] = ACTIONS(2736), + [anon_sym_false] = ACTIONS(2736), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2736), + [sym_super] = ACTIONS(2736), + [sym_crate] = ACTIONS(2736), + [sym_metavariable] = ACTIONS(2734), + [sym_raw_string_literal] = ACTIONS(2734), + [sym_float_literal] = ACTIONS(2734), + }, + [738] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(2738), + [sym_identifier] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_macro_rules_BANG] = ACTIONS(2738), + [anon_sym_LPAREN] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2738), + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_LBRACK] = ACTIONS(2738), + [anon_sym_STAR] = ACTIONS(2738), + [anon_sym_u8] = ACTIONS(2740), + [anon_sym_i8] = ACTIONS(2740), + [anon_sym_u16] = ACTIONS(2740), + [anon_sym_i16] = ACTIONS(2740), + [anon_sym_u32] = ACTIONS(2740), + [anon_sym_i32] = ACTIONS(2740), + [anon_sym_u64] = ACTIONS(2740), + [anon_sym_i64] = ACTIONS(2740), + [anon_sym_u128] = ACTIONS(2740), + [anon_sym_i128] = ACTIONS(2740), + [anon_sym_isize] = ACTIONS(2740), + [anon_sym_usize] = ACTIONS(2740), + [anon_sym_f32] = ACTIONS(2740), + [anon_sym_f64] = ACTIONS(2740), + [anon_sym_bool] = ACTIONS(2740), + [anon_sym_str] = ACTIONS(2740), + [anon_sym_char] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(2738), + [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_POUND] = ACTIONS(2738), + [anon_sym_LT] = ACTIONS(2738), + [anon_sym_PIPE] = ACTIONS(2738), + [anon_sym_SQUOTE] = ACTIONS(2740), + [anon_sym_async] = ACTIONS(2740), + [anon_sym_break] = ACTIONS(2740), + [anon_sym_const] = ACTIONS(2740), + [anon_sym_continue] = ACTIONS(2740), + [anon_sym_default] = ACTIONS(2740), + [anon_sym_enum] = ACTIONS(2740), + [anon_sym_fn] = ACTIONS(2740), + [anon_sym_for] = ACTIONS(2740), + [anon_sym_if] = ACTIONS(2740), + [anon_sym_impl] = ACTIONS(2740), + [anon_sym_let] = ACTIONS(2740), + [anon_sym_loop] = ACTIONS(2740), + [anon_sym_match] = ACTIONS(2740), + [anon_sym_mod] = ACTIONS(2740), + [anon_sym_pub] = ACTIONS(2740), + [anon_sym_return] = ACTIONS(2740), + [anon_sym_static] = ACTIONS(2740), + [anon_sym_struct] = ACTIONS(2740), + [anon_sym_trait] = ACTIONS(2740), + [anon_sym_type] = ACTIONS(2740), + [anon_sym_union] = ACTIONS(2740), + [anon_sym_unsafe] = ACTIONS(2740), + [anon_sym_use] = ACTIONS(2740), + [anon_sym_while] = ACTIONS(2740), + [anon_sym_extern] = ACTIONS(2740), + [anon_sym_DOT_DOT] = ACTIONS(2738), + [anon_sym_yield] = ACTIONS(2740), + [anon_sym_move] = ACTIONS(2740), + [anon_sym_try] = ACTIONS(2740), + [sym_integer_literal] = ACTIONS(2738), + [aux_sym_string_literal_token1] = ACTIONS(2738), + [sym_char_literal] = ACTIONS(2738), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2740), + [sym_super] = ACTIONS(2740), + [sym_crate] = ACTIONS(2740), + [sym_metavariable] = ACTIONS(2738), + [sym_raw_string_literal] = ACTIONS(2738), + [sym_float_literal] = ACTIONS(2738), + }, + [739] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), + [ts_builtin_sym_end] = ACTIONS(2742), + [sym_identifier] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_macro_rules_BANG] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_RBRACE] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_u8] = ACTIONS(2744), + [anon_sym_i8] = ACTIONS(2744), + [anon_sym_u16] = ACTIONS(2744), + [anon_sym_i16] = ACTIONS(2744), + [anon_sym_u32] = ACTIONS(2744), + [anon_sym_i32] = ACTIONS(2744), + [anon_sym_u64] = ACTIONS(2744), + [anon_sym_i64] = ACTIONS(2744), + [anon_sym_u128] = ACTIONS(2744), + [anon_sym_i128] = ACTIONS(2744), + [anon_sym_isize] = ACTIONS(2744), + [anon_sym_usize] = ACTIONS(2744), + [anon_sym_f32] = ACTIONS(2744), + [anon_sym_f64] = ACTIONS(2744), + [anon_sym_bool] = ACTIONS(2744), + [anon_sym_str] = ACTIONS(2744), + [anon_sym_char] = ACTIONS(2744), + [anon_sym_DASH] = ACTIONS(2742), + [anon_sym_COLON_COLON] = ACTIONS(2742), + [anon_sym_BANG] = ACTIONS(2742), + [anon_sym_AMP] = ACTIONS(2742), + [anon_sym_POUND] = ACTIONS(2742), + [anon_sym_LT] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2744), + [anon_sym_break] = ACTIONS(2744), + [anon_sym_const] = ACTIONS(2744), + [anon_sym_continue] = ACTIONS(2744), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_enum] = ACTIONS(2744), + [anon_sym_fn] = ACTIONS(2744), + [anon_sym_for] = ACTIONS(2744), + [anon_sym_if] = ACTIONS(2744), + [anon_sym_impl] = ACTIONS(2744), + [anon_sym_let] = ACTIONS(2744), + [anon_sym_loop] = ACTIONS(2744), + [anon_sym_match] = ACTIONS(2744), + [anon_sym_mod] = ACTIONS(2744), + [anon_sym_pub] = ACTIONS(2744), + [anon_sym_return] = ACTIONS(2744), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_struct] = ACTIONS(2744), + [anon_sym_trait] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_union] = ACTIONS(2744), + [anon_sym_unsafe] = ACTIONS(2744), + [anon_sym_use] = ACTIONS(2744), + [anon_sym_while] = ACTIONS(2744), + [anon_sym_extern] = ACTIONS(2744), + [anon_sym_DOT_DOT] = ACTIONS(2742), + [anon_sym_yield] = ACTIONS(2744), + [anon_sym_move] = ACTIONS(2744), + [anon_sym_try] = ACTIONS(2744), + [sym_integer_literal] = ACTIONS(2742), + [aux_sym_string_literal_token1] = ACTIONS(2742), + [sym_char_literal] = ACTIONS(2742), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2744), + [sym_super] = ACTIONS(2744), + [sym_crate] = ACTIONS(2744), + [sym_metavariable] = ACTIONS(2742), + [sym_raw_string_literal] = ACTIONS(2742), + [sym_float_literal] = ACTIONS(2742), + }, + [740] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2746), + [anon_sym_macro_rules_BANG] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(2746), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_u8] = ACTIONS(2748), + [anon_sym_i8] = ACTIONS(2748), + [anon_sym_u16] = ACTIONS(2748), + [anon_sym_i16] = ACTIONS(2748), + [anon_sym_u32] = ACTIONS(2748), + [anon_sym_i32] = ACTIONS(2748), + [anon_sym_u64] = ACTIONS(2748), + [anon_sym_i64] = ACTIONS(2748), + [anon_sym_u128] = ACTIONS(2748), + [anon_sym_i128] = ACTIONS(2748), + [anon_sym_isize] = ACTIONS(2748), + [anon_sym_usize] = ACTIONS(2748), + [anon_sym_f32] = ACTIONS(2748), + [anon_sym_f64] = ACTIONS(2748), + [anon_sym_bool] = ACTIONS(2748), + [anon_sym_str] = ACTIONS(2748), + [anon_sym_char] = ACTIONS(2748), + [anon_sym_DASH] = ACTIONS(2746), + [anon_sym_COLON_COLON] = ACTIONS(2746), + [anon_sym_BANG] = ACTIONS(2746), + [anon_sym_AMP] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym_PIPE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2748), + [anon_sym_async] = ACTIONS(2748), + [anon_sym_break] = ACTIONS(2748), + [anon_sym_const] = ACTIONS(2748), + [anon_sym_continue] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2748), + [anon_sym_enum] = ACTIONS(2748), + [anon_sym_fn] = ACTIONS(2748), + [anon_sym_for] = ACTIONS(2748), + [anon_sym_if] = ACTIONS(2748), + [anon_sym_impl] = ACTIONS(2748), + [anon_sym_let] = ACTIONS(2748), + [anon_sym_loop] = ACTIONS(2748), + [anon_sym_match] = ACTIONS(2748), + [anon_sym_mod] = ACTIONS(2748), + [anon_sym_pub] = ACTIONS(2748), + [anon_sym_return] = ACTIONS(2748), + [anon_sym_static] = ACTIONS(2748), + [anon_sym_struct] = ACTIONS(2748), + [anon_sym_trait] = ACTIONS(2748), + [anon_sym_type] = ACTIONS(2748), + [anon_sym_union] = ACTIONS(2748), + [anon_sym_unsafe] = ACTIONS(2748), + [anon_sym_use] = ACTIONS(2748), + [anon_sym_while] = ACTIONS(2748), + [anon_sym_extern] = ACTIONS(2748), + [anon_sym_DOT_DOT] = ACTIONS(2746), + [anon_sym_yield] = ACTIONS(2748), + [anon_sym_move] = ACTIONS(2748), + [anon_sym_try] = ACTIONS(2748), + [sym_integer_literal] = ACTIONS(2746), + [aux_sym_string_literal_token1] = ACTIONS(2746), + [sym_char_literal] = ACTIONS(2746), + [anon_sym_true] = ACTIONS(2748), + [anon_sym_false] = ACTIONS(2748), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2748), + [sym_super] = ACTIONS(2748), + [sym_crate] = ACTIONS(2748), + [sym_metavariable] = ACTIONS(2746), + [sym_raw_string_literal] = ACTIONS(2746), + [sym_float_literal] = ACTIONS(2746), + }, + [741] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), + [ts_builtin_sym_end] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2752), + [anon_sym_SEMI] = ACTIONS(2750), + [anon_sym_macro_rules_BANG] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2750), + [anon_sym_LBRACE] = ACTIONS(2750), + [anon_sym_RBRACE] = ACTIONS(2750), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_STAR] = ACTIONS(2750), + [anon_sym_u8] = ACTIONS(2752), + [anon_sym_i8] = ACTIONS(2752), + [anon_sym_u16] = ACTIONS(2752), + [anon_sym_i16] = ACTIONS(2752), + [anon_sym_u32] = ACTIONS(2752), + [anon_sym_i32] = ACTIONS(2752), + [anon_sym_u64] = ACTIONS(2752), + [anon_sym_i64] = ACTIONS(2752), + [anon_sym_u128] = ACTIONS(2752), + [anon_sym_i128] = ACTIONS(2752), + [anon_sym_isize] = ACTIONS(2752), + [anon_sym_usize] = ACTIONS(2752), + [anon_sym_f32] = ACTIONS(2752), + [anon_sym_f64] = ACTIONS(2752), + [anon_sym_bool] = ACTIONS(2752), + [anon_sym_str] = ACTIONS(2752), + [anon_sym_char] = ACTIONS(2752), + [anon_sym_DASH] = ACTIONS(2750), + [anon_sym_COLON_COLON] = ACTIONS(2750), + [anon_sym_BANG] = ACTIONS(2750), + [anon_sym_AMP] = ACTIONS(2750), + [anon_sym_POUND] = ACTIONS(2750), + [anon_sym_LT] = ACTIONS(2750), + [anon_sym_PIPE] = ACTIONS(2750), + [anon_sym_SQUOTE] = ACTIONS(2752), + [anon_sym_async] = ACTIONS(2752), + [anon_sym_break] = ACTIONS(2752), + [anon_sym_const] = ACTIONS(2752), + [anon_sym_continue] = ACTIONS(2752), + [anon_sym_default] = ACTIONS(2752), + [anon_sym_enum] = ACTIONS(2752), + [anon_sym_fn] = ACTIONS(2752), + [anon_sym_for] = ACTIONS(2752), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_impl] = ACTIONS(2752), + [anon_sym_let] = ACTIONS(2752), + [anon_sym_loop] = ACTIONS(2752), + [anon_sym_match] = ACTIONS(2752), + [anon_sym_mod] = ACTIONS(2752), + [anon_sym_pub] = ACTIONS(2752), + [anon_sym_return] = ACTIONS(2752), + [anon_sym_static] = ACTIONS(2752), + [anon_sym_struct] = ACTIONS(2752), + [anon_sym_trait] = ACTIONS(2752), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_union] = ACTIONS(2752), + [anon_sym_unsafe] = ACTIONS(2752), + [anon_sym_use] = ACTIONS(2752), + [anon_sym_while] = ACTIONS(2752), + [anon_sym_extern] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(2750), + [anon_sym_yield] = ACTIONS(2752), + [anon_sym_move] = ACTIONS(2752), + [anon_sym_try] = ACTIONS(2752), + [sym_integer_literal] = ACTIONS(2750), + [aux_sym_string_literal_token1] = ACTIONS(2750), + [sym_char_literal] = ACTIONS(2750), + [anon_sym_true] = ACTIONS(2752), + [anon_sym_false] = ACTIONS(2752), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2752), + [sym_super] = ACTIONS(2752), + [sym_crate] = ACTIONS(2752), + [sym_metavariable] = ACTIONS(2750), + [sym_raw_string_literal] = ACTIONS(2750), + [sym_float_literal] = ACTIONS(2750), + }, + [742] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [ts_builtin_sym_end] = ACTIONS(2754), + [sym_identifier] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2754), + [anon_sym_macro_rules_BANG] = ACTIONS(2754), + [anon_sym_LPAREN] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_RBRACE] = ACTIONS(2754), + [anon_sym_LBRACK] = ACTIONS(2754), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_u8] = ACTIONS(2756), + [anon_sym_i8] = ACTIONS(2756), + [anon_sym_u16] = ACTIONS(2756), + [anon_sym_i16] = ACTIONS(2756), + [anon_sym_u32] = ACTIONS(2756), + [anon_sym_i32] = ACTIONS(2756), + [anon_sym_u64] = ACTIONS(2756), + [anon_sym_i64] = ACTIONS(2756), + [anon_sym_u128] = ACTIONS(2756), + [anon_sym_i128] = ACTIONS(2756), + [anon_sym_isize] = ACTIONS(2756), + [anon_sym_usize] = ACTIONS(2756), + [anon_sym_f32] = ACTIONS(2756), + [anon_sym_f64] = ACTIONS(2756), + [anon_sym_bool] = ACTIONS(2756), + [anon_sym_str] = ACTIONS(2756), + [anon_sym_char] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2754), + [anon_sym_COLON_COLON] = ACTIONS(2754), + [anon_sym_BANG] = ACTIONS(2754), + [anon_sym_AMP] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(2754), + [anon_sym_LT] = ACTIONS(2754), + [anon_sym_PIPE] = ACTIONS(2754), + [anon_sym_SQUOTE] = ACTIONS(2756), + [anon_sym_async] = ACTIONS(2756), + [anon_sym_break] = ACTIONS(2756), + [anon_sym_const] = ACTIONS(2756), + [anon_sym_continue] = ACTIONS(2756), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_enum] = ACTIONS(2756), + [anon_sym_fn] = ACTIONS(2756), + [anon_sym_for] = ACTIONS(2756), + [anon_sym_if] = ACTIONS(2756), + [anon_sym_impl] = ACTIONS(2756), + [anon_sym_let] = ACTIONS(2756), + [anon_sym_loop] = ACTIONS(2756), + [anon_sym_match] = ACTIONS(2756), + [anon_sym_mod] = ACTIONS(2756), + [anon_sym_pub] = ACTIONS(2756), + [anon_sym_return] = ACTIONS(2756), + [anon_sym_static] = ACTIONS(2756), + [anon_sym_struct] = ACTIONS(2756), + [anon_sym_trait] = ACTIONS(2756), + [anon_sym_type] = ACTIONS(2756), + [anon_sym_union] = ACTIONS(2756), + [anon_sym_unsafe] = ACTIONS(2756), + [anon_sym_use] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2756), + [anon_sym_extern] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2756), + [anon_sym_move] = ACTIONS(2756), + [anon_sym_try] = ACTIONS(2756), + [sym_integer_literal] = ACTIONS(2754), + [aux_sym_string_literal_token1] = ACTIONS(2754), + [sym_char_literal] = ACTIONS(2754), + [anon_sym_true] = ACTIONS(2756), + [anon_sym_false] = ACTIONS(2756), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2756), + [sym_super] = ACTIONS(2756), + [sym_crate] = ACTIONS(2756), + [sym_metavariable] = ACTIONS(2754), + [sym_raw_string_literal] = ACTIONS(2754), + [sym_float_literal] = ACTIONS(2754), + }, + [743] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), + [ts_builtin_sym_end] = ACTIONS(2758), + [sym_identifier] = ACTIONS(2760), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_macro_rules_BANG] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_LBRACK] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2758), + [anon_sym_u8] = ACTIONS(2760), + [anon_sym_i8] = ACTIONS(2760), + [anon_sym_u16] = ACTIONS(2760), + [anon_sym_i16] = ACTIONS(2760), + [anon_sym_u32] = ACTIONS(2760), + [anon_sym_i32] = ACTIONS(2760), + [anon_sym_u64] = ACTIONS(2760), + [anon_sym_i64] = ACTIONS(2760), + [anon_sym_u128] = ACTIONS(2760), + [anon_sym_i128] = ACTIONS(2760), + [anon_sym_isize] = ACTIONS(2760), + [anon_sym_usize] = ACTIONS(2760), + [anon_sym_f32] = ACTIONS(2760), + [anon_sym_f64] = ACTIONS(2760), + [anon_sym_bool] = ACTIONS(2760), + [anon_sym_str] = ACTIONS(2760), + [anon_sym_char] = ACTIONS(2760), + [anon_sym_DASH] = ACTIONS(2758), + [anon_sym_COLON_COLON] = ACTIONS(2758), + [anon_sym_BANG] = ACTIONS(2758), + [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_LT] = ACTIONS(2758), + [anon_sym_PIPE] = ACTIONS(2758), + [anon_sym_SQUOTE] = ACTIONS(2760), + [anon_sym_async] = ACTIONS(2760), + [anon_sym_break] = ACTIONS(2760), + [anon_sym_const] = ACTIONS(2760), + [anon_sym_continue] = ACTIONS(2760), + [anon_sym_default] = ACTIONS(2760), + [anon_sym_enum] = ACTIONS(2760), + [anon_sym_fn] = ACTIONS(2760), + [anon_sym_for] = ACTIONS(2760), + [anon_sym_if] = ACTIONS(2760), + [anon_sym_impl] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_loop] = ACTIONS(2760), + [anon_sym_match] = ACTIONS(2760), + [anon_sym_mod] = ACTIONS(2760), + [anon_sym_pub] = ACTIONS(2760), + [anon_sym_return] = ACTIONS(2760), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_struct] = ACTIONS(2760), + [anon_sym_trait] = ACTIONS(2760), + [anon_sym_type] = ACTIONS(2760), + [anon_sym_union] = ACTIONS(2760), + [anon_sym_unsafe] = ACTIONS(2760), + [anon_sym_use] = ACTIONS(2760), + [anon_sym_while] = ACTIONS(2760), + [anon_sym_extern] = ACTIONS(2760), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [anon_sym_yield] = ACTIONS(2760), + [anon_sym_move] = ACTIONS(2760), + [anon_sym_try] = ACTIONS(2760), + [sym_integer_literal] = ACTIONS(2758), + [aux_sym_string_literal_token1] = ACTIONS(2758), + [sym_char_literal] = ACTIONS(2758), + [anon_sym_true] = ACTIONS(2760), + [anon_sym_false] = ACTIONS(2760), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2760), + [sym_super] = ACTIONS(2760), + [sym_crate] = ACTIONS(2760), + [sym_metavariable] = ACTIONS(2758), + [sym_raw_string_literal] = ACTIONS(2758), + [sym_float_literal] = ACTIONS(2758), + }, + [744] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2764), + [anon_sym_SEMI] = ACTIONS(2762), + [anon_sym_macro_rules_BANG] = ACTIONS(2762), + [anon_sym_LPAREN] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_RBRACE] = ACTIONS(2762), + [anon_sym_LBRACK] = ACTIONS(2762), + [anon_sym_STAR] = ACTIONS(2762), + [anon_sym_u8] = ACTIONS(2764), + [anon_sym_i8] = ACTIONS(2764), + [anon_sym_u16] = ACTIONS(2764), + [anon_sym_i16] = ACTIONS(2764), + [anon_sym_u32] = ACTIONS(2764), + [anon_sym_i32] = ACTIONS(2764), + [anon_sym_u64] = ACTIONS(2764), + [anon_sym_i64] = ACTIONS(2764), + [anon_sym_u128] = ACTIONS(2764), + [anon_sym_i128] = ACTIONS(2764), + [anon_sym_isize] = ACTIONS(2764), + [anon_sym_usize] = ACTIONS(2764), + [anon_sym_f32] = ACTIONS(2764), + [anon_sym_f64] = ACTIONS(2764), + [anon_sym_bool] = ACTIONS(2764), + [anon_sym_str] = ACTIONS(2764), + [anon_sym_char] = ACTIONS(2764), + [anon_sym_DASH] = ACTIONS(2762), + [anon_sym_COLON_COLON] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(2762), + [anon_sym_AMP] = ACTIONS(2762), + [anon_sym_POUND] = ACTIONS(2762), + [anon_sym_LT] = ACTIONS(2762), + [anon_sym_PIPE] = ACTIONS(2762), + [anon_sym_SQUOTE] = ACTIONS(2764), + [anon_sym_async] = ACTIONS(2764), + [anon_sym_break] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2764), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_enum] = ACTIONS(2764), + [anon_sym_fn] = ACTIONS(2764), + [anon_sym_for] = ACTIONS(2764), + [anon_sym_if] = ACTIONS(2764), + [anon_sym_impl] = ACTIONS(2764), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_loop] = ACTIONS(2764), + [anon_sym_match] = ACTIONS(2764), + [anon_sym_mod] = ACTIONS(2764), + [anon_sym_pub] = ACTIONS(2764), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_struct] = ACTIONS(2764), + [anon_sym_trait] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_unsafe] = ACTIONS(2764), + [anon_sym_use] = ACTIONS(2764), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_extern] = ACTIONS(2764), + [anon_sym_DOT_DOT] = ACTIONS(2762), + [anon_sym_yield] = ACTIONS(2764), + [anon_sym_move] = ACTIONS(2764), + [anon_sym_try] = ACTIONS(2764), + [sym_integer_literal] = ACTIONS(2762), + [aux_sym_string_literal_token1] = ACTIONS(2762), + [sym_char_literal] = ACTIONS(2762), + [anon_sym_true] = ACTIONS(2764), + [anon_sym_false] = ACTIONS(2764), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2764), + [sym_super] = ACTIONS(2764), + [sym_crate] = ACTIONS(2764), + [sym_metavariable] = ACTIONS(2762), + [sym_raw_string_literal] = ACTIONS(2762), + [sym_float_literal] = ACTIONS(2762), + }, + [745] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [ts_builtin_sym_end] = ACTIONS(2766), + [sym_identifier] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_macro_rules_BANG] = ACTIONS(2766), + [anon_sym_LPAREN] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2766), + [anon_sym_STAR] = ACTIONS(2766), + [anon_sym_u8] = ACTIONS(2768), + [anon_sym_i8] = ACTIONS(2768), + [anon_sym_u16] = ACTIONS(2768), + [anon_sym_i16] = ACTIONS(2768), + [anon_sym_u32] = ACTIONS(2768), + [anon_sym_i32] = ACTIONS(2768), + [anon_sym_u64] = ACTIONS(2768), + [anon_sym_i64] = ACTIONS(2768), + [anon_sym_u128] = ACTIONS(2768), + [anon_sym_i128] = ACTIONS(2768), + [anon_sym_isize] = ACTIONS(2768), + [anon_sym_usize] = ACTIONS(2768), + [anon_sym_f32] = ACTIONS(2768), + [anon_sym_f64] = ACTIONS(2768), + [anon_sym_bool] = ACTIONS(2768), + [anon_sym_str] = ACTIONS(2768), + [anon_sym_char] = ACTIONS(2768), + [anon_sym_DASH] = ACTIONS(2766), + [anon_sym_COLON_COLON] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + [anon_sym_POUND] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2766), + [anon_sym_SQUOTE] = ACTIONS(2768), + [anon_sym_async] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2768), + [anon_sym_const] = ACTIONS(2768), + [anon_sym_continue] = ACTIONS(2768), + [anon_sym_default] = ACTIONS(2768), + [anon_sym_enum] = ACTIONS(2768), + [anon_sym_fn] = ACTIONS(2768), + [anon_sym_for] = ACTIONS(2768), + [anon_sym_if] = ACTIONS(2768), + [anon_sym_impl] = ACTIONS(2768), + [anon_sym_let] = ACTIONS(2768), + [anon_sym_loop] = ACTIONS(2768), + [anon_sym_match] = ACTIONS(2768), + [anon_sym_mod] = ACTIONS(2768), + [anon_sym_pub] = ACTIONS(2768), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_struct] = ACTIONS(2768), + [anon_sym_trait] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_union] = ACTIONS(2768), + [anon_sym_unsafe] = ACTIONS(2768), + [anon_sym_use] = ACTIONS(2768), + [anon_sym_while] = ACTIONS(2768), + [anon_sym_extern] = ACTIONS(2768), + [anon_sym_DOT_DOT] = ACTIONS(2766), + [anon_sym_yield] = ACTIONS(2768), + [anon_sym_move] = ACTIONS(2768), + [anon_sym_try] = ACTIONS(2768), + [sym_integer_literal] = ACTIONS(2766), + [aux_sym_string_literal_token1] = ACTIONS(2766), + [sym_char_literal] = ACTIONS(2766), + [anon_sym_true] = ACTIONS(2768), + [anon_sym_false] = ACTIONS(2768), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2768), + [sym_super] = ACTIONS(2768), + [sym_crate] = ACTIONS(2768), + [sym_metavariable] = ACTIONS(2766), + [sym_raw_string_literal] = ACTIONS(2766), + [sym_float_literal] = ACTIONS(2766), + }, + [746] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(2770), + [sym_identifier] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2770), + [anon_sym_macro_rules_BANG] = ACTIONS(2770), + [anon_sym_LPAREN] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2770), + [anon_sym_RBRACE] = ACTIONS(2770), + [anon_sym_LBRACK] = ACTIONS(2770), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_u8] = ACTIONS(2772), + [anon_sym_i8] = ACTIONS(2772), + [anon_sym_u16] = ACTIONS(2772), + [anon_sym_i16] = ACTIONS(2772), + [anon_sym_u32] = ACTIONS(2772), + [anon_sym_i32] = ACTIONS(2772), + [anon_sym_u64] = ACTIONS(2772), + [anon_sym_i64] = ACTIONS(2772), + [anon_sym_u128] = ACTIONS(2772), + [anon_sym_i128] = ACTIONS(2772), + [anon_sym_isize] = ACTIONS(2772), + [anon_sym_usize] = ACTIONS(2772), + [anon_sym_f32] = ACTIONS(2772), + [anon_sym_f64] = ACTIONS(2772), + [anon_sym_bool] = ACTIONS(2772), + [anon_sym_str] = ACTIONS(2772), + [anon_sym_char] = ACTIONS(2772), + [anon_sym_DASH] = ACTIONS(2770), + [anon_sym_COLON_COLON] = ACTIONS(2770), + [anon_sym_BANG] = ACTIONS(2770), + [anon_sym_AMP] = ACTIONS(2770), + [anon_sym_POUND] = ACTIONS(2770), + [anon_sym_LT] = ACTIONS(2770), + [anon_sym_PIPE] = ACTIONS(2770), + [anon_sym_SQUOTE] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_break] = ACTIONS(2772), + [anon_sym_const] = ACTIONS(2772), + [anon_sym_continue] = ACTIONS(2772), + [anon_sym_default] = ACTIONS(2772), + [anon_sym_enum] = ACTIONS(2772), + [anon_sym_fn] = ACTIONS(2772), + [anon_sym_for] = ACTIONS(2772), + [anon_sym_if] = ACTIONS(2772), + [anon_sym_impl] = ACTIONS(2772), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_loop] = ACTIONS(2772), + [anon_sym_match] = ACTIONS(2772), + [anon_sym_mod] = ACTIONS(2772), + [anon_sym_pub] = ACTIONS(2772), + [anon_sym_return] = ACTIONS(2772), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_struct] = ACTIONS(2772), + [anon_sym_trait] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_union] = ACTIONS(2772), + [anon_sym_unsafe] = ACTIONS(2772), + [anon_sym_use] = ACTIONS(2772), + [anon_sym_while] = ACTIONS(2772), + [anon_sym_extern] = ACTIONS(2772), + [anon_sym_DOT_DOT] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2772), + [anon_sym_move] = ACTIONS(2772), + [anon_sym_try] = ACTIONS(2772), + [sym_integer_literal] = ACTIONS(2770), + [aux_sym_string_literal_token1] = ACTIONS(2770), + [sym_char_literal] = ACTIONS(2770), + [anon_sym_true] = ACTIONS(2772), + [anon_sym_false] = ACTIONS(2772), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2772), + [sym_super] = ACTIONS(2772), + [sym_crate] = ACTIONS(2772), + [sym_metavariable] = ACTIONS(2770), + [sym_raw_string_literal] = ACTIONS(2770), + [sym_float_literal] = ACTIONS(2770), + }, + [747] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(2774), + [sym_identifier] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_macro_rules_BANG] = ACTIONS(2774), + [anon_sym_LPAREN] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_LBRACK] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(2774), + [anon_sym_u8] = ACTIONS(2776), + [anon_sym_i8] = ACTIONS(2776), + [anon_sym_u16] = ACTIONS(2776), + [anon_sym_i16] = ACTIONS(2776), + [anon_sym_u32] = ACTIONS(2776), + [anon_sym_i32] = ACTIONS(2776), + [anon_sym_u64] = ACTIONS(2776), + [anon_sym_i64] = ACTIONS(2776), + [anon_sym_u128] = ACTIONS(2776), + [anon_sym_i128] = ACTIONS(2776), + [anon_sym_isize] = ACTIONS(2776), + [anon_sym_usize] = ACTIONS(2776), + [anon_sym_f32] = ACTIONS(2776), + [anon_sym_f64] = ACTIONS(2776), + [anon_sym_bool] = ACTIONS(2776), + [anon_sym_str] = ACTIONS(2776), + [anon_sym_char] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2774), + [anon_sym_COLON_COLON] = ACTIONS(2774), + [anon_sym_BANG] = ACTIONS(2774), + [anon_sym_AMP] = ACTIONS(2774), + [anon_sym_POUND] = ACTIONS(2774), + [anon_sym_LT] = ACTIONS(2774), + [anon_sym_PIPE] = ACTIONS(2774), + [anon_sym_SQUOTE] = ACTIONS(2776), + [anon_sym_async] = ACTIONS(2776), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_const] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2776), + [anon_sym_default] = ACTIONS(2776), + [anon_sym_enum] = ACTIONS(2776), + [anon_sym_fn] = ACTIONS(2776), + [anon_sym_for] = ACTIONS(2776), + [anon_sym_if] = ACTIONS(2776), + [anon_sym_impl] = ACTIONS(2776), + [anon_sym_let] = ACTIONS(2776), + [anon_sym_loop] = ACTIONS(2776), + [anon_sym_match] = ACTIONS(2776), + [anon_sym_mod] = ACTIONS(2776), + [anon_sym_pub] = ACTIONS(2776), + [anon_sym_return] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(2776), + [anon_sym_struct] = ACTIONS(2776), + [anon_sym_trait] = ACTIONS(2776), + [anon_sym_type] = ACTIONS(2776), + [anon_sym_union] = ACTIONS(2776), + [anon_sym_unsafe] = ACTIONS(2776), + [anon_sym_use] = ACTIONS(2776), + [anon_sym_while] = ACTIONS(2776), + [anon_sym_extern] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2774), + [anon_sym_yield] = ACTIONS(2776), + [anon_sym_move] = ACTIONS(2776), + [anon_sym_try] = ACTIONS(2776), + [sym_integer_literal] = ACTIONS(2774), + [aux_sym_string_literal_token1] = ACTIONS(2774), + [sym_char_literal] = ACTIONS(2774), + [anon_sym_true] = ACTIONS(2776), + [anon_sym_false] = ACTIONS(2776), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2776), + [sym_super] = ACTIONS(2776), + [sym_crate] = ACTIONS(2776), + [sym_metavariable] = ACTIONS(2774), + [sym_raw_string_literal] = ACTIONS(2774), + [sym_float_literal] = ACTIONS(2774), + }, + [748] = { + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), + [ts_builtin_sym_end] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2780), + [anon_sym_SEMI] = ACTIONS(2778), + [anon_sym_macro_rules_BANG] = ACTIONS(2778), + [anon_sym_LPAREN] = ACTIONS(2778), + [anon_sym_LBRACE] = ACTIONS(2778), + [anon_sym_RBRACE] = ACTIONS(2778), + [anon_sym_LBRACK] = ACTIONS(2778), + [anon_sym_STAR] = ACTIONS(2778), + [anon_sym_u8] = ACTIONS(2780), + [anon_sym_i8] = ACTIONS(2780), + [anon_sym_u16] = ACTIONS(2780), + [anon_sym_i16] = ACTIONS(2780), + [anon_sym_u32] = ACTIONS(2780), + [anon_sym_i32] = ACTIONS(2780), + [anon_sym_u64] = ACTIONS(2780), + [anon_sym_i64] = ACTIONS(2780), + [anon_sym_u128] = ACTIONS(2780), + [anon_sym_i128] = ACTIONS(2780), + [anon_sym_isize] = ACTIONS(2780), + [anon_sym_usize] = ACTIONS(2780), + [anon_sym_f32] = ACTIONS(2780), + [anon_sym_f64] = ACTIONS(2780), + [anon_sym_bool] = ACTIONS(2780), + [anon_sym_str] = ACTIONS(2780), + [anon_sym_char] = ACTIONS(2780), + [anon_sym_DASH] = ACTIONS(2778), + [anon_sym_COLON_COLON] = ACTIONS(2778), + [anon_sym_BANG] = ACTIONS(2778), + [anon_sym_AMP] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_LT] = ACTIONS(2778), + [anon_sym_PIPE] = ACTIONS(2778), + [anon_sym_SQUOTE] = ACTIONS(2780), + [anon_sym_async] = ACTIONS(2780), + [anon_sym_break] = ACTIONS(2780), + [anon_sym_const] = ACTIONS(2780), + [anon_sym_continue] = ACTIONS(2780), + [anon_sym_default] = ACTIONS(2780), + [anon_sym_enum] = ACTIONS(2780), + [anon_sym_fn] = ACTIONS(2780), + [anon_sym_for] = ACTIONS(2780), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_impl] = ACTIONS(2780), + [anon_sym_let] = ACTIONS(2780), + [anon_sym_loop] = ACTIONS(2780), + [anon_sym_match] = ACTIONS(2780), + [anon_sym_mod] = ACTIONS(2780), + [anon_sym_pub] = ACTIONS(2780), + [anon_sym_return] = ACTIONS(2780), + [anon_sym_static] = ACTIONS(2780), + [anon_sym_struct] = ACTIONS(2780), + [anon_sym_trait] = ACTIONS(2780), + [anon_sym_type] = ACTIONS(2780), + [anon_sym_union] = ACTIONS(2780), + [anon_sym_unsafe] = ACTIONS(2780), + [anon_sym_use] = ACTIONS(2780), + [anon_sym_while] = ACTIONS(2780), + [anon_sym_extern] = ACTIONS(2780), + [anon_sym_DOT_DOT] = ACTIONS(2778), + [anon_sym_yield] = ACTIONS(2780), + [anon_sym_move] = ACTIONS(2780), + [anon_sym_try] = ACTIONS(2780), + [sym_integer_literal] = ACTIONS(2778), + [aux_sym_string_literal_token1] = ACTIONS(2778), + [sym_char_literal] = ACTIONS(2778), + [anon_sym_true] = ACTIONS(2780), + [anon_sym_false] = ACTIONS(2780), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2780), + [sym_super] = ACTIONS(2780), + [sym_crate] = ACTIONS(2780), [sym_metavariable] = ACTIONS(2778), [sym_raw_string_literal] = ACTIONS(2778), [sym_float_literal] = ACTIONS(2778), - [sym_block_comment] = ACTIONS(3), }, - [714] = { + [749] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), [ts_builtin_sym_end] = ACTIONS(2782), [sym_identifier] = ACTIONS(2784), [anon_sym_SEMI] = ACTIONS(2782), @@ -88230,16 +92859,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2784), [sym_super] = ACTIONS(2784), [sym_crate] = ACTIONS(2784), [sym_metavariable] = ACTIONS(2782), [sym_raw_string_literal] = ACTIONS(2782), [sym_float_literal] = ACTIONS(2782), - [sym_block_comment] = ACTIONS(3), }, - [715] = { + [750] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), [ts_builtin_sym_end] = ACTIONS(2786), [sym_identifier] = ACTIONS(2788), [anon_sym_SEMI] = ACTIONS(2786), @@ -88308,16 +92939,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2788), [sym_super] = ACTIONS(2788), [sym_crate] = ACTIONS(2788), [sym_metavariable] = ACTIONS(2786), [sym_raw_string_literal] = ACTIONS(2786), [sym_float_literal] = ACTIONS(2786), - [sym_block_comment] = ACTIONS(3), }, - [716] = { + [751] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), [ts_builtin_sym_end] = ACTIONS(2790), [sym_identifier] = ACTIONS(2792), [anon_sym_SEMI] = ACTIONS(2790), @@ -88386,16 +93019,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2792), [sym_super] = ACTIONS(2792), [sym_crate] = ACTIONS(2792), [sym_metavariable] = ACTIONS(2790), [sym_raw_string_literal] = ACTIONS(2790), [sym_float_literal] = ACTIONS(2790), - [sym_block_comment] = ACTIONS(3), }, - [717] = { + [752] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2794), [sym_identifier] = ACTIONS(2796), [anon_sym_SEMI] = ACTIONS(2794), @@ -88464,16 +93099,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2796), [sym_super] = ACTIONS(2796), [sym_crate] = ACTIONS(2796), [sym_metavariable] = ACTIONS(2794), [sym_raw_string_literal] = ACTIONS(2794), [sym_float_literal] = ACTIONS(2794), - [sym_block_comment] = ACTIONS(3), }, - [718] = { + [753] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2798), [sym_identifier] = ACTIONS(2800), [anon_sym_SEMI] = ACTIONS(2798), @@ -88542,16 +93179,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2800), [sym_super] = ACTIONS(2800), [sym_crate] = ACTIONS(2800), [sym_metavariable] = ACTIONS(2798), [sym_raw_string_literal] = ACTIONS(2798), [sym_float_literal] = ACTIONS(2798), - [sym_block_comment] = ACTIONS(3), }, - [719] = { + [754] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2802), [sym_identifier] = ACTIONS(2804), [anon_sym_SEMI] = ACTIONS(2802), @@ -88620,16 +93259,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2804), [sym_super] = ACTIONS(2804), [sym_crate] = ACTIONS(2804), [sym_metavariable] = ACTIONS(2802), [sym_raw_string_literal] = ACTIONS(2802), [sym_float_literal] = ACTIONS(2802), - [sym_block_comment] = ACTIONS(3), }, - [720] = { + [755] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2806), [sym_identifier] = ACTIONS(2808), [anon_sym_SEMI] = ACTIONS(2806), @@ -88698,16 +93339,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2808), [sym_super] = ACTIONS(2808), [sym_crate] = ACTIONS(2808), [sym_metavariable] = ACTIONS(2806), [sym_raw_string_literal] = ACTIONS(2806), [sym_float_literal] = ACTIONS(2806), - [sym_block_comment] = ACTIONS(3), }, - [721] = { + [756] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2810), [sym_identifier] = ACTIONS(2812), [anon_sym_SEMI] = ACTIONS(2810), @@ -88776,16 +93419,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2812), [sym_super] = ACTIONS(2812), [sym_crate] = ACTIONS(2812), [sym_metavariable] = ACTIONS(2810), [sym_raw_string_literal] = ACTIONS(2810), [sym_float_literal] = ACTIONS(2810), - [sym_block_comment] = ACTIONS(3), }, - [722] = { + [757] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2814), [sym_identifier] = ACTIONS(2816), [anon_sym_SEMI] = ACTIONS(2814), @@ -88854,16 +93499,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2816), [sym_super] = ACTIONS(2816), [sym_crate] = ACTIONS(2816), [sym_metavariable] = ACTIONS(2814), [sym_raw_string_literal] = ACTIONS(2814), [sym_float_literal] = ACTIONS(2814), - [sym_block_comment] = ACTIONS(3), }, - [723] = { + [758] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2818), [sym_identifier] = ACTIONS(2820), [anon_sym_SEMI] = ACTIONS(2818), @@ -88932,16 +93579,98 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2820), [sym_super] = ACTIONS(2820), [sym_crate] = ACTIONS(2820), [sym_metavariable] = ACTIONS(2818), [sym_raw_string_literal] = ACTIONS(2818), [sym_float_literal] = ACTIONS(2818), - [sym_block_comment] = ACTIONS(3), }, - [724] = { + [759] = { + [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_match_pattern] = STATE(3464), + [sym_const_block] = STATE(2864), + [sym_closure_expression] = STATE(3207), + [sym_closure_parameters] = STATE(130), + [sym__pattern] = STATE(2821), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_POUND] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), + }, + [760] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2822), [sym_identifier] = ACTIONS(2824), [anon_sym_SEMI] = ACTIONS(2822), @@ -89010,16 +93739,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2824), [sym_super] = ACTIONS(2824), [sym_crate] = ACTIONS(2824), [sym_metavariable] = ACTIONS(2822), [sym_raw_string_literal] = ACTIONS(2822), [sym_float_literal] = ACTIONS(2822), - [sym_block_comment] = ACTIONS(3), }, - [725] = { + [761] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2826), [sym_identifier] = ACTIONS(2828), [anon_sym_SEMI] = ACTIONS(2826), @@ -89088,16 +93819,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2828), [sym_super] = ACTIONS(2828), [sym_crate] = ACTIONS(2828), [sym_metavariable] = ACTIONS(2826), [sym_raw_string_literal] = ACTIONS(2826), [sym_float_literal] = ACTIONS(2826), - [sym_block_comment] = ACTIONS(3), }, - [726] = { + [762] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2830), [sym_identifier] = ACTIONS(2832), [anon_sym_SEMI] = ACTIONS(2830), @@ -89166,16 +93899,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2832), [sym_super] = ACTIONS(2832), [sym_crate] = ACTIONS(2832), [sym_metavariable] = ACTIONS(2830), [sym_raw_string_literal] = ACTIONS(2830), [sym_float_literal] = ACTIONS(2830), - [sym_block_comment] = ACTIONS(3), }, - [727] = { + [763] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2834), [sym_identifier] = ACTIONS(2836), [anon_sym_SEMI] = ACTIONS(2834), @@ -89244,16 +93979,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2836), [sym_super] = ACTIONS(2836), [sym_crate] = ACTIONS(2836), [sym_metavariable] = ACTIONS(2834), [sym_raw_string_literal] = ACTIONS(2834), [sym_float_literal] = ACTIONS(2834), - [sym_block_comment] = ACTIONS(3), }, - [728] = { + [764] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2838), [sym_identifier] = ACTIONS(2840), [anon_sym_SEMI] = ACTIONS(2838), @@ -89322,94 +94059,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2840), [sym_super] = ACTIONS(2840), [sym_crate] = ACTIONS(2840), [sym_metavariable] = ACTIONS(2838), [sym_raw_string_literal] = ACTIONS(2838), [sym_float_literal] = ACTIONS(2838), - [sym_block_comment] = ACTIONS(3), }, - [729] = { - [sym_attribute_item] = STATE(787), - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_match_pattern] = STATE(3412), - [sym_const_block] = STATE(2675), - [sym_closure_expression] = STATE(3178), - [sym_closure_parameters] = STATE(137), - [sym__pattern] = STATE(2775), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(521), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), - }, - [730] = { + [765] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(2842), [sym_identifier] = ACTIONS(2844), [anon_sym_SEMI] = ACTIONS(2842), @@ -89478,16 +94139,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2844), [sym_super] = ACTIONS(2844), [sym_crate] = ACTIONS(2844), [sym_metavariable] = ACTIONS(2842), [sym_raw_string_literal] = ACTIONS(2842), [sym_float_literal] = ACTIONS(2842), - [sym_block_comment] = ACTIONS(3), }, - [731] = { + [766] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(2846), [sym_identifier] = ACTIONS(2848), [anon_sym_SEMI] = ACTIONS(2846), @@ -89556,16 +94219,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2848), [sym_super] = ACTIONS(2848), [sym_crate] = ACTIONS(2848), [sym_metavariable] = ACTIONS(2846), [sym_raw_string_literal] = ACTIONS(2846), [sym_float_literal] = ACTIONS(2846), - [sym_block_comment] = ACTIONS(3), }, - [732] = { + [767] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(2850), [sym_identifier] = ACTIONS(2852), [anon_sym_SEMI] = ACTIONS(2850), @@ -89634,16 +94299,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2852), [sym_super] = ACTIONS(2852), [sym_crate] = ACTIONS(2852), [sym_metavariable] = ACTIONS(2850), [sym_raw_string_literal] = ACTIONS(2850), [sym_float_literal] = ACTIONS(2850), - [sym_block_comment] = ACTIONS(3), }, - [733] = { + [768] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(2854), [sym_identifier] = ACTIONS(2856), [anon_sym_SEMI] = ACTIONS(2854), @@ -89712,16 +94379,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2856), [sym_super] = ACTIONS(2856), [sym_crate] = ACTIONS(2856), [sym_metavariable] = ACTIONS(2854), [sym_raw_string_literal] = ACTIONS(2854), [sym_float_literal] = ACTIONS(2854), - [sym_block_comment] = ACTIONS(3), }, - [734] = { + [769] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(2858), [sym_identifier] = ACTIONS(2860), [anon_sym_SEMI] = ACTIONS(2858), @@ -89790,16 +94459,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2860), [sym_super] = ACTIONS(2860), [sym_crate] = ACTIONS(2860), [sym_metavariable] = ACTIONS(2858), [sym_raw_string_literal] = ACTIONS(2858), [sym_float_literal] = ACTIONS(2858), - [sym_block_comment] = ACTIONS(3), }, - [735] = { + [770] = { + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), [ts_builtin_sym_end] = ACTIONS(2862), [sym_identifier] = ACTIONS(2864), [anon_sym_SEMI] = ACTIONS(2862), @@ -89868,16 +94539,98 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2864), [sym_super] = ACTIONS(2864), [sym_crate] = ACTIONS(2864), [sym_metavariable] = ACTIONS(2862), [sym_raw_string_literal] = ACTIONS(2862), [sym_float_literal] = ACTIONS(2862), - [sym_block_comment] = ACTIONS(3), }, - [736] = { + [771] = { + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_macro_rules_BANG] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1006), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_COLON_COLON] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1006), + [anon_sym_POUND] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1006), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_fn] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_impl] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_pub] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_trait] = ACTIONS(1008), + [anon_sym_type] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_unsafe] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_extern] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1006), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_move] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [sym_integer_literal] = ACTIONS(1006), + [aux_sym_string_literal_token1] = ACTIONS(1006), + [sym_char_literal] = ACTIONS(1006), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1008), + [sym_super] = ACTIONS(1008), + [sym_crate] = ACTIONS(1008), + [sym_metavariable] = ACTIONS(1006), + [sym_raw_string_literal] = ACTIONS(1006), + [sym_float_literal] = ACTIONS(1006), + }, + [772] = { + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), [ts_builtin_sym_end] = ACTIONS(2866), [sym_identifier] = ACTIONS(2868), [anon_sym_SEMI] = ACTIONS(2866), @@ -89946,16 +94699,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2868), [sym_super] = ACTIONS(2868), [sym_crate] = ACTIONS(2868), [sym_metavariable] = ACTIONS(2866), [sym_raw_string_literal] = ACTIONS(2866), [sym_float_literal] = ACTIONS(2866), - [sym_block_comment] = ACTIONS(3), }, - [737] = { + [773] = { + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), [ts_builtin_sym_end] = ACTIONS(2870), [sym_identifier] = ACTIONS(2872), [anon_sym_SEMI] = ACTIONS(2870), @@ -90024,16 +94779,18 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2872), [sym_super] = ACTIONS(2872), [sym_crate] = ACTIONS(2872), [sym_metavariable] = ACTIONS(2870), [sym_raw_string_literal] = ACTIONS(2870), [sym_float_literal] = ACTIONS(2870), - [sym_block_comment] = ACTIONS(3), }, - [738] = { + [774] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), [ts_builtin_sym_end] = ACTIONS(2874), [sym_identifier] = ACTIONS(2876), [anon_sym_SEMI] = ACTIONS(2874), @@ -90102,1819 +94859,2101 @@ 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), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2876), [sym_super] = ACTIONS(2876), [sym_crate] = ACTIONS(2876), [sym_metavariable] = ACTIONS(2874), [sym_raw_string_literal] = ACTIONS(2874), [sym_float_literal] = ACTIONS(2874), - [sym_block_comment] = ACTIONS(3), }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_macro_rules_BANG] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_u8] = ACTIONS(2880), - [anon_sym_i8] = ACTIONS(2880), - [anon_sym_u16] = ACTIONS(2880), - [anon_sym_i16] = ACTIONS(2880), - [anon_sym_u32] = ACTIONS(2880), - [anon_sym_i32] = ACTIONS(2880), - [anon_sym_u64] = ACTIONS(2880), - [anon_sym_i64] = ACTIONS(2880), - [anon_sym_u128] = ACTIONS(2880), - [anon_sym_i128] = ACTIONS(2880), - [anon_sym_isize] = ACTIONS(2880), - [anon_sym_usize] = ACTIONS(2880), - [anon_sym_f32] = ACTIONS(2880), - [anon_sym_f64] = ACTIONS(2880), - [anon_sym_bool] = ACTIONS(2880), - [anon_sym_str] = ACTIONS(2880), - [anon_sym_char] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2878), - [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_async] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_impl] = ACTIONS(2880), - [anon_sym_let] = ACTIONS(2880), - [anon_sym_loop] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_mod] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_trait] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_DOT_DOT] = ACTIONS(2878), - [anon_sym_yield] = ACTIONS(2880), - [anon_sym_move] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [sym_integer_literal] = ACTIONS(2878), - [aux_sym_string_literal_token1] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2880), - [anon_sym_false] = ACTIONS(2880), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2880), - [sym_super] = ACTIONS(2880), - [sym_crate] = ACTIONS(2880), - [sym_metavariable] = ACTIONS(2878), - [sym_raw_string_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), - [sym_block_comment] = ACTIONS(3), + [775] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(2706), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2639), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(2888), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_macro_rules_BANG] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_u8] = ACTIONS(2884), - [anon_sym_i8] = ACTIONS(2884), - [anon_sym_u16] = ACTIONS(2884), - [anon_sym_i16] = ACTIONS(2884), - [anon_sym_u32] = ACTIONS(2884), - [anon_sym_i32] = ACTIONS(2884), - [anon_sym_u64] = ACTIONS(2884), - [anon_sym_i64] = ACTIONS(2884), - [anon_sym_u128] = ACTIONS(2884), - [anon_sym_i128] = ACTIONS(2884), - [anon_sym_isize] = ACTIONS(2884), - [anon_sym_usize] = ACTIONS(2884), - [anon_sym_f32] = ACTIONS(2884), - [anon_sym_f64] = ACTIONS(2884), - [anon_sym_bool] = ACTIONS(2884), - [anon_sym_str] = ACTIONS(2884), - [anon_sym_char] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2882), - [anon_sym_COLON_COLON] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_POUND] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2882), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_impl] = ACTIONS(2884), - [anon_sym_let] = ACTIONS(2884), - [anon_sym_loop] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_mod] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_trait] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2882), - [anon_sym_yield] = ACTIONS(2884), - [anon_sym_move] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [sym_integer_literal] = ACTIONS(2882), - [aux_sym_string_literal_token1] = ACTIONS(2882), - [sym_char_literal] = ACTIONS(2882), - [anon_sym_true] = ACTIONS(2884), - [anon_sym_false] = ACTIONS(2884), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2884), - [sym_super] = ACTIONS(2884), - [sym_crate] = ACTIONS(2884), - [sym_metavariable] = ACTIONS(2882), - [sym_raw_string_literal] = ACTIONS(2882), - [sym_float_literal] = ACTIONS(2882), - [sym_block_comment] = ACTIONS(3), + [776] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(2684), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2647), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1130), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_macro_rules_BANG] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2886), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_u8] = ACTIONS(2888), - [anon_sym_i8] = ACTIONS(2888), - [anon_sym_u16] = ACTIONS(2888), - [anon_sym_i16] = ACTIONS(2888), - [anon_sym_u32] = ACTIONS(2888), - [anon_sym_i32] = ACTIONS(2888), - [anon_sym_u64] = ACTIONS(2888), - [anon_sym_i64] = ACTIONS(2888), - [anon_sym_u128] = ACTIONS(2888), - [anon_sym_i128] = ACTIONS(2888), - [anon_sym_isize] = ACTIONS(2888), - [anon_sym_usize] = ACTIONS(2888), - [anon_sym_f32] = ACTIONS(2888), - [anon_sym_f64] = ACTIONS(2888), - [anon_sym_bool] = ACTIONS(2888), - [anon_sym_str] = ACTIONS(2888), - [anon_sym_char] = ACTIONS(2888), - [anon_sym_DASH] = ACTIONS(2886), - [anon_sym_COLON_COLON] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_POUND] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2886), - [anon_sym_PIPE] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2888), - [anon_sym_async] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_fn] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_impl] = ACTIONS(2888), - [anon_sym_let] = ACTIONS(2888), - [anon_sym_loop] = ACTIONS(2888), - [anon_sym_match] = ACTIONS(2888), - [anon_sym_mod] = ACTIONS(2888), - [anon_sym_pub] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_trait] = ACTIONS(2888), - [anon_sym_type] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_unsafe] = ACTIONS(2888), - [anon_sym_use] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_extern] = ACTIONS(2888), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_yield] = ACTIONS(2888), - [anon_sym_move] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [sym_integer_literal] = ACTIONS(2886), - [aux_sym_string_literal_token1] = ACTIONS(2886), - [sym_char_literal] = ACTIONS(2886), - [anon_sym_true] = ACTIONS(2888), - [anon_sym_false] = ACTIONS(2888), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2888), - [sym_super] = ACTIONS(2888), - [sym_crate] = ACTIONS(2888), - [sym_metavariable] = ACTIONS(2886), - [sym_raw_string_literal] = ACTIONS(2886), - [sym_float_literal] = ACTIONS(2886), - [sym_block_comment] = ACTIONS(3), + [777] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(3070), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2846), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_macro_rules_BANG] = ACTIONS(2890), - [anon_sym_LPAREN] = ACTIONS(2890), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_u8] = ACTIONS(2892), - [anon_sym_i8] = ACTIONS(2892), - [anon_sym_u16] = ACTIONS(2892), - [anon_sym_i16] = ACTIONS(2892), - [anon_sym_u32] = ACTIONS(2892), - [anon_sym_i32] = ACTIONS(2892), - [anon_sym_u64] = ACTIONS(2892), - [anon_sym_i64] = ACTIONS(2892), - [anon_sym_u128] = ACTIONS(2892), - [anon_sym_i128] = ACTIONS(2892), - [anon_sym_isize] = ACTIONS(2892), - [anon_sym_usize] = ACTIONS(2892), - [anon_sym_f32] = ACTIONS(2892), - [anon_sym_f64] = ACTIONS(2892), - [anon_sym_bool] = ACTIONS(2892), - [anon_sym_str] = ACTIONS(2892), - [anon_sym_char] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2890), + [778] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(3070), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2846), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), [anon_sym_COLON_COLON] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2890), - [anon_sym_POUND] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2892), - [anon_sym_async] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_fn] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_impl] = ACTIONS(2892), - [anon_sym_let] = ACTIONS(2892), - [anon_sym_loop] = ACTIONS(2892), - [anon_sym_match] = ACTIONS(2892), - [anon_sym_mod] = ACTIONS(2892), - [anon_sym_pub] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_trait] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_unsafe] = ACTIONS(2892), - [anon_sym_use] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym_DOT_DOT] = ACTIONS(2890), - [anon_sym_yield] = ACTIONS(2892), - [anon_sym_move] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [sym_integer_literal] = ACTIONS(2890), - [aux_sym_string_literal_token1] = ACTIONS(2890), - [sym_char_literal] = ACTIONS(2890), - [anon_sym_true] = ACTIONS(2892), - [anon_sym_false] = ACTIONS(2892), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2892), - [sym_super] = ACTIONS(2892), - [sym_crate] = ACTIONS(2892), - [sym_metavariable] = ACTIONS(2890), - [sym_raw_string_literal] = ACTIONS(2890), - [sym_float_literal] = ACTIONS(2890), - [sym_block_comment] = ACTIONS(3), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_identifier] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_macro_rules_BANG] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_u8] = ACTIONS(2896), - [anon_sym_i8] = ACTIONS(2896), - [anon_sym_u16] = ACTIONS(2896), - [anon_sym_i16] = ACTIONS(2896), - [anon_sym_u32] = ACTIONS(2896), - [anon_sym_i32] = ACTIONS(2896), - [anon_sym_u64] = ACTIONS(2896), - [anon_sym_i64] = ACTIONS(2896), - [anon_sym_u128] = ACTIONS(2896), - [anon_sym_i128] = ACTIONS(2896), - [anon_sym_isize] = ACTIONS(2896), - [anon_sym_usize] = ACTIONS(2896), - [anon_sym_f32] = ACTIONS(2896), - [anon_sym_f64] = ACTIONS(2896), - [anon_sym_bool] = ACTIONS(2896), - [anon_sym_str] = ACTIONS(2896), - [anon_sym_char] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_POUND] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(2894), - [anon_sym_PIPE] = ACTIONS(2894), - [anon_sym_SQUOTE] = ACTIONS(2896), - [anon_sym_async] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), + [779] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(3070), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2846), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(2894), [anon_sym_default] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_fn] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_impl] = ACTIONS(2896), - [anon_sym_let] = ACTIONS(2896), - [anon_sym_loop] = ACTIONS(2896), - [anon_sym_match] = ACTIONS(2896), - [anon_sym_mod] = ACTIONS(2896), - [anon_sym_pub] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_trait] = ACTIONS(2896), - [anon_sym_type] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(1134), [anon_sym_union] = ACTIONS(2896), - [anon_sym_unsafe] = ACTIONS(2896), - [anon_sym_use] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym_DOT_DOT] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2896), - [anon_sym_move] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2896), - [sym_integer_literal] = ACTIONS(2894), - [aux_sym_string_literal_token1] = ACTIONS(2894), - [sym_char_literal] = ACTIONS(2894), - [anon_sym_true] = ACTIONS(2896), - [anon_sym_false] = ACTIONS(2896), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2896), - [sym_super] = ACTIONS(2896), - [sym_crate] = ACTIONS(2896), - [sym_metavariable] = ACTIONS(2894), - [sym_raw_string_literal] = ACTIONS(2894), - [sym_float_literal] = ACTIONS(2894), - [sym_block_comment] = ACTIONS(3), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [744] = { - [ts_builtin_sym_end] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_macro_rules_BANG] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_u8] = ACTIONS(2900), - [anon_sym_i8] = ACTIONS(2900), - [anon_sym_u16] = ACTIONS(2900), - [anon_sym_i16] = ACTIONS(2900), - [anon_sym_u32] = ACTIONS(2900), - [anon_sym_i32] = ACTIONS(2900), - [anon_sym_u64] = ACTIONS(2900), - [anon_sym_i64] = ACTIONS(2900), - [anon_sym_u128] = ACTIONS(2900), - [anon_sym_i128] = ACTIONS(2900), - [anon_sym_isize] = ACTIONS(2900), - [anon_sym_usize] = ACTIONS(2900), - [anon_sym_f32] = ACTIONS(2900), - [anon_sym_f64] = ACTIONS(2900), - [anon_sym_bool] = ACTIONS(2900), - [anon_sym_str] = ACTIONS(2900), - [anon_sym_char] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2898), - [anon_sym_LT] = ACTIONS(2898), - [anon_sym_PIPE] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(2900), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_fn] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_impl] = ACTIONS(2900), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_loop] = ACTIONS(2900), - [anon_sym_match] = ACTIONS(2900), - [anon_sym_mod] = ACTIONS(2900), - [anon_sym_pub] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_trait] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_unsafe] = ACTIONS(2900), - [anon_sym_use] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym_DOT_DOT] = ACTIONS(2898), - [anon_sym_yield] = ACTIONS(2900), - [anon_sym_move] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [sym_integer_literal] = ACTIONS(2898), - [aux_sym_string_literal_token1] = ACTIONS(2898), - [sym_char_literal] = ACTIONS(2898), - [anon_sym_true] = ACTIONS(2900), - [anon_sym_false] = ACTIONS(2900), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2898), - [sym_raw_string_literal] = ACTIONS(2898), - [sym_float_literal] = ACTIONS(2898), - [sym_block_comment] = ACTIONS(3), + [780] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(3070), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2846), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [745] = { - [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_LBRACE] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_POUND] = ACTIONS(2902), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2902), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2904), - [sym_super] = ACTIONS(2904), - [sym_crate] = ACTIONS(2904), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(2902), - [sym_float_literal] = ACTIONS(2902), - [sym_block_comment] = ACTIONS(3), + [781] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym_closure_expression] = STATE(3070), + [sym_closure_parameters] = STATE(128), + [sym__pattern] = STATE(2846), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1140), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [746] = { - [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_LBRACE] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2906), - [anon_sym_POUND] = ACTIONS(2906), - [anon_sym_LT] = ACTIONS(2906), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2906), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2908), - [sym_super] = ACTIONS(2908), - [sym_crate] = ACTIONS(2908), - [sym_metavariable] = ACTIONS(2906), - [sym_raw_string_literal] = ACTIONS(2906), - [sym_float_literal] = ACTIONS(2906), - [sym_block_comment] = ACTIONS(3), + [782] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(882), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [aux_sym_enum_variant_list_repeat1] = STATE(796), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COMMA] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(2910), + [783] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [aux_sym_enum_variant_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2168), [sym_identifier] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_macro_rules_BANG] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2910), - [anon_sym_POUND] = ACTIONS(2910), - [anon_sym_LT] = ACTIONS(2910), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2910), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2912), - [sym_super] = ACTIONS(2912), - [sym_crate] = ACTIONS(2912), - [sym_metavariable] = ACTIONS(2910), - [sym_raw_string_literal] = ACTIONS(2910), - [sym_float_literal] = ACTIONS(2910), - [sym_block_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [748] = { - [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_LBRACE] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2914), - [anon_sym_POUND] = ACTIONS(2914), - [anon_sym_LT] = ACTIONS(2914), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2914), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2916), - [sym_super] = ACTIONS(2916), - [sym_crate] = ACTIONS(2916), - [sym_metavariable] = ACTIONS(2914), - [sym_raw_string_literal] = ACTIONS(2914), - [sym_float_literal] = ACTIONS(2914), - [sym_block_comment] = ACTIONS(3), + [784] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(784), + [sym_block_comment] = STATE(784), + [aux_sym_enum_variant_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [749] = { - [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_LBRACE] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2918), - [anon_sym_BANG] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2918), + [785] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [aux_sym_enum_variant_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2918), - [anon_sym_PIPE] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), [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_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_DOT_DOT] = ACTIONS(2918), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2920), - [sym_super] = ACTIONS(2920), - [sym_crate] = ACTIONS(2920), - [sym_metavariable] = ACTIONS(2918), - [sym_raw_string_literal] = ACTIONS(2918), - [sym_float_literal] = ACTIONS(2918), - [sym_block_comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [750] = { - [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_LBRACE] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2922), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2922), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2924), - [sym_super] = ACTIONS(2924), + [786] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(786), + [sym_block_comment] = STATE(786), + [aux_sym_enum_variant_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), [sym_crate] = ACTIONS(2924), - [sym_metavariable] = ACTIONS(2922), - [sym_raw_string_literal] = ACTIONS(2922), - [sym_float_literal] = ACTIONS(2922), - [sym_block_comment] = ACTIONS(3), + [sym_metavariable] = ACTIONS(1622), }, - [751] = { - [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_LBRACE] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2926), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2926), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2928), - [sym_super] = ACTIONS(2928), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(2926), - [sym_raw_string_literal] = ACTIONS(2926), - [sym_float_literal] = ACTIONS(2926), - [sym_block_comment] = ACTIONS(3), + [787] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(787), + [sym_block_comment] = STATE(787), + [aux_sym_enum_variant_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [752] = { - [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_LBRACE] = ACTIONS(2930), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2930), - [anon_sym_BANG] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2930), - [anon_sym_POUND] = ACTIONS(2930), - [anon_sym_LT] = ACTIONS(2930), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2930), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2932), - [sym_metavariable] = ACTIONS(2930), - [sym_raw_string_literal] = ACTIONS(2930), - [sym_float_literal] = ACTIONS(2930), - [sym_block_comment] = ACTIONS(3), + [788] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(788), + [sym_block_comment] = STATE(788), + [aux_sym_enum_variant_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [753] = { - [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_LBRACE] = ACTIONS(2934), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2934), - [anon_sym_BANG] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2934), - [anon_sym_POUND] = ACTIONS(2934), - [anon_sym_LT] = ACTIONS(2934), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2934), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2936), - [sym_super] = ACTIONS(2936), - [sym_crate] = ACTIONS(2936), - [sym_metavariable] = ACTIONS(2934), - [sym_raw_string_literal] = ACTIONS(2934), - [sym_float_literal] = ACTIONS(2934), - [sym_block_comment] = ACTIONS(3), + [789] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(909), + [sym__type] = STATE(2859), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(789), + [sym_block_comment] = STATE(789), + [aux_sym_enum_variant_list_repeat1] = STATE(1449), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [754] = { - [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_LBRACE] = ACTIONS(2938), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2938), - [anon_sym_BANG] = ACTIONS(2938), - [anon_sym_AMP] = ACTIONS(2938), - [anon_sym_POUND] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2938), + [790] = { + [sym_parameter] = STATE(2712), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2640), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(790), + [sym_block_comment] = STATE(790), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2938), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2940), - [sym_super] = ACTIONS(2940), - [sym_crate] = ACTIONS(2940), - [sym_metavariable] = ACTIONS(2938), - [sym_raw_string_literal] = ACTIONS(2938), - [sym_float_literal] = ACTIONS(2938), - [sym_block_comment] = ACTIONS(3), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(2940), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2942), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [755] = { - [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_LBRACE] = ACTIONS(2942), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2942), - [anon_sym_BANG] = ACTIONS(2942), - [anon_sym_AMP] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2942), - [anon_sym_LT] = ACTIONS(2942), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2942), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2944), - [sym_super] = ACTIONS(2944), - [sym_crate] = ACTIONS(2944), - [sym_metavariable] = ACTIONS(2942), - [sym_raw_string_literal] = ACTIONS(2942), - [sym_float_literal] = ACTIONS(2942), - [sym_block_comment] = ACTIONS(3), + [791] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2641), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(791), + [sym_block_comment] = STATE(791), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2944), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(2946), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [756] = { - [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_LBRACE] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2946), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2946), - [anon_sym_AMP] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(2946), - [anon_sym_LT] = ACTIONS(2946), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2946), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2948), - [sym_super] = ACTIONS(2948), - [sym_crate] = ACTIONS(2948), - [sym_metavariable] = ACTIONS(2946), - [sym_raw_string_literal] = ACTIONS(2946), - [sym_float_literal] = ACTIONS(2946), - [sym_block_comment] = ACTIONS(3), + [792] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2642), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(792), + [sym_block_comment] = STATE(792), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [757] = { - [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_LBRACE] = ACTIONS(2950), - [anon_sym_RBRACE] = ACTIONS(2950), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2950), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_POUND] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2950), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2952), - [sym_super] = ACTIONS(2952), - [sym_crate] = ACTIONS(2952), - [sym_metavariable] = ACTIONS(2950), - [sym_raw_string_literal] = ACTIONS(2950), - [sym_float_literal] = ACTIONS(2950), - [sym_block_comment] = ACTIONS(3), + [793] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2527), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(793), + [sym_block_comment] = STATE(793), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2948), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [758] = { - [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_LBRACE] = ACTIONS(2954), - [anon_sym_RBRACE] = ACTIONS(2954), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2954), - [anon_sym_BANG] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2954), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2954), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2956), - [sym_super] = ACTIONS(2956), - [sym_crate] = ACTIONS(2956), - [sym_metavariable] = ACTIONS(2954), - [sym_raw_string_literal] = ACTIONS(2954), - [sym_float_literal] = ACTIONS(2954), - [sym_block_comment] = ACTIONS(3), + [794] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2614), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(794), + [sym_block_comment] = STATE(794), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [759] = { - [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_LBRACE] = ACTIONS(2958), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_POUND] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2958), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2960), - [sym_super] = ACTIONS(2960), - [sym_crate] = ACTIONS(2960), - [sym_metavariable] = ACTIONS(2958), - [sym_raw_string_literal] = ACTIONS(2958), - [sym_float_literal] = ACTIONS(2958), - [sym_block_comment] = ACTIONS(3), + [795] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(898), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(795), + [sym_block_comment] = STATE(795), + [aux_sym_enum_variant_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), }, - [760] = { - [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_LBRACE] = ACTIONS(2962), - [anon_sym_RBRACE] = ACTIONS(2962), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_AMP] = ACTIONS(2962), - [anon_sym_POUND] = ACTIONS(2962), - [anon_sym_LT] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2962), + [796] = { + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(2464), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), + [aux_sym_enum_variant_list_repeat1] = STATE(1449), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(2924), + [sym_metavariable] = ACTIONS(1622), + }, + [797] = { + [sym_parameter] = STATE(3063), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2889), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(2940), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2942), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [798] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2956), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [799] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [800] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2960), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [801] = { + [sym_function_modifiers] = STATE(3294), + [sym_const_parameter] = STATE(2818), + [sym_constrained_type_parameter] = STATE(2531), + [sym_optional_type_parameter] = STATE(2818), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2773), + [sym_bracketed_type] = STATE(3299), + [sym_qualified_type] = STATE(3292), + [sym_lifetime] = STATE(2266), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2962), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), [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_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_DOT_DOT] = ACTIONS(2962), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2962), - [sym_raw_string_literal] = ACTIONS(2962), - [sym_float_literal] = ACTIONS(2962), - [sym_block_comment] = ACTIONS(3), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(2966), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(2968), }, - [761] = { - [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_LBRACE] = ACTIONS(2966), - [anon_sym_RBRACE] = ACTIONS(2966), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2966), - [anon_sym_AMP] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2966), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2966), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2968), - [sym_super] = ACTIONS(2968), - [sym_crate] = ACTIONS(2968), - [sym_metavariable] = ACTIONS(2966), - [sym_raw_string_literal] = ACTIONS(2966), - [sym_float_literal] = ACTIONS(2966), - [sym_block_comment] = ACTIONS(3), + [802] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(2970), + [803] = { + [sym_attribute_item] = STATE(844), + [sym_line_comment] = STATE(803), + [sym_block_comment] = STATE(803), + [aux_sym_enum_variant_list_repeat1] = STATE(803), [sym_identifier] = ACTIONS(2972), - [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_macro_rules_BANG] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), [anon_sym_u8] = ACTIONS(2972), [anon_sym_i8] = ACTIONS(2972), [anon_sym_u16] = ACTIONS(2972), @@ -91932,19978 +96971,13954 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2972), [anon_sym_str] = ACTIONS(2972), [anon_sym_char] = ACTIONS(2972), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_COLON_COLON] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), + [anon_sym__] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_COLON_COLON] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(557), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_POUND] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_PIPE] = ACTIONS(557), [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_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_DOT_DOT] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(2972), + [sym_mutable_specifier] = ACTIONS(2972), + [anon_sym_DOT_DOT] = ACTIONS(557), [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), + [sym_integer_literal] = ACTIONS(557), + [aux_sym_string_literal_token1] = ACTIONS(557), + [sym_char_literal] = ACTIONS(557), [anon_sym_true] = ACTIONS(2972), [anon_sym_false] = ACTIONS(2972), - [sym_line_comment] = ACTIONS(3), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_self] = ACTIONS(2972), [sym_super] = ACTIONS(2972), [sym_crate] = ACTIONS(2972), - [sym_metavariable] = ACTIONS(2970), - [sym_raw_string_literal] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), - [sym_block_comment] = ACTIONS(3), - }, - [763] = { - [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_LBRACE] = ACTIONS(2974), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_POUND] = ACTIONS(2974), - [anon_sym_LT] = ACTIONS(2974), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2974), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2976), - [sym_super] = ACTIONS(2976), - [sym_crate] = ACTIONS(2976), - [sym_metavariable] = ACTIONS(2974), - [sym_raw_string_literal] = ACTIONS(2974), - [sym_float_literal] = ACTIONS(2974), - [sym_block_comment] = ACTIONS(3), - }, - [764] = { - [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_LBRACE] = ACTIONS(2978), - [anon_sym_RBRACE] = ACTIONS(2978), - [anon_sym_LBRACK] = 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_COLON_COLON] = ACTIONS(2978), - [anon_sym_BANG] = ACTIONS(2978), - [anon_sym_AMP] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2978), - [anon_sym_LT] = ACTIONS(2978), - [anon_sym_PIPE] = 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_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_DOT_DOT] = ACTIONS(2978), - [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), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2980), - [sym_super] = ACTIONS(2980), - [sym_crate] = ACTIONS(2980), - [sym_metavariable] = ACTIONS(2978), - [sym_raw_string_literal] = ACTIONS(2978), - [sym_float_literal] = ACTIONS(2978), - [sym_block_comment] = ACTIONS(3), - }, - [765] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(2694), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2639), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(2986), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [766] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(2884), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2598), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(3006), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [767] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(3082), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2837), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3008), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [768] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(3082), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2837), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3010), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [769] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(3082), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2837), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3012), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [770] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(3082), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2837), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [771] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym_closure_expression] = STATE(3082), - [sym_closure_parameters] = STATE(134), - [sym__pattern] = STATE(2837), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_move] = ACTIONS(1146), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [772] = { - [sym_attribute_item] = STATE(780), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(876), - [sym__type] = STATE(2644), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(780), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COMMA] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [773] = { - [sym_attribute_item] = STATE(782), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(896), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3030), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [774] = { - [sym_attribute_item] = STATE(782), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(896), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [775] = { - [sym_attribute_item] = STATE(782), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(896), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [776] = { - [sym_attribute_item] = STATE(782), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(896), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [777] = { - [sym_attribute_item] = STATE(782), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(896), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3038), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [778] = { - [sym_attribute_item] = STATE(782), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(896), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3040), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [779] = { - [sym_attribute_item] = STATE(782), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(896), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [780] = { - [sym_attribute_item] = STATE(1432), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(925), - [sym__type] = STATE(2590), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(1432), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [781] = { - [sym_parameter] = STATE(2752), - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2470), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3046), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [782] = { - [sym_attribute_item] = STATE(1432), - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym_visibility_modifier] = STATE(870), - [sym__type] = STATE(2689), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_enum_variant_list_repeat1] = STATE(1432), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(3022), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(3026), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(3028), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [783] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2641), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(1502), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [784] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2502), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3048), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(3050), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [785] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2640), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(3054), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [786] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2600), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(3056), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [787] = { - [sym_attribute_item] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(787), - [sym_identifier] = ACTIONS(3060), - [anon_sym_LPAREN] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(547), - [anon_sym_LBRACK] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(547), - [anon_sym_STAR] = ACTIONS(547), - [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__] = ACTIONS(3060), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_COLON_COLON] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(547), - [anon_sym_POUND] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(547), - [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_for] = ACTIONS(3060), - [anon_sym_if] = ACTIONS(3060), - [anon_sym_loop] = ACTIONS(3060), - [anon_sym_match] = ACTIONS(3060), - [anon_sym_return] = ACTIONS(3060), - [anon_sym_static] = ACTIONS(3060), - [anon_sym_union] = ACTIONS(3060), - [anon_sym_unsafe] = ACTIONS(3060), - [anon_sym_while] = ACTIONS(3060), - [anon_sym_ref] = ACTIONS(3060), - [sym_mutable_specifier] = ACTIONS(3060), - [anon_sym_DOT_DOT] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(3060), - [anon_sym_move] = ACTIONS(3060), - [anon_sym_try] = ACTIONS(3060), - [sym_integer_literal] = ACTIONS(547), - [aux_sym_string_literal_token1] = ACTIONS(547), - [sym_char_literal] = ACTIONS(547), - [anon_sym_true] = ACTIONS(3060), - [anon_sym_false] = ACTIONS(3060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3060), - [sym_super] = ACTIONS(3060), - [sym_crate] = ACTIONS(3060), - [sym_metavariable] = ACTIONS(547), - [sym_raw_string_literal] = ACTIONS(547), - [sym_float_literal] = ACTIONS(547), - [sym_block_comment] = ACTIONS(3), - }, - [788] = { - [sym_function_modifiers] = STATE(3276), - [sym_const_parameter] = STATE(2915), - [sym_constrained_type_parameter] = STATE(2447), - [sym_optional_type_parameter] = STATE(2915), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2739), - [sym_bracketed_type] = STATE(3279), - [sym_qualified_type] = STATE(3274), - [sym_lifetime] = STATE(2289), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3062), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3064), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(3068), - [sym_block_comment] = ACTIONS(3), - }, - [789] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(3070), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [790] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(3072), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [791] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [792] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [793] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(3078), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [794] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(3080), - [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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [795] = { - [sym_parameter] = STATE(3033), - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2839), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(3044), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3046), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [796] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [797] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [798] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2669), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [799] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2064), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [800] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2954), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [801] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3192), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), - }, - [802] = { - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_const_block] = STATE(2675), - [sym__pattern] = STATE(2777), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), - }, - [803] = { - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_const_block] = STATE(2675), - [sym__pattern] = STATE(2784), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [sym_metavariable] = ACTIONS(557), + [sym_raw_string_literal] = ACTIONS(557), + [sym_float_literal] = ACTIONS(557), }, [804] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2393), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(804), + [sym_block_comment] = STATE(804), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [805] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2048), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2976), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [806] = { - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_const_block] = STATE(2675), - [sym__pattern] = STATE(2730), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(3086), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_RPAREN] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [807] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2608), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(807), + [sym_block_comment] = STATE(807), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2980), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [808] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2348), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2598), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(808), + [sym_block_comment] = STATE(808), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2982), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [809] = { - [sym_function_modifiers] = STATE(3276), - [sym_higher_ranked_trait_bound] = STATE(2157), - [sym_removed_trait_bound] = STATE(2157), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2149), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2153), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2414), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(809), + [sym_block_comment] = STATE(809), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(2984), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [810] = { - [sym_function_modifiers] = STATE(3276), - [sym_higher_ranked_trait_bound] = STATE(2157), - [sym_removed_trait_bound] = STATE(2157), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2149), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2146), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2992), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [811] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2022), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_higher_ranked_trait_bound] = STATE(2185), + [sym_removed_trait_bound] = STATE(2185), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2182), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2183), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(2986), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [812] = { - [sym_function_modifiers] = STATE(3276), - [sym_higher_ranked_trait_bound] = STATE(2157), - [sym_removed_trait_bound] = STATE(2157), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2155), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2153), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_const_block] = STATE(2864), + [sym__pattern] = STATE(2781), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, [813] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2643), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3092), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2921), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(813), + [sym_block_comment] = STATE(813), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [814] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2713), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2990), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(814), + [sym_block_comment] = STATE(814), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [815] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2368), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_const_block] = STATE(2864), + [sym__pattern] = STATE(2784), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(815), + [sym_block_comment] = STATE(815), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(2990), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, [816] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2957), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2598), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2992), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [817] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2041), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2422), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [818] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2963), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2998), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [819] = { - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_const_block] = STATE(2675), - [sym__pattern] = STATE(2731), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_higher_ranked_trait_bound] = STATE(2150), + [sym_removed_trait_bound] = STATE(2150), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2149), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2148), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(2986), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [820] = { - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_const_block] = STATE(2675), - [sym__pattern] = STATE(2802), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3084), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [821] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3190), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_higher_ranked_trait_bound] = STATE(2185), + [sym_removed_trait_bound] = STATE(2185), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2182), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2180), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(2986), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [822] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2946), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2046), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(822), + [sym_block_comment] = STATE(822), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [823] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2643), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3096), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3023), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(823), + [sym_block_comment] = STATE(823), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [824] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2039), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_const_block] = STATE(2864), + [sym__pattern] = STATE(2726), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(824), + [sym_block_comment] = STATE(824), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, [825] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3003), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2386), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(825), + [sym_block_comment] = STATE(825), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(2994), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [826] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2827), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3216), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(826), + [sym_block_comment] = STATE(826), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [827] = { - [sym_function_modifiers] = STATE(3276), - [sym_higher_ranked_trait_bound] = STATE(2126), - [sym_removed_trait_bound] = STATE(2126), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2125), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(2124), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(3088), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(3090), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_higher_ranked_trait_bound] = STATE(2185), + [sym_removed_trait_bound] = STATE(2185), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2184), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(2183), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(2986), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [828] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2405), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(3098), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3094), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(828), + [sym_block_comment] = STATE(828), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [829] = { - [sym_bracketed_type] = STATE(3377), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3378), - [sym_macro_invocation] = STATE(2675), - [sym_scoped_identifier] = STATE(2120), - [sym_scoped_type_identifier] = STATE(2762), - [sym_const_block] = STATE(2675), - [sym__pattern] = STATE(2737), - [sym_tuple_pattern] = STATE(2675), - [sym_slice_pattern] = STATE(2675), - [sym_tuple_struct_pattern] = STATE(2675), - [sym_struct_pattern] = STATE(2675), - [sym_remaining_field_pattern] = STATE(2675), - [sym_mut_pattern] = STATE(2675), - [sym_range_pattern] = STATE(2675), - [sym_ref_pattern] = STATE(2675), - [sym_captured_pattern] = STATE(2675), - [sym_reference_pattern] = STATE(2675), - [sym_or_pattern] = STATE(2675), - [sym__literal_pattern] = STATE(2268), - [sym_negative_literal] = STATE(2258), - [sym_string_literal] = STATE(2258), - [sym_boolean_literal] = STATE(2258), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_u8] = ACTIONS(1656), - [anon_sym_i8] = ACTIONS(1656), - [anon_sym_u16] = ACTIONS(1656), - [anon_sym_i16] = ACTIONS(1656), - [anon_sym_u32] = ACTIONS(1656), - [anon_sym_i32] = ACTIONS(1656), - [anon_sym_u64] = ACTIONS(1656), - [anon_sym_i64] = ACTIONS(1656), - [anon_sym_u128] = ACTIONS(1656), - [anon_sym_i128] = ACTIONS(1656), - [anon_sym_isize] = ACTIONS(1656), - [anon_sym_usize] = ACTIONS(1656), - [anon_sym_f32] = ACTIONS(1656), - [anon_sym_f64] = ACTIONS(1656), - [anon_sym_bool] = ACTIONS(1656), - [anon_sym_str] = ACTIONS(1656), - [anon_sym_char] = ACTIONS(1656), - [anon_sym__] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_union] = ACTIONS(1668), - [anon_sym_ref] = ACTIONS(1672), - [sym_mutable_specifier] = ACTIONS(1674), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1682), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2080), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(829), + [sym_block_comment] = STATE(829), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [830] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2973), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2055), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [831] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2965), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(3189), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(831), + [sym_block_comment] = STATE(831), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [832] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(3100), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2071), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [833] = { - [sym_bracketed_type] = STATE(3204), - [sym_generic_type] = STATE(3241), - [sym_generic_type_with_turbofish] = STATE(3207), - [sym_macro_invocation] = STATE(2055), - [sym_scoped_identifier] = STATE(1937), - [sym_scoped_type_identifier] = STATE(2755), - [sym_const_block] = STATE(2055), - [sym__pattern] = STATE(3072), - [sym_tuple_pattern] = STATE(2055), - [sym_slice_pattern] = STATE(2055), - [sym_tuple_struct_pattern] = STATE(2055), - [sym_struct_pattern] = STATE(2055), - [sym_remaining_field_pattern] = STATE(2055), - [sym_mut_pattern] = STATE(2055), - [sym_range_pattern] = STATE(2055), - [sym_ref_pattern] = STATE(2055), - [sym_captured_pattern] = STATE(2055), - [sym_reference_pattern] = STATE(2055), - [sym_or_pattern] = STATE(2055), - [sym__literal_pattern] = STATE(1978), - [sym_negative_literal] = STATE(1979), - [sym_string_literal] = STATE(1979), - [sym_boolean_literal] = STATE(1979), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = 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__] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_COLON_COLON] = ACTIONS(2992), - [anon_sym_AMP] = ACTIONS(2994), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_const] = ACTIONS(2996), - [anon_sym_default] = ACTIONS(2998), - [anon_sym_union] = ACTIONS(2998), - [anon_sym_ref] = ACTIONS(1056), - [sym_mutable_specifier] = ACTIONS(1142), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [sym_integer_literal] = ACTIONS(1066), - [aux_sym_string_literal_token1] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1066), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3000), - [sym_super] = ACTIONS(3000), - [sym_crate] = ACTIONS(3000), - [sym_metavariable] = ACTIONS(3002), - [sym_raw_string_literal] = ACTIONS(1066), - [sym_float_literal] = ACTIONS(1066), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2392), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [834] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(3098), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(3104), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2758), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [835] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(3106), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2063), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [836] = { - [sym_identifier] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_RBRACK] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_u8] = ACTIONS(2111), - [anon_sym_i8] = ACTIONS(2111), - [anon_sym_u16] = ACTIONS(2111), - [anon_sym_i16] = ACTIONS(2111), - [anon_sym_u32] = ACTIONS(2111), - [anon_sym_i32] = ACTIONS(2111), - [anon_sym_u64] = ACTIONS(2111), - [anon_sym_i64] = ACTIONS(2111), - [anon_sym_u128] = ACTIONS(2111), - [anon_sym_i128] = ACTIONS(2111), - [anon_sym_isize] = ACTIONS(2111), - [anon_sym_usize] = ACTIONS(2111), - [anon_sym_f32] = ACTIONS(2111), - [anon_sym_f64] = ACTIONS(2111), - [anon_sym_bool] = ACTIONS(2111), - [anon_sym_str] = ACTIONS(2111), - [anon_sym_char] = ACTIONS(2111), - [anon_sym__] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_COLON_COLON] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_loop] = ACTIONS(2111), - [anon_sym_match] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_union] = ACTIONS(2111), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_ref] = ACTIONS(2111), - [sym_mutable_specifier] = ACTIONS(2111), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_move] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [sym_integer_literal] = ACTIONS(2109), - [aux_sym_string_literal_token1] = ACTIONS(2109), - [sym_char_literal] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2111), - [anon_sym_false] = ACTIONS(2111), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(2109), - [sym_raw_string_literal] = ACTIONS(2109), - [sym_float_literal] = ACTIONS(2109), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2988), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(836), + [sym_block_comment] = STATE(836), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [837] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(3110), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2052), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(837), + [sym_block_comment] = STATE(837), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(2996), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [838] = { - [sym_function_modifiers] = STATE(3205), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1263), - [sym_bracketed_type] = STATE(3362), - [sym_lifetime] = STATE(3291), - [sym_array_type] = STATE(1415), - [sym_for_lifetimes] = STATE(1665), - [sym_function_type] = STATE(1415), - [sym_tuple_type] = STATE(1415), - [sym_unit_type] = STATE(1415), - [sym_generic_type] = STATE(1065), - [sym_generic_type_with_turbofish] = STATE(3363), - [sym_bounded_type] = STATE(1415), - [sym_reference_type] = STATE(1415), - [sym_pointer_type] = STATE(1415), - [sym_empty_type] = STATE(1415), - [sym_abstract_type] = STATE(1415), - [sym_dynamic_type] = STATE(1415), - [sym_macro_invocation] = STATE(1415), - [sym_scoped_identifier] = STATE(3185), - [sym_scoped_type_identifier] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_u8] = ACTIONS(3122), - [anon_sym_i8] = ACTIONS(3122), - [anon_sym_u16] = ACTIONS(3122), - [anon_sym_i16] = ACTIONS(3122), - [anon_sym_u32] = ACTIONS(3122), - [anon_sym_i32] = ACTIONS(3122), - [anon_sym_u64] = ACTIONS(3122), - [anon_sym_i64] = ACTIONS(3122), - [anon_sym_u128] = ACTIONS(3122), - [anon_sym_i128] = ACTIONS(3122), - [anon_sym_isize] = ACTIONS(3122), - [anon_sym_usize] = ACTIONS(3122), - [anon_sym_f32] = ACTIONS(3122), - [anon_sym_f64] = ACTIONS(3122), - [anon_sym_bool] = ACTIONS(3122), - [anon_sym_str] = ACTIONS(3122), - [anon_sym_char] = ACTIONS(3122), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_fn] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(3138), - [sym_mutable_specifier] = ACTIONS(3140), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_crate] = ACTIONS(3142), - [sym_metavariable] = ACTIONS(3144), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_const_block] = STATE(2864), + [sym__pattern] = STATE(2701), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, [839] = { - [sym_function_modifiers] = STATE(3335), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1652), - [sym_bracketed_type] = STATE(3387), - [sym_lifetime] = STATE(3445), - [sym_array_type] = STATE(1588), - [sym_for_lifetimes] = STATE(1667), - [sym_function_type] = STATE(1588), - [sym_tuple_type] = STATE(1588), - [sym_unit_type] = STATE(1588), - [sym_generic_type] = STATE(1529), - [sym_generic_type_with_turbofish] = STATE(3388), - [sym_bounded_type] = STATE(1588), - [sym_reference_type] = STATE(1588), - [sym_pointer_type] = STATE(1588), - [sym_empty_type] = STATE(1588), - [sym_abstract_type] = STATE(1588), - [sym_dynamic_type] = STATE(1588), - [sym_macro_invocation] = STATE(1588), - [sym_scoped_identifier] = STATE(3039), - [sym_scoped_type_identifier] = STATE(1472), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(3168), - [anon_sym_union] = ACTIONS(3170), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(3172), - [sym_mutable_specifier] = ACTIONS(3174), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_const_block] = STATE(2864), + [sym__pattern] = STATE(2769), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), }, [840] = { - [sym_function_modifiers] = STATE(3205), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(3362), - [sym_lifetime] = STATE(838), - [sym_array_type] = STATE(1415), - [sym_for_lifetimes] = STATE(1665), - [sym_function_type] = STATE(1415), - [sym_tuple_type] = STATE(1415), - [sym_unit_type] = STATE(1415), - [sym_generic_type] = STATE(1065), - [sym_generic_type_with_turbofish] = STATE(3363), - [sym_bounded_type] = STATE(1415), - [sym_reference_type] = STATE(1415), - [sym_pointer_type] = STATE(1415), - [sym_empty_type] = STATE(1415), - [sym_abstract_type] = STATE(1415), - [sym_dynamic_type] = STATE(1415), - [sym_macro_invocation] = STATE(1415), - [sym_scoped_identifier] = STATE(3185), - [sym_scoped_type_identifier] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_u8] = ACTIONS(3122), - [anon_sym_i8] = ACTIONS(3122), - [anon_sym_u16] = ACTIONS(3122), - [anon_sym_i16] = ACTIONS(3122), - [anon_sym_u32] = ACTIONS(3122), - [anon_sym_i32] = ACTIONS(3122), - [anon_sym_u64] = ACTIONS(3122), - [anon_sym_i64] = ACTIONS(3122), - [anon_sym_u128] = ACTIONS(3122), - [anon_sym_i128] = ACTIONS(3122), - [anon_sym_isize] = ACTIONS(3122), - [anon_sym_usize] = ACTIONS(3122), - [anon_sym_f32] = ACTIONS(3122), - [anon_sym_f64] = ACTIONS(3122), - [anon_sym_bool] = ACTIONS(3122), - [anon_sym_str] = ACTIONS(3122), - [anon_sym_char] = ACTIONS(3122), - [anon_sym_COLON_COLON] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(3130), - [anon_sym_fn] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(3134), - [anon_sym_union] = ACTIONS(3136), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(3138), - [sym_mutable_specifier] = ACTIONS(3180), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_crate] = ACTIONS(3142), - [sym_metavariable] = ACTIONS(3144), - [sym_block_comment] = ACTIONS(3), - }, - [841] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1948), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(3182), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [842] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2794), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), - }, - [843] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2794), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_bracketed_type] = STATE(3418), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3419), + [sym_macro_invocation] = STATE(2864), + [sym_scoped_identifier] = STATE(2129), + [sym_scoped_type_identifier] = STATE(2715), + [sym_const_block] = STATE(2864), + [sym__pattern] = STATE(2698), + [sym_tuple_pattern] = STATE(2864), + [sym_slice_pattern] = STATE(2864), + [sym_tuple_struct_pattern] = STATE(2864), + [sym_struct_pattern] = STATE(2864), + [sym_remaining_field_pattern] = STATE(2864), + [sym_mut_pattern] = STATE(2864), + [sym_range_pattern] = STATE(2864), + [sym_ref_pattern] = STATE(2864), + [sym_captured_pattern] = STATE(2864), + [sym_reference_pattern] = STATE(2864), + [sym_or_pattern] = STATE(2864), + [sym__literal_pattern] = STATE(2312), + [sym_negative_literal] = STATE(2306), + [sym_string_literal] = STATE(2306), + [sym_boolean_literal] = STATE(2306), + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [sym_identifier] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACK] = 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__] = ACTIONS(1550), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1554), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1560), + [anon_sym_union] = ACTIONS(1560), + [anon_sym_ref] = ACTIONS(1564), + [sym_mutable_specifier] = ACTIONS(1566), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), + }, + [841] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2514), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [842] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2986), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), + }, + [843] = { + [sym_bracketed_type] = STATE(3245), + [sym_generic_type] = STATE(3238), + [sym_generic_type_with_turbofish] = STATE(3248), + [sym_macro_invocation] = STATE(2086), + [sym_scoped_identifier] = STATE(1962), + [sym_scoped_type_identifier] = STATE(2707), + [sym_const_block] = STATE(2086), + [sym__pattern] = STATE(2785), + [sym_tuple_pattern] = STATE(2086), + [sym_slice_pattern] = STATE(2086), + [sym_tuple_struct_pattern] = STATE(2086), + [sym_struct_pattern] = STATE(2086), + [sym_remaining_field_pattern] = STATE(2086), + [sym_mut_pattern] = STATE(2086), + [sym_range_pattern] = STATE(2086), + [sym_ref_pattern] = STATE(2086), + [sym_captured_pattern] = STATE(2086), + [sym_reference_pattern] = STATE(2086), + [sym_or_pattern] = STATE(2086), + [sym__literal_pattern] = STATE(1997), + [sym_negative_literal] = STATE(2012), + [sym_string_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [sym_identifier] = ACTIONS(2878), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym__] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_COLON_COLON] = ACTIONS(2890), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2896), + [anon_sym_union] = ACTIONS(2896), + [anon_sym_ref] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1136), + [anon_sym_DOT_DOT] = ACTIONS(1138), + [sym_integer_literal] = ACTIONS(1068), + [aux_sym_string_literal_token1] = ACTIONS(1070), + [sym_char_literal] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2900), + [sym_raw_string_literal] = ACTIONS(1068), + [sym_float_literal] = ACTIONS(1068), }, [844] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2794), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [sym_identifier] = ACTIONS(2998), + [anon_sym_LPAREN] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3000), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_RBRACK] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3000), + [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__] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_COMMA] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3000), + [anon_sym_BANG] = ACTIONS(3000), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_POUND] = ACTIONS(3000), + [anon_sym_LT] = ACTIONS(3000), + [anon_sym_PIPE] = ACTIONS(3000), + [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_for] = ACTIONS(2998), + [anon_sym_if] = ACTIONS(2998), + [anon_sym_loop] = ACTIONS(2998), + [anon_sym_match] = ACTIONS(2998), + [anon_sym_return] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_union] = ACTIONS(2998), + [anon_sym_unsafe] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(2998), + [anon_sym_ref] = ACTIONS(2998), + [sym_mutable_specifier] = ACTIONS(2998), + [anon_sym_DOT_DOT] = ACTIONS(3000), + [anon_sym_yield] = ACTIONS(2998), + [anon_sym_move] = ACTIONS(2998), + [anon_sym_try] = ACTIONS(2998), + [sym_integer_literal] = ACTIONS(3000), + [aux_sym_string_literal_token1] = ACTIONS(3000), + [sym_char_literal] = ACTIONS(3000), + [anon_sym_true] = ACTIONS(2998), + [anon_sym_false] = ACTIONS(2998), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2998), + [sym_super] = ACTIONS(2998), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(3000), + [sym_raw_string_literal] = ACTIONS(3000), + [sym_float_literal] = ACTIONS(3000), }, [845] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2794), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(3004), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3006), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [846] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2562), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(3008), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [847] = { - [sym_function_modifiers] = STATE(3276), - [sym_type_parameters] = STATE(864), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(2254), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(2080), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1264), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3016), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [sym_mutable_specifier] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), }, [848] = { - [sym_function_modifiers] = STATE(3276), - [sym_type_parameters] = STATE(932), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(2286), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(2070), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [849] = { - [sym_function_modifiers] = STATE(3276), - [sym_type_parameters] = STATE(913), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(2314), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(2119), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1646), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_PLUS] = ACTIONS(3052), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [sym_mutable_specifier] = ACTIONS(3074), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), }, [850] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2739), - [sym_bracketed_type] = STATE(3279), - [sym_qualified_type] = STATE(3274), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [sym_identifier] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_RBRACK] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2142), + [anon_sym_u8] = ACTIONS(2144), + [anon_sym_i8] = ACTIONS(2144), + [anon_sym_u16] = ACTIONS(2144), + [anon_sym_i16] = ACTIONS(2144), + [anon_sym_u32] = ACTIONS(2144), + [anon_sym_i32] = ACTIONS(2144), + [anon_sym_u64] = ACTIONS(2144), + [anon_sym_i64] = ACTIONS(2144), + [anon_sym_u128] = ACTIONS(2144), + [anon_sym_i128] = ACTIONS(2144), + [anon_sym_isize] = ACTIONS(2144), + [anon_sym_usize] = ACTIONS(2144), + [anon_sym_f32] = ACTIONS(2144), + [anon_sym_f64] = ACTIONS(2144), + [anon_sym_bool] = ACTIONS(2144), + [anon_sym_str] = ACTIONS(2144), + [anon_sym_char] = ACTIONS(2144), + [anon_sym__] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2142), + [anon_sym_COLON_COLON] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_POUND] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2144), + [anon_sym_async] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_default] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_static] = ACTIONS(2144), + [anon_sym_union] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_ref] = ACTIONS(2144), + [sym_mutable_specifier] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2144), + [anon_sym_move] = ACTIONS(2144), + [anon_sym_try] = ACTIONS(2144), + [sym_integer_literal] = ACTIONS(2142), + [aux_sym_string_literal_token1] = ACTIONS(2142), + [sym_char_literal] = ACTIONS(2142), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = ACTIONS(2144), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(2144), + [sym_super] = ACTIONS(2144), + [sym_crate] = ACTIONS(2144), + [sym_metavariable] = ACTIONS(2142), + [sym_raw_string_literal] = ACTIONS(2142), + [sym_float_literal] = ACTIONS(2142), }, [851] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2794), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2492), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [852] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2794), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1395), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(847), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [sym_mutable_specifier] = ACTIONS(3082), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), }, [853] = { - [sym_function_modifiers] = STATE(3276), - [sym_type_parameters] = STATE(989), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2252), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(2265), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(2122), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_type_parameters] = STATE(1003), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2307), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2098), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3084), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3086), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [854] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2585), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [855] = { - [sym_function_modifiers] = STATE(3335), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(1712), - [sym_bracketed_type] = STATE(3387), - [sym_lifetime] = STATE(839), - [sym_array_type] = STATE(1588), - [sym_for_lifetimes] = STATE(1667), - [sym_function_type] = STATE(1588), - [sym_tuple_type] = STATE(1588), - [sym_unit_type] = STATE(1588), - [sym_generic_type] = STATE(1529), - [sym_generic_type_with_turbofish] = STATE(3388), - [sym_bounded_type] = STATE(1588), - [sym_reference_type] = STATE(1588), - [sym_pointer_type] = STATE(1588), - [sym_empty_type] = STATE(1588), - [sym_abstract_type] = STATE(1588), - [sym_dynamic_type] = STATE(1588), - [sym_macro_invocation] = STATE(1588), - [sym_scoped_identifier] = STATE(3039), - [sym_scoped_type_identifier] = STATE(1472), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_u8] = ACTIONS(3156), - [anon_sym_i8] = ACTIONS(3156), - [anon_sym_u16] = ACTIONS(3156), - [anon_sym_i16] = ACTIONS(3156), - [anon_sym_u32] = ACTIONS(3156), - [anon_sym_i32] = ACTIONS(3156), - [anon_sym_u64] = ACTIONS(3156), - [anon_sym_i64] = ACTIONS(3156), - [anon_sym_u128] = ACTIONS(3156), - [anon_sym_i128] = ACTIONS(3156), - [anon_sym_isize] = ACTIONS(3156), - [anon_sym_usize] = ACTIONS(3156), - [anon_sym_f32] = ACTIONS(3156), - [anon_sym_f64] = ACTIONS(3156), - [anon_sym_bool] = ACTIONS(3156), - [anon_sym_str] = ACTIONS(3156), - [anon_sym_char] = ACTIONS(3156), - [anon_sym_COLON_COLON] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_AMP] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_fn] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(3168), - [anon_sym_union] = ACTIONS(3170), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(3172), - [sym_mutable_specifier] = ACTIONS(3218), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_crate] = ACTIONS(3176), - [sym_metavariable] = ACTIONS(3178), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(848), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [856] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(3020), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(834), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_mutable_specifier] = ACTIONS(3220), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2773), + [sym_bracketed_type] = STATE(3299), + [sym_qualified_type] = STATE(3292), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, [857] = { - [sym_function_modifiers] = STATE(3276), - [sym_extern_modifier] = STATE(2180), - [sym__type] = STATE(2577), - [sym_bracketed_type] = STATE(3279), - [sym_lifetime] = STATE(3273), - [sym_array_type] = STATE(1962), - [sym_for_lifetimes] = STATE(1704), - [sym_function_type] = STATE(1962), - [sym_tuple_type] = STATE(1962), - [sym_unit_type] = STATE(1962), - [sym_generic_type] = STATE(1929), - [sym_generic_type_with_turbofish] = STATE(3265), - [sym_bounded_type] = STATE(1962), - [sym_reference_type] = STATE(1962), - [sym_pointer_type] = STATE(1962), - [sym_empty_type] = STATE(1962), - [sym_abstract_type] = STATE(1962), - [sym_dynamic_type] = STATE(1962), - [sym_macro_invocation] = STATE(1962), - [sym_scoped_identifier] = STATE(3124), - [sym_scoped_type_identifier] = STATE(1890), - [aux_sym_function_modifiers_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_SQUOTE] = ACTIONS(3024), - [anon_sym_async] = ACTIONS(1040), - [anon_sym_const] = ACTIONS(1040), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1040), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_dyn] = ACTIONS(1060), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1730), - [sym_block_comment] = ACTIONS(3), + [sym_function_modifiers] = STATE(3294), + [sym_type_parameters] = STATE(970), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2299), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2281), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2147), + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2163), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [129] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(1693), 1, - sym__type, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [258] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1265), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [387] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2636), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [516] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1652), 1, - sym__type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [645] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2678), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [774] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3224), 1, - sym_identifier, - ACTIONS(3226), 1, - anon_sym_BANG, - STATE(1704), 1, - sym_for_lifetimes, - STATE(2075), 1, - sym_scoped_type_identifier, - STATE(2245), 1, - sym_generic_type, - STATE(2292), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [903] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2135), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1032] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2585), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1161] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2263), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1290] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2260), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1419] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2255), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1548] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2662), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1677] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1946), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1806] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2249), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [1935] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1963), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [2064] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2138), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [2193] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2184), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [2322] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2590), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [2451] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2134), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [2580] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2617), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [2709] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1634), 1, - sym__type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [2838] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2804), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [2967] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2274), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3096] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2407), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3225] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2341), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3354] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2275), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3483] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3064), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1950), 1, - sym_lifetime, - STATE(1968), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3612] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3194), 1, - sym__type, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3741] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1968), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3870] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2324), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [3999] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2922), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [4128] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2686), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [4257] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2898), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [4386] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1638), 1, - sym__type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [4515] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2616), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [4644] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1163), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [4773] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2821), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [4902] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2689), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5031] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2612), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5160] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2326), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5289] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2866), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5418] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2159), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5547] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2182), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5676] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2460), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5805] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2264), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [5934] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1157), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [6063] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1149), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [6192] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2266), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [6321] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1647), 1, - sym__type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [6450] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2241), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [6579] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2325), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [6708] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2933), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [6837] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2359), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [6966] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2156), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [7095] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - sym_identifier, - ACTIONS(3230), 1, - anon_sym_BANG, - STATE(1704), 1, - sym_for_lifetimes, - STATE(2114), 1, - sym_scoped_type_identifier, - STATE(2321), 1, - sym_generic_type, - STATE(2322), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [7224] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2349), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [7353] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2864), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [7482] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1651), 1, - sym__type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [7611] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2906), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [7740] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2589), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [7869] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1944), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [7998] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1942), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [8127] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1142), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [8256] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1965), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [8385] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2648), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [8514] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2753), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [8643] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2469), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [8772] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2604), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [8901] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2719), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [9030] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1653), 1, - sym__type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [9159] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2273), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [9288] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(1668), 1, - sym__type, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [9417] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2147), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [9546] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3232), 1, - sym_identifier, - ACTIONS(3234), 1, - anon_sym_BANG, - STATE(1704), 1, - sym_for_lifetimes, - STATE(2077), 1, - sym_scoped_type_identifier, - STATE(2240), 1, - sym_generic_type, - STATE(2256), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [9675] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2277), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [9804] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(1669), 1, - sym__type, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [9933] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2332), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [10062] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1659), 1, - sym__type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [10191] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2575), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [10320] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(1670), 1, - sym__type, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [10449] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1966), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [10578] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2278), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [10707] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2693), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [10836] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - anon_sym_LBRACK, - ACTIONS(3154), 1, - anon_sym_STAR, - ACTIONS(3158), 1, - anon_sym_COLON_COLON, - ACTIONS(3160), 1, - anon_sym_BANG, - ACTIONS(3162), 1, - anon_sym_AMP, - ACTIONS(3164), 1, - anon_sym_default, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3168), 1, - anon_sym_impl, - ACTIONS(3170), 1, - anon_sym_union, - ACTIONS(3172), 1, - anon_sym_dyn, - ACTIONS(3178), 1, - sym_metavariable, - STATE(1472), 1, - sym_scoped_type_identifier, - STATE(1529), 1, - sym_generic_type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(1676), 1, - sym__type, - STATE(3039), 1, - sym_scoped_identifier, - STATE(3335), 1, - sym_function_modifiers, - STATE(3387), 1, - sym_bracketed_type, - STATE(3388), 1, - sym_generic_type_with_turbofish, - STATE(3445), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3176), 3, - sym_self, - sym_super, - sym_crate, - STATE(1588), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3156), 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, - [10965] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3174), 1, - sym__type, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [11094] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1263), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [11223] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1964), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [11352] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2343), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [11481] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1414), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [11610] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2874), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [11739] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2638), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [11868] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2284), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [11997] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1952), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [12126] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2527), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [12255] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2930), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [12384] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2760), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [12513] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1249), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [12642] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2610), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [12771] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2285), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [12900] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2914), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [13029] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(3115), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [13158] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2652), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [13287] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2187), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [13416] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2293), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [13545] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2308), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [13674] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1950), 1, - sym_lifetime, - STATE(1968), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [13803] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2189), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [13932] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2311), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14061] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2300), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14190] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2301), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14319] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2691), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14448] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2306), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14577] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2131), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14706] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2794), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14835] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2599), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [14964] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2596), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [15093] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1941), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [15222] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2810), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [15351] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(3098), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [15480] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1248), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [15609] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2319), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [15738] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2178), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [15867] = 33, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3236), 1, - sym_self, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1943), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1728), 2, - sym_super, - sym_crate, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [15998] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2309), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [16127] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2161), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [16256] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2763), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [16385] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1144), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [16514] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1143), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [16643] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(1943), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [16772] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(3093), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [16901] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3238), 1, - sym_identifier, - ACTIONS(3240), 1, - anon_sym_BANG, - STATE(1704), 1, - sym_for_lifetimes, - STATE(2095), 1, - sym_scoped_type_identifier, - STATE(2257), 1, - sym_generic_type, - STATE(2310), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [17030] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2909), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [17159] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2280), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [17288] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2281), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [17417] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1020), 1, - anon_sym_STAR, - ACTIONS(1032), 1, - anon_sym_BANG, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1050), 1, - anon_sym_impl, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(1060), 1, - anon_sym_dyn, - ACTIONS(1706), 1, - anon_sym_LPAREN, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(1714), 1, - anon_sym_COLON_COLON, - ACTIONS(1716), 1, - anon_sym_AMP, - ACTIONS(1722), 1, - anon_sym_default, - ACTIONS(1724), 1, - anon_sym_union, - ACTIONS(1730), 1, - sym_metavariable, - ACTIONS(3016), 1, - sym_identifier, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1890), 1, - sym_scoped_type_identifier, - STATE(1929), 1, - sym_generic_type, - STATE(2302), 1, - sym__type, - STATE(3124), 1, - sym_scoped_identifier, - STATE(3265), 1, - sym_generic_type_with_turbofish, - STATE(3273), 1, - sym_lifetime, - STATE(3276), 1, - sym_function_modifiers, - STATE(3279), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(1728), 3, - sym_self, - sym_super, - sym_crate, - STATE(1962), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(1712), 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, - [17546] = 32, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - ACTIONS(3112), 1, - sym_identifier, - ACTIONS(3114), 1, - anon_sym_LPAREN, - ACTIONS(3116), 1, - anon_sym_LBRACK, - ACTIONS(3120), 1, - anon_sym_STAR, - ACTIONS(3124), 1, - anon_sym_COLON_COLON, - ACTIONS(3126), 1, - anon_sym_BANG, - ACTIONS(3128), 1, - anon_sym_AMP, - ACTIONS(3130), 1, - anon_sym_default, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3134), 1, - anon_sym_impl, - ACTIONS(3136), 1, - anon_sym_union, - ACTIONS(3138), 1, - anon_sym_dyn, - ACTIONS(3144), 1, - sym_metavariable, - STATE(1009), 1, - sym_scoped_type_identifier, - STATE(1065), 1, - sym_generic_type, - STATE(1140), 1, - sym__type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3185), 1, - sym_scoped_identifier, - STATE(3205), 1, - sym_function_modifiers, - STATE(3291), 1, - sym_lifetime, - STATE(3362), 1, - sym_bracketed_type, - STATE(3363), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + [858] = { + [sym_function_modifiers] = STATE(3294), + [sym_type_parameters] = STATE(991), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2297), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2140), + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [859] = { + [sym_function_modifiers] = STATE(3294), + [sym_type_parameters] = STATE(958), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2343), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2293), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2110), + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(3088), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [860] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [861] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [862] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [863] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [864] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(3068), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(846), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [sym_mutable_specifier] = ACTIONS(3114), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [865] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2618), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [866] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [867] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1691), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [sym_mutable_specifier] = ACTIONS(3120), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [868] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [869] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1970), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3124), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [870] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2504), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [871] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2460), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [872] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2270), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [873] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2788), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [874] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2342), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [875] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2304), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [876] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2341), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [877] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2338), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [878] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1671), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [879] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [880] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2732), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [881] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2884), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [882] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2464), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [883] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2212), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [884] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2207), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [885] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1264), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [886] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1269), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [887] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2364), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [888] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2930), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [889] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2950), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [890] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2479), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [891] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2324), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [892] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [893] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2910), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [894] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2867), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [895] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2898), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [896] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2291), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [897] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [898] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2859), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [899] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2196), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [900] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [901] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1648), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [902] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [903] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1646), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [904] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2161), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [905] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1156), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [906] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2294), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [907] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2156), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [908] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2512), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [909] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2944), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [910] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2344), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [911] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1634), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [912] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1683), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [913] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1985), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [914] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2268), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [915] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1688), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [916] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2478), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [917] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2158), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [918] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2321), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [919] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1700), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [920] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [921] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1172), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [922] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [923] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [924] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2856), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [925] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2303), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [926] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1729), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [927] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [928] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2757), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [929] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1727), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [930] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2318), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [931] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1726), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [932] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1724), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [933] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2905), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [934] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1970), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [935] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1162), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [936] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [937] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1148), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [938] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2329), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [939] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2350), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [940] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2177), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [941] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2201), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [942] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2273), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [943] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2862), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [944] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [945] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2385), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [946] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2721), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [947] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [948] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2876), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [949] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2568), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [950] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2522), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [951] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1140), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [952] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [953] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1978), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [954] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2316), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [955] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1971), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [956] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [957] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2274), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [958] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2322), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2292), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2134), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [959] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2674), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [960] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [961] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [962] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2371), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [963] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2903), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [964] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2790), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [965] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2286), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [966] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2296), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [967] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2164), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [968] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2623), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [969] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [970] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2279), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2276), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2151), + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [971] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2586), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [972] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2348), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [973] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2416), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [974] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [975] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2760), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [976] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1157), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [977] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2160), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [978] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [979] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [980] = { + [sym_function_modifiers] = STATE(3376), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1707), + [sym_bracketed_type] = STATE(3428), + [sym_lifetime] = STATE(3467), + [sym_array_type] = STATE(1612), + [sym_for_lifetimes] = STATE(1687), + [sym_function_type] = STATE(1612), + [sym_tuple_type] = STATE(1612), + [sym_unit_type] = STATE(1612), + [sym_generic_type] = STATE(1557), + [sym_generic_type_with_turbofish] = STATE(3429), + [sym_bounded_type] = STATE(1612), + [sym_reference_type] = STATE(1612), + [sym_pointer_type] = STATE(1612), + [sym_empty_type] = STATE(1612), + [sym_abstract_type] = STATE(1612), + [sym_dynamic_type] = STATE(1612), + [sym_macro_invocation] = STATE(1612), + [sym_scoped_identifier] = STATE(3053), + [sym_scoped_type_identifier] = STATE(1487), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3050), + [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_COLON_COLON] = ACTIONS(3058), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_AMP] = ACTIONS(3062), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3064), + [anon_sym_fn] = ACTIONS(3066), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3068), + [anon_sym_union] = ACTIONS(3070), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(3076), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3078), + }, + [981] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2197), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [982] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2535), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [983] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(3052), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [984] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(3051), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [985] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(1973), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [986] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [987] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2679), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [988] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(3040), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [989] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(3036), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [990] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(3143), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [991] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2264), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2287), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2146), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [992] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(1973), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [993] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1153), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [994] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2195), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [995] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [996] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2199), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [997] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [998] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2439), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [999] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1430), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [1000] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1261), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [1001] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [1002] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2450), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [1003] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2271), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(2275), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(2096), + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, + [1004] = { + [sym_function_modifiers] = STATE(3246), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(1247), + [sym_bracketed_type] = STATE(3403), + [sym_lifetime] = STATE(3319), + [sym_array_type] = STATE(1440), + [sym_for_lifetimes] = STATE(1686), + [sym_function_type] = STATE(1440), + [sym_tuple_type] = STATE(1440), + [sym_unit_type] = STATE(1440), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3404), + [sym_bounded_type] = STATE(1440), + [sym_reference_type] = STATE(1440), + [sym_pointer_type] = STATE(1440), + [sym_empty_type] = STATE(1440), + [sym_abstract_type] = STATE(1440), + [sym_dynamic_type] = STATE(1440), + [sym_macro_invocation] = STATE(1440), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(3010), + [anon_sym_LPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(3014), + [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_COLON_COLON] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3030), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3034), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3042), + }, + [1005] = { + [sym_function_modifiers] = STATE(3294), + [sym_extern_modifier] = STATE(2346), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3299), + [sym_lifetime] = STATE(3289), + [sym_array_type] = STATE(1983), + [sym_for_lifetimes] = STATE(1722), + [sym_function_type] = STATE(1983), + [sym_tuple_type] = STATE(1983), + [sym_unit_type] = STATE(1983), + [sym_generic_type] = STATE(1950), + [sym_generic_type_with_turbofish] = STATE(3285), + [sym_bounded_type] = STATE(1983), + [sym_reference_type] = STATE(1983), + [sym_pointer_type] = STATE(1983), + [sym_empty_type] = STATE(1983), + [sym_abstract_type] = STATE(1983), + [sym_dynamic_type] = STATE(1983), + [sym_macro_invocation] = STATE(1983), + [sym_scoped_identifier] = STATE(3159), + [sym_scoped_type_identifier] = STATE(1912), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1022), + [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_COLON_COLON] = ACTIONS(1606), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1052), + [anon_sym_union] = ACTIONS(1616), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1056), + [anon_sym_dyn] = ACTIONS(1062), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [sym_self] = ACTIONS(1620), + [sym_super] = ACTIONS(1620), + [sym_crate] = ACTIONS(1620), + [sym_metavariable] = ACTIONS(1622), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1006), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3142), 3, - sym_self, - sym_super, - sym_crate, - STATE(1415), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(3122), 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, - [17675] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1644), 17, + ACTIONS(3144), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -111921,7 +110936,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1642), 43, + ACTIONS(3142), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111965,11 +110980,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17744] = 3, - ACTIONS(3), 2, - sym_block_comment, + [75] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1007), 2, sym_line_comment, - ACTIONS(3244), 17, + sym_block_comment, + ACTIONS(1536), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -111987,7 +111006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3242), 43, + ACTIONS(1534), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112031,11 +111050,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17813] = 3, - ACTIONS(3), 2, - sym_block_comment, + [150] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1008), 2, sym_line_comment, - ACTIONS(3248), 17, + sym_block_comment, + ACTIONS(3148), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -112053,7 +111076,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3246), 43, + ACTIONS(3146), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112097,11 +111120,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17882] = 3, - ACTIONS(3), 2, - sym_block_comment, + [225] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1009), 2, sym_line_comment, - ACTIONS(744), 18, + sym_block_comment, + ACTIONS(766), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -112120,7 +111147,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3250), 41, + ACTIONS(3150), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112162,27 +111189,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17950] = 3, - ACTIONS(3), 2, - sym_block_comment, + [299] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1010), 2, sym_line_comment, - ACTIONS(2109), 15, - sym_raw_string_literal, - sym_float_literal, + sym_block_comment, + ACTIONS(3154), 19, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_DASH, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_AMP, anon_sym_LT, - anon_sym_DOT_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2111), 38, + ACTIONS(3152), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112200,8 +111235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_SQUOTE, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112210,42 +111243,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, - anon_sym_ref, + anon_sym_else, anon_sym_dyn, sym_mutable_specifier, - anon_sym_DOT_DOT, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18012] = 3, - ACTIONS(3), 2, - sym_block_comment, + [367] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1011), 2, sym_line_comment, - ACTIONS(3254), 19, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(2142), 15, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_EQ, - anon_sym_COMMA, + anon_sym_DASH, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_AMP, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3252), 34, + ACTIONS(2144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112263,6 +111294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym__, + anon_sym_SQUOTE, anon_sym_async, anon_sym_const, anon_sym_default, @@ -112271,32 +111304,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, - anon_sym_where, anon_sym_extern, - anon_sym_else, + anon_sym_ref, anon_sym_dyn, sym_mutable_specifier, + anon_sym_DOT_DOT, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [18074] = 9, - ACTIONS(3258), 1, + [435] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, anon_sym_LPAREN, - ACTIONS(3262), 1, + ACTIONS(3162), 1, anon_sym_COLON_COLON, - ACTIONS(3264), 1, + ACTIONS(3164), 1, anon_sym_BANG, - ACTIONS(3266), 1, + ACTIONS(3166), 1, anon_sym_LT2, - STATE(1048), 1, - sym_parameters, - STATE(1049), 1, + STATE(1084), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1086), 1, + sym_parameters, + STATE(1012), 2, sym_line_comment, - ACTIONS(3260), 17, + sym_block_comment, + ACTIONS(3160), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112314,7 +111353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3256), 27, + ACTIONS(3156), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112342,21 +111381,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18145] = 8, - ACTIONS(3258), 1, + [512] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, anon_sym_LPAREN, - ACTIONS(3266), 1, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(3272), 1, + ACTIONS(3172), 1, anon_sym_COLON_COLON, - STATE(1048), 1, - sym_parameters, - STATE(1049), 1, + STATE(1084), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1086), 1, + sym_parameters, + STATE(1013), 2, sym_line_comment, - ACTIONS(3270), 17, + sym_block_comment, + ACTIONS(3170), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112374,7 +111417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3268), 27, + ACTIONS(3168), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112402,21 +111445,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18213] = 8, - ACTIONS(3258), 1, + [586] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, anon_sym_LPAREN, - ACTIONS(3266), 1, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(3272), 1, + ACTIONS(3172), 1, anon_sym_COLON_COLON, - STATE(1048), 1, - sym_parameters, - STATE(1049), 1, + STATE(1084), 1, sym_type_arguments, - ACTIONS(3), 2, + STATE(1086), 1, + sym_parameters, + STATE(1014), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3176), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + ACTIONS(3174), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [660] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_LPAREN, + ACTIONS(3166), 1, + anon_sym_LT2, + ACTIONS(3172), 1, + anon_sym_COLON_COLON, + STATE(1084), 1, + sym_type_arguments, + STATE(1086), 1, + sym_parameters, + STATE(1015), 2, sym_line_comment, - ACTIONS(3276), 17, + sym_block_comment, + ACTIONS(3180), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112434,7 +111545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3274), 27, + ACTIONS(3178), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112462,21 +111573,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18281] = 8, - ACTIONS(3258), 1, + [734] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1016), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(888), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(890), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [797] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1017), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(910), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(912), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [860] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1018), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(954), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(956), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [923] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1019), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(872), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(874), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [986] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1020), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(892), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(894), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1049] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1021), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(878), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(880), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1112] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, anon_sym_LPAREN, - ACTIONS(3266), 1, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(3272), 1, - anon_sym_COLON_COLON, - STATE(1048), 1, + STATE(1050), 1, sym_parameters, - STATE(1049), 1, + STATE(1067), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1022), 2, sym_line_comment, - ACTIONS(3280), 17, + sym_block_comment, + ACTIONS(3184), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112494,7 +111955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3278), 27, + ACTIONS(3182), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112522,15 +111983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18349] = 5, - ACTIONS(3286), 1, + [1183] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3190), 1, anon_sym_COLON_COLON, - ACTIONS(3288), 1, + ACTIONS(3192), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + STATE(1023), 2, sym_line_comment, - ACTIONS(3284), 17, + sym_block_comment, + ACTIONS(3188), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112548,7 +112013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3282), 29, + ACTIONS(3186), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112578,19 +112043,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18410] = 7, - ACTIONS(3258), 1, + [1250] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, anon_sym_LPAREN, - ACTIONS(3266), 1, + ACTIONS(3166), 1, anon_sym_LT2, - STATE(1039), 1, - sym_type_arguments, - STATE(1070), 1, + STATE(1050), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1067), 1, + sym_type_arguments, + STATE(1024), 2, sym_line_comment, - ACTIONS(3292), 17, + sym_block_comment, + ACTIONS(3196), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112608,7 +112077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3290), 27, + ACTIONS(3194), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -112636,11 +112105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18475] = 3, - ACTIONS(3), 2, - sym_block_comment, + [1321] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1025), 2, sym_line_comment, - ACTIONS(984), 9, + sym_block_comment, + ACTIONS(868), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112650,7 +112123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(986), 39, + ACTIONS(870), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112690,19 +112163,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18532] = 7, - ACTIONS(3258), 1, - anon_sym_LPAREN, - ACTIONS(3266), 1, - anon_sym_LT2, - STATE(1039), 1, - sym_type_arguments, - STATE(1070), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + [1384] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3202), 1, + anon_sym_COLON_COLON, + ACTIONS(3204), 1, + anon_sym_BANG, + STATE(1026), 2, sym_line_comment, - ACTIONS(3296), 17, + sym_block_comment, + ACTIONS(3200), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112720,8 +112193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3294), 27, + ACTIONS(3198), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112733,6 +112207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112748,19 +112223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18597] = 7, - ACTIONS(3258), 1, - anon_sym_LPAREN, - ACTIONS(3266), 1, - anon_sym_LT2, - STATE(1039), 1, - sym_type_arguments, - STATE(1070), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + [1451] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, + anon_sym_COLON_COLON, + ACTIONS(3212), 1, + anon_sym_BANG, + STATE(1027), 2, sym_line_comment, - ACTIONS(3300), 17, + sym_block_comment, + ACTIONS(3208), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112778,8 +112253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3298), 27, + ACTIONS(3206), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112791,6 +112267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112806,123 +112283,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18662] = 3, - ACTIONS(3), 2, - sym_block_comment, + [1518] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_LPAREN, + ACTIONS(3166), 1, + anon_sym_LT2, + STATE(1050), 1, + sym_parameters, + STATE(1067), 1, + sym_type_arguments, + STATE(1028), 2, sym_line_comment, - ACTIONS(1008), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_POUND, + sym_block_comment, + ACTIONS(3216), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - sym_metavariable, - ACTIONS(1010), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18719] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1000), 9, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + ACTIONS(3214), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - sym_metavariable, - ACTIONS(1002), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18776] = 5, - ACTIONS(3306), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [1589] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3222), 1, anon_sym_COLON_COLON, - ACTIONS(3308), 1, + ACTIONS(3224), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + STATE(1029), 2, sym_line_comment, - ACTIONS(3304), 17, + sym_block_comment, + ACTIONS(3220), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112940,7 +112375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3302), 29, + ACTIONS(3218), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112970,11 +112405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [18837] = 3, - ACTIONS(3), 2, - sym_block_comment, + [1656] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1030), 2, sym_line_comment, - ACTIONS(874), 9, + sym_block_comment, + ACTIONS(1002), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112984,7 +112423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(876), 39, + ACTIONS(1004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113024,125 +112463,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18894] = 5, - ACTIONS(3314), 1, - anon_sym_COLON_COLON, - ACTIONS(3316), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3312), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3310), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [18955] = 7, - ACTIONS(3258), 1, - anon_sym_LPAREN, - ACTIONS(3266), 1, - anon_sym_LT2, - STATE(1039), 1, - sym_type_arguments, - STATE(1070), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + [1719] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1031), 2, sym_line_comment, - ACTIONS(3320), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3318), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [19020] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(950), 9, + ACTIONS(898), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113152,7 +112481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(952), 39, + ACTIONS(900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113192,15 +112521,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19077] = 5, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + [1782] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_LPAREN, + ACTIONS(3166), 1, + anon_sym_LT2, + STATE(1050), 1, + sym_parameters, + STATE(1067), 1, + sym_type_arguments, + STATE(1032), 2, sym_line_comment, - ACTIONS(3324), 17, + sym_block_comment, + ACTIONS(3228), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113218,9 +112555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3322), 29, + ACTIONS(3226), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113232,7 +112568,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113248,75 +112583,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19138] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(880), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + [1853] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3234), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - sym_metavariable, - ACTIONS(882), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19195] = 3, - ACTIONS(3), 2, - sym_block_comment, + STATE(1033), 2, sym_line_comment, - ACTIONS(868), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + sym_block_comment, + ACTIONS(3232), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_COLON_COLON, + anon_sym_AMP, anon_sym_POUND, anon_sym_LT, anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(870), 39, + ACTIONS(3230), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113334,43 +112627,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19252] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(888), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + [1917] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3240), 1, anon_sym_RBRACE, - anon_sym_EQ_GT, + STATE(1034), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3238), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_COLON_COLON, + anon_sym_AMP, anon_sym_POUND, anon_sym_LT, anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(890), 39, + ACTIONS(3236), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113388,43 +112685,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_move, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19309] = 3, - ACTIONS(3), 2, - sym_block_comment, + [1981] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1035), 2, sym_line_comment, - ACTIONS(884), 9, + sym_block_comment, + ACTIONS(2208), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, anon_sym_LT, - anon_sym_PIPE, sym_metavariable, - ACTIONS(886), 39, + ACTIONS(2210), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113447,7 +112740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -113455,74 +112747,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19366] = 4, - ACTIONS(3334), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3332), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3330), 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_const, - anon_sym_default, - anon_sym_static, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [19424] = 3, - ACTIONS(3), 2, - sym_block_comment, + [2043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1036), 2, sym_line_comment, - ACTIONS(3328), 16, + sym_block_comment, + ACTIONS(3224), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113539,7 +112781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3326), 31, + ACTIONS(3222), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113571,22 +112813,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19480] = 6, - ACTIONS(3340), 1, - anon_sym_COLON_COLON, - ACTIONS(3342), 1, + [2105] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3242), 1, + anon_sym_LBRACE, + ACTIONS(3244), 1, + anon_sym_COLON_COLON, + STATE(1298), 1, + sym_field_initializer_list, + STATE(1037), 2, sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3338), 16, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113599,16 +112842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_as, anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 23, + ACTIONS(996), 28, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -113627,11 +112874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19542] = 3, - ACTIONS(3), 2, - sym_block_comment, + [2175] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1038), 2, sym_line_comment, - ACTIONS(3308), 16, + sym_block_comment, + ACTIONS(3212), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113648,7 +112899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3306), 31, + ACTIONS(3210), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113680,64 +112931,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19598] = 3, - ACTIONS(3), 2, - sym_block_comment, + [2237] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1039), 2, sym_line_comment, - ACTIONS(2077), 9, + sym_block_comment, + ACTIONS(3204), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3202), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [2299] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1040), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3192), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, - sym_metavariable, - ACTIONS(2079), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3190), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [2361] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3250), 1, + anon_sym_COLON_COLON, + ACTIONS(3252), 1, + anon_sym_BANG, + STATE(1041), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3254), 6, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19654] = 3, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3248), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3246), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [2429] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1042), 2, sym_line_comment, - ACTIONS(2093), 9, + sym_block_comment, + ACTIONS(2674), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113747,7 +113123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2095), 38, + ACTIONS(2676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113786,11 +113162,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19710] = 3, - ACTIONS(3), 2, - sym_block_comment, + [2491] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1043), 2, sym_line_comment, - ACTIONS(2918), 9, + sym_block_comment, + ACTIONS(2826), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113800,7 +113180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2920), 38, + ACTIONS(2828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113839,118 +113219,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19766] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3316), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3314), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19822] = 4, - ACTIONS(3350), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, + [2553] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1044), 2, sym_line_comment, - ACTIONS(3348), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3346), 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_const, - anon_sym_default, - anon_sym_static, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19880] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2405), 9, + ACTIONS(2340), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113960,7 +113237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2407), 38, + ACTIONS(2342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113999,64 +113276,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19936] = 3, - ACTIONS(3), 2, - sym_block_comment, + [2615] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1045), 2, sym_line_comment, - ACTIONS(3288), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3286), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19992] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2497), 9, + ACTIONS(2778), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114066,7 +113294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2499), 38, + ACTIONS(2780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114105,19 +113333,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20048] = 7, - ACTIONS(3264), 1, - anon_sym_BANG, - ACTIONS(3352), 1, - anon_sym_LBRACE, - ACTIONS(3354), 1, - anon_sym_COLON_COLON, - STATE(1287), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, + [2677] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3260), 1, + anon_sym_DASH_GT, + STATE(1046), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(3258), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114133,15 +113359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 28, + ACTIONS(3256), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -114162,13 +113390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20112] = 4, - ACTIONS(3356), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [2740] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1047), 2, sym_line_comment, - ACTIONS(3296), 15, + sym_block_comment, + ACTIONS(3264), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114184,7 +113414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3294), 30, + ACTIONS(3262), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114193,6 +113423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -114215,13 +113446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20169] = 4, - ACTIONS(3362), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [2801] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1048), 2, sym_line_comment, - ACTIONS(3360), 15, + sym_block_comment, + ACTIONS(3208), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114235,9 +113468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3358), 30, + anon_sym_LT_LT_EQ, + ACTIONS(3206), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114251,12 +113486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114266,68 +113501,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20226] = 5, - ACTIONS(3364), 1, - anon_sym_else, - STATE(1220), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(850), 15, - anon_sym_PLUS, + [2862] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1602), 1, + anon_sym_LBRACK, + ACTIONS(3266), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(3276), 1, + anon_sym_COLON_COLON, + ACTIONS(3278), 1, anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(848), 29, + ACTIONS(3280), 1, + anon_sym_SQUOTE, + ACTIONS(3284), 1, + anon_sym_for, + ACTIONS(3288), 1, + sym_metavariable, + STATE(2588), 1, + sym_scoped_type_identifier, + STATE(2667), 1, + sym_where_predicate, + STATE(2770), 1, + sym_generic_type, + STATE(3330), 1, + sym_scoped_identifier, + STATE(3375), 1, + sym_bracketed_type, + STATE(3378), 1, + sym_generic_type_with_turbofish, + ACTIONS(3268), 2, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20285] = 4, - ACTIONS(3356), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(3282), 2, + anon_sym_default, + anon_sym_union, + STATE(1049), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3286), 3, + sym_self, + sym_super, + sym_crate, + STATE(3146), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3274), 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, + [2961] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3294), 1, + anon_sym_DASH_GT, + STATE(1050), 2, sym_line_comment, + sym_block_comment, ACTIONS(3292), 15, anon_sym_PLUS, anon_sym_STAR, @@ -114375,11 +113634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20342] = 3, - ACTIONS(3), 2, - sym_block_comment, + [3024] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 1, + anon_sym_DASH_GT, + STATE(1051), 2, sym_line_comment, - ACTIONS(3368), 15, + sym_block_comment, + ACTIONS(3298), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114395,7 +113660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3366), 31, + ACTIONS(3296), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114405,7 +113670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -114427,16 +113691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20397] = 3, - ACTIONS(3), 2, - sym_block_comment, + [3087] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3302), 1, + anon_sym_LBRACE, + STATE(1052), 2, sym_line_comment, - ACTIONS(3372), 15, + sym_block_comment, + ACTIONS(3192), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -114447,18 +113718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3370), 31, + ACTIONS(3190), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -114479,16 +113748,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20452] = 3, - ACTIONS(3), 2, - sym_block_comment, + [3150] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3304), 1, + anon_sym_LBRACE, + STATE(1053), 2, sym_line_comment, - ACTIONS(3324), 17, + sym_block_comment, + ACTIONS(3212), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -114497,30 +113773,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3322), 29, + ACTIONS(3210), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114530,14 +113803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20507] = 4, - ACTIONS(3356), 1, + [3213] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3306), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1054), 2, sym_line_comment, - ACTIONS(3320), 15, + sym_block_comment, + ACTIONS(3184), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114553,7 +113831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3318), 30, + ACTIONS(3182), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114584,18 +113862,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20564] = 4, - ACTIONS(3378), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [3276] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3308), 1, + anon_sym_LBRACE, + STATE(1055), 2, sym_line_comment, - ACTIONS(3376), 15, + sym_block_comment, + ACTIONS(3224), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -114606,17 +113889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 30, + ACTIONS(3222), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -114637,13 +113919,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20621] = 4, - ACTIONS(3384), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [3339] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1056), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3238), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3236), 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_const, + anon_sym_default, + anon_sym_static, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3400] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1057), 2, sym_line_comment, - ACTIONS(3382), 15, + sym_block_comment, + ACTIONS(3312), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114659,7 +113999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3380), 30, + ACTIONS(3310), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114668,6 +114008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -114690,11 +114031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20678] = 3, - ACTIONS(3), 2, - sym_block_comment, + [3461] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1058), 2, sym_line_comment, - ACTIONS(3388), 15, + sym_block_comment, + ACTIONS(3316), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114710,7 +114055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3386), 31, + ACTIONS(3314), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114742,11 +114087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20733] = 3, - ACTIONS(3), 2, - sym_block_comment, + [3522] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1059), 2, sym_line_comment, - ACTIONS(3392), 15, + sym_block_comment, + ACTIONS(3320), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114762,7 +114111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3390), 31, + ACTIONS(3318), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114771,8 +114120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -114794,15 +114143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20788] = 5, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1276), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [3583] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1060), 2, sym_line_comment, - ACTIONS(3396), 15, + sym_block_comment, + ACTIONS(3324), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114818,7 +114167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3394), 29, + ACTIONS(3322), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114827,7 +114176,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -114848,13 +114199,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20847] = 4, - ACTIONS(3404), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [3644] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1061), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3232), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3230), 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_const, + anon_sym_default, + anon_sym_static, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3705] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3330), 1, + anon_sym_DASH_GT, + STATE(1062), 2, sym_line_comment, - ACTIONS(3402), 15, + sym_block_comment, + ACTIONS(3328), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114870,7 +114281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3400), 30, + ACTIONS(3326), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114901,11 +114312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20904] = 3, - ACTIONS(3), 2, - sym_block_comment, + [3768] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1063), 2, sym_line_comment, - ACTIONS(3408), 15, + sym_block_comment, + ACTIONS(1376), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114921,7 +114336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 31, + ACTIONS(1378), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114929,9 +114344,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -114953,19 +114368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20959] = 4, - ACTIONS(3410), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + [3829] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + STATE(1064), 2, sym_line_comment, - ACTIONS(3316), 16, + sym_block_comment, + ACTIONS(3216), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -114976,16 +114394,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3314), 29, + ACTIONS(3214), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115006,19 +114425,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21016] = 4, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + [3892] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1065), 2, sym_line_comment, - ACTIONS(3328), 16, + sym_block_comment, + ACTIONS(3336), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -115029,16 +114449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3326), 29, + ACTIONS(3334), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115059,11 +114481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21073] = 3, - ACTIONS(3), 2, - sym_block_comment, + [3953] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1066), 2, sym_line_comment, - ACTIONS(3416), 15, + sym_block_comment, + ACTIONS(3340), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115079,7 +114505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3414), 31, + ACTIONS(3338), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115088,8 +114514,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -115111,13 +114537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21128] = 4, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [4014] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1067), 2, sym_line_comment, - ACTIONS(3300), 15, + sym_block_comment, + ACTIONS(3344), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115133,7 +114561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 30, + ACTIONS(3342), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115143,6 +114571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -115164,65 +114593,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21185] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3348), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, + [4075] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3346), 1, anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3346), 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_const, - anon_sym_default, - anon_sym_static, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21240] = 4, - ACTIONS(3424), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + STATE(1068), 2, sym_line_comment, - ACTIONS(3422), 15, + sym_block_comment, + ACTIONS(3216), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115238,7 +114619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3420), 30, + ACTIONS(3214), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115269,19 +114650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21297] = 4, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + [4138] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1069), 2, sym_line_comment, - ACTIONS(3288), 16, + sym_block_comment, + ACTIONS(3350), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -115292,16 +114674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3286), 29, + ACTIONS(3348), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115322,11 +114706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21354] = 3, - ACTIONS(3), 2, - sym_block_comment, + [4199] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3306), 1, + anon_sym_COLON_COLON, + STATE(1070), 2, sym_line_comment, - ACTIONS(3430), 15, + sym_block_comment, + ACTIONS(3216), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115342,7 +114732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3428), 31, + ACTIONS(3214), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115351,7 +114741,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -115374,11 +114763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21409] = 3, - ACTIONS(3), 2, - sym_block_comment, + [4262] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3356), 1, + anon_sym_DASH_GT, + STATE(1071), 2, sym_line_comment, - ACTIONS(3252), 15, + sym_block_comment, + ACTIONS(3354), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115394,7 +114789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3254), 31, + ACTIONS(3352), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115402,7 +114797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, @@ -115426,11 +114820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21464] = 3, - ACTIONS(3), 2, - sym_block_comment, + [4325] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3358), 1, + anon_sym_COLON_COLON, + STATE(1072), 2, sym_line_comment, - ACTIONS(3434), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115446,7 +114846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3432), 31, + ACTIONS(996), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115456,7 +114856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -115478,60 +114877,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21519] = 22, - ACTIONS(29), 1, + [4388] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1710), 1, + ACTIONS(1602), 1, anon_sym_LBRACK, - ACTIONS(3436), 1, + ACTIONS(3266), 1, sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3270), 1, anon_sym_LPAREN, - ACTIONS(3442), 1, + ACTIONS(3272), 1, anon_sym_STAR, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3448), 1, + ACTIONS(3278), 1, anon_sym_AMP, - ACTIONS(3450), 1, + ACTIONS(3280), 1, anon_sym_SQUOTE, - ACTIONS(3454), 1, + ACTIONS(3284), 1, anon_sym_for, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - STATE(2513), 1, - sym_where_predicate, - STATE(2563), 1, + STATE(2588), 1, sym_scoped_type_identifier, - STATE(2902), 1, + STATE(2667), 1, + sym_where_predicate, + STATE(2770), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3438), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + ACTIONS(3360), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - STATE(3014), 6, + STATE(3146), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3444), 17, + ACTIONS(3274), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115549,11 +114952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [21612] = 3, - ACTIONS(3), 2, - sym_block_comment, + [4487] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1074), 2, sym_line_comment, - ACTIONS(3462), 15, + sym_block_comment, + ACTIONS(3364), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115569,7 +114976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3460), 31, + ACTIONS(3362), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115601,143 +115008,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21667] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3332), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3330), 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_const, - anon_sym_default, - anon_sym_static, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21722] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - anon_sym_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3450), 1, - anon_sym_SQUOTE, - ACTIONS(3454), 1, - anon_sym_for, - ACTIONS(3458), 1, - sym_metavariable, - STATE(2513), 1, - sym_where_predicate, - STATE(2563), 1, - sym_scoped_type_identifier, - STATE(2902), 1, - sym_generic_type, - STATE(3299), 1, - sym_scoped_identifier, - STATE(3334), 1, - sym_bracketed_type, - STATE(3337), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3464), 2, - anon_sym_SEMI, + [4548] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3366), 1, anon_sym_LBRACE, - ACTIONS(3456), 3, - sym_self, - sym_super, - sym_crate, - STATE(3014), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3444), 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, - [21815] = 5, - ACTIONS(3468), 1, - anon_sym_LPAREN, - STATE(1338), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1075), 2, sym_line_comment, - ACTIONS(3470), 15, + sym_block_comment, + ACTIONS(3204), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -115748,16 +115035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 29, + ACTIONS(3202), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115778,13 +115065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21874] = 4, - ACTIONS(3356), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [4611] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3370), 1, + anon_sym_LPAREN, + STATE(1350), 1, + sym_arguments, + STATE(1076), 2, sym_line_comment, - ACTIONS(3300), 15, + sym_block_comment, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115800,9 +115093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 30, + ACTIONS(3368), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -115831,11 +115123,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21931] = 3, - ACTIONS(3), 2, - sym_block_comment, + [4676] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3306), 1, + anon_sym_COLON_COLON, + STATE(1077), 2, sym_line_comment, - ACTIONS(1456), 15, + sym_block_comment, + ACTIONS(3196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115851,7 +115149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1458), 31, + ACTIONS(3194), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115859,7 +115157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, @@ -115883,13 +115180,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21986] = 4, - ACTIONS(3472), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + [4739] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1078), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3376), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3374), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_static, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4800] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1079), 2, sym_line_comment, - ACTIONS(3300), 15, + sym_block_comment, + ACTIONS(3152), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115905,7 +115260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 30, + ACTIONS(3154), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115913,6 +115268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, @@ -115936,11 +115292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22043] = 3, - ACTIONS(3), 2, - sym_block_comment, + [4861] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1080), 2, sym_line_comment, - ACTIONS(3476), 15, + sym_block_comment, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115956,7 +115316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3474), 31, + ACTIONS(3378), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115988,11 +115348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22098] = 3, - ACTIONS(3), 2, - sym_block_comment, + [4922] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3386), 1, + anon_sym_DASH_GT, + STATE(1081), 2, sym_line_comment, - ACTIONS(3480), 15, + sym_block_comment, + ACTIONS(3384), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -116008,7 +115374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3478), 31, + ACTIONS(3382), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116017,7 +115383,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -116040,13 +115405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22153] = 4, - ACTIONS(3486), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [4985] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1082), 2, sym_line_comment, - ACTIONS(3484), 15, + sym_block_comment, + ACTIONS(3390), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -116062,7 +115429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3482), 30, + ACTIONS(3388), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116072,6 +115439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -116093,11 +115461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22210] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5046] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1288), 1, + sym_label, + STATE(1083), 2, sym_line_comment, - ACTIONS(3490), 15, + sym_block_comment, + ACTIONS(3394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -116113,7 +115489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3488), 31, + ACTIONS(3392), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116123,8 +115499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -116145,13 +115519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22265] = 4, - ACTIONS(3492), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [5111] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1084), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(3400), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -116167,7 +115543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 30, + ACTIONS(3398), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116177,6 +115553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -116198,11 +115575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22322] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5172] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3306), 1, + anon_sym_COLON_COLON, + STATE(1085), 2, sym_line_comment, - ACTIONS(3496), 15, + sym_block_comment, + ACTIONS(3228), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -116218,7 +115601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3494), 31, + ACTIONS(3226), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116228,7 +115611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -116250,13 +115632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22377] = 4, - ACTIONS(3502), 1, + [5235] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3406), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + STATE(1086), 2, sym_line_comment, - ACTIONS(3500), 15, + sym_block_comment, + ACTIONS(3404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -116272,7 +115658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3498), 30, + ACTIONS(3402), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116303,19 +115689,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22434] = 4, - ACTIONS(3504), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + [5298] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3408), 1, + anon_sym_else, + STATE(1223), 1, + sym_else_clause, + STATE(1087), 2, sym_line_comment, - ACTIONS(3308), 16, + sym_block_comment, + ACTIONS(744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -116326,18 +115717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3306), 29, + ACTIONS(742), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -116356,11 +115747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22491] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5363] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1088), 2, sym_line_comment, - ACTIONS(2609), 7, + sym_block_comment, + ACTIONS(2396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116368,7 +115763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2611), 38, + ACTIONS(2398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116407,113 +115802,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22545] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5423] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1089), 2, sym_line_comment, - ACTIONS(3508), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3506), 30, + sym_block_comment, + ACTIONS(1897), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22599] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3512), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3510), 30, + sym_metavariable, + ACTIONS(1899), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2802), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22653] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2804), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5543] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1091), 2, sym_line_comment, - ACTIONS(2021), 7, + sym_block_comment, + ACTIONS(2858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116521,7 +115928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2023), 38, + ACTIONS(2860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116560,11 +115967,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22707] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5603] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1092), 2, sym_line_comment, - ACTIONS(2033), 7, + sym_block_comment, + ACTIONS(2818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116572,7 +115983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2035), 38, + ACTIONS(2820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116611,11 +116022,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22761] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1093), 2, sym_line_comment, - ACTIONS(2037), 7, + sym_block_comment, + ACTIONS(2774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116623,7 +116038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2039), 38, + ACTIONS(2776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116662,11 +116077,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22815] = 3, - ACTIONS(3), 2, + [5723] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1094), 2, + sym_line_comment, sym_block_comment, + ACTIONS(880), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(878), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [5783] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1095), 2, sym_line_comment, - ACTIONS(1929), 7, + sym_block_comment, + ACTIONS(2718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116674,7 +116148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1931), 38, + ACTIONS(2720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116713,11 +116187,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22869] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5843] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1096), 2, sym_line_comment, - ACTIONS(2045), 7, + sym_block_comment, + ACTIONS(2550), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116725,7 +116203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2047), 38, + ACTIONS(2552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116764,11 +116242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22923] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5903] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1097), 2, sym_line_comment, - ACTIONS(1925), 7, + sym_block_comment, + ACTIONS(2534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116776,7 +116258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1927), 38, + ACTIONS(2536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116815,11 +116297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22977] = 3, - ACTIONS(3), 2, - sym_block_comment, + [5963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1098), 2, sym_line_comment, - ACTIONS(1937), 7, + sym_block_comment, + ACTIONS(2518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116827,7 +116313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1939), 38, + ACTIONS(2520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116866,11 +116352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23031] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6023] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1099), 2, sym_line_comment, - ACTIONS(2053), 7, + sym_block_comment, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116878,7 +116368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2055), 38, + ACTIONS(2480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116917,11 +116407,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23085] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1100), 2, sym_line_comment, - ACTIONS(1933), 7, + sym_block_comment, + ACTIONS(2264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116929,7 +116423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1935), 38, + ACTIONS(2266), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116968,11 +116462,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23139] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6143] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1101), 2, sym_line_comment, - ACTIONS(2069), 7, + sym_block_comment, + ACTIONS(2838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116980,7 +116478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2071), 38, + ACTIONS(2840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117019,11 +116517,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23193] = 3, - ACTIONS(3), 2, + [6203] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1102), 2, + sym_line_comment, sym_block_comment, + ACTIONS(964), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(962), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [6263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1103), 2, sym_line_comment, - ACTIONS(1949), 7, + sym_block_comment, + ACTIONS(2650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117031,7 +116588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1951), 38, + ACTIONS(2652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117070,11 +116627,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23247] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6323] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1104), 2, sym_line_comment, - ACTIONS(1953), 7, + sym_block_comment, + ACTIONS(2598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117082,7 +116643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1955), 38, + ACTIONS(2600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117121,11 +116682,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23301] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1105), 2, sym_line_comment, - ACTIONS(1957), 7, + sym_block_comment, + ACTIONS(2602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117133,7 +116698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1959), 38, + ACTIONS(2604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117172,11 +116737,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23355] = 3, - ACTIONS(3), 2, + [6443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1490), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1492), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [6503] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1107), 2, + sym_line_comment, sym_block_comment, + ACTIONS(994), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(996), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [6563] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1108), 2, sym_line_comment, - ACTIONS(2089), 7, + sym_block_comment, + ACTIONS(2590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117184,7 +116863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2091), 38, + ACTIONS(2592), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117223,11 +116902,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23409] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6623] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1109), 2, sym_line_comment, - ACTIONS(1961), 7, + sym_block_comment, + ACTIONS(2586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117235,7 +116918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1963), 38, + ACTIONS(2588), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117274,11 +116957,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23463] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6683] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1110), 2, sym_line_comment, - ACTIONS(1973), 7, + sym_block_comment, + ACTIONS(2578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117286,7 +116973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1975), 38, + ACTIONS(2580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117325,11 +117012,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23517] = 3, - ACTIONS(3), 2, + [6743] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1111), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3412), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3410), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [6803] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1112), 2, sym_line_comment, - ACTIONS(1981), 7, + sym_block_comment, + ACTIONS(2574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117337,7 +117083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1983), 38, + ACTIONS(2576), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117376,11 +117122,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23571] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1113), 2, sym_line_comment, - ACTIONS(1989), 7, + sym_block_comment, + ACTIONS(2562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117388,7 +117138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1991), 38, + ACTIONS(2564), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117427,62 +117177,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23625] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6923] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1114), 2, sym_line_comment, - ACTIONS(966), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(964), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23679] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2137), 7, + ACTIONS(2554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117490,7 +117193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2139), 38, + ACTIONS(2556), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117529,11 +117232,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23733] = 3, - ACTIONS(3), 2, - sym_block_comment, + [6983] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1115), 2, sym_line_comment, - ACTIONS(2265), 7, + sym_block_comment, + ACTIONS(2810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117541,7 +117248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2267), 38, + ACTIONS(2812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117580,62 +117287,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23787] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1116), 2, sym_line_comment, - ACTIONS(1600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1602), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23841] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(944), 15, + ACTIONS(976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -117651,7 +117311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(942), 30, + ACTIONS(974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117682,11 +117342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23895] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7103] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1117), 2, sym_line_comment, - ACTIONS(1921), 7, + sym_block_comment, + ACTIONS(2798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117694,7 +117358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1923), 38, + ACTIONS(2800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117733,11 +117397,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23949] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7163] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1118), 2, sym_line_comment, - ACTIONS(1917), 7, + sym_block_comment, + ACTIONS(2794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117745,7 +117413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1919), 38, + ACTIONS(2796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117784,62 +117452,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24003] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7223] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1119), 2, sym_line_comment, - ACTIONS(2141), 7, + sym_block_comment, + ACTIONS(980), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(978), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2143), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24057] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7283] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1120), 2, sym_line_comment, - ACTIONS(1913), 7, + sym_block_comment, + ACTIONS(2790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117847,7 +117523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1915), 38, + ACTIONS(2792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117886,11 +117562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24111] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7343] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1121), 2, sym_line_comment, - ACTIONS(2145), 7, + sym_block_comment, + ACTIONS(2260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117898,7 +117578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2147), 38, + ACTIONS(2262), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117937,11 +117617,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24165] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1122), 2, sym_line_comment, - ACTIONS(2149), 7, + sym_block_comment, + ACTIONS(2782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117949,7 +117633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2151), 38, + ACTIONS(2784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117988,62 +117672,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24219] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7463] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1123), 2, sym_line_comment, - ACTIONS(2161), 7, + sym_block_comment, + ACTIONS(3416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3414), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2163), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24273] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7523] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1124), 2, sym_line_comment, - ACTIONS(1889), 7, + sym_block_comment, + ACTIONS(2212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118051,7 +117743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1891), 38, + ACTIONS(2214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118090,11 +117782,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24327] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7583] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1125), 2, sym_line_comment, - ACTIONS(2173), 7, + sym_block_comment, + ACTIONS(2200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118102,7 +117798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2175), 38, + ACTIONS(2202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118141,11 +117837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24381] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7643] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1126), 2, sym_line_comment, - ACTIONS(2177), 7, + sym_block_comment, + ACTIONS(2754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118153,7 +117853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2179), 38, + ACTIONS(2756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118192,11 +117892,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24435] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7703] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1127), 2, sym_line_comment, - ACTIONS(2187), 7, + sym_block_comment, + ACTIONS(2192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118204,7 +117908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2189), 38, + ACTIONS(2194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118243,62 +117947,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24489] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7763] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1128), 2, sym_line_comment, - ACTIONS(3516), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3514), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24543] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1885), 7, + ACTIONS(2750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118306,7 +117963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1887), 38, + ACTIONS(2752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118345,11 +118002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24597] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7823] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1129), 2, sym_line_comment, - ACTIONS(2195), 7, + sym_block_comment, + ACTIONS(2726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118357,7 +118018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2197), 38, + ACTIONS(2728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118396,11 +118057,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24651] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7883] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1130), 2, sym_line_comment, - ACTIONS(2025), 7, + sym_block_comment, + ACTIONS(2714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118408,7 +118073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2027), 38, + ACTIONS(2716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118447,62 +118112,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24705] = 3, - ACTIONS(3), 2, - sym_block_comment, + [7943] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1131), 2, sym_line_comment, - ACTIONS(994), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(992), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24759] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1993), 7, + ACTIONS(2180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118510,7 +118128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1995), 38, + ACTIONS(2182), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118549,11 +118167,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24813] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8003] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1132), 2, sym_line_comment, - ACTIONS(2009), 7, + sym_block_comment, + ACTIONS(2146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118561,7 +118183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2011), 38, + ACTIONS(2148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118600,11 +118222,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24867] = 3, - ACTIONS(3), 2, + [8063] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1133), 2, + sym_line_comment, sym_block_comment, + ACTIONS(956), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(954), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [8123] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1134), 2, sym_line_comment, - ACTIONS(2017), 7, + sym_block_comment, + ACTIONS(2698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118612,7 +118293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2019), 38, + ACTIONS(2700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118651,62 +118332,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24921] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8183] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1135), 2, sym_line_comment, - ACTIONS(998), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(996), 30, + sym_block_comment, + ACTIONS(2682), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24975] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2684), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8243] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1136), 2, sym_line_comment, - ACTIONS(2203), 7, + sym_block_comment, + ACTIONS(2678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118714,7 +118403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2205), 38, + ACTIONS(2680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118753,11 +118442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25029] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8303] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1137), 2, sym_line_comment, - ACTIONS(2041), 7, + sym_block_comment, + ACTIONS(2666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118765,7 +118458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2043), 38, + ACTIONS(2668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118804,62 +118497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25083] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8363] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1138), 2, sym_line_comment, - ACTIONS(882), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(880), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25137] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2381), 7, + ACTIONS(2646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118867,7 +118513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2383), 38, + ACTIONS(2648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118906,11 +118552,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25191] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8423] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1139), 2, sym_line_comment, - ACTIONS(2085), 7, + sym_block_comment, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118918,7 +118568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2087), 38, + ACTIONS(2116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118957,11 +118607,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25245] = 3, - ACTIONS(3), 2, + [8483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1140), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3420), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3418), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [8543] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1141), 2, sym_line_comment, - ACTIONS(2101), 7, + sym_block_comment, + ACTIONS(2610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118969,7 +118678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2103), 38, + ACTIONS(2612), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119008,11 +118717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25299] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8603] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1142), 2, sym_line_comment, - ACTIONS(2207), 7, + sym_block_comment, + ACTIONS(2272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119020,7 +118733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2209), 38, + ACTIONS(2274), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119059,11 +118772,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25353] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1143), 2, sym_line_comment, - ACTIONS(2211), 7, + sym_block_comment, + ACTIONS(2594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119071,7 +118788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2213), 38, + ACTIONS(2596), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119110,11 +118827,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25407] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8723] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1144), 2, sym_line_comment, - ACTIONS(2215), 7, + sym_block_comment, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119122,7 +118843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2217), 38, + ACTIONS(2358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119161,11 +118882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25461] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8783] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1145), 2, sym_line_comment, - ACTIONS(3520), 15, + sym_block_comment, + ACTIONS(904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119181,7 +118906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3518), 30, + ACTIONS(902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119212,11 +118937,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25515] = 3, - ACTIONS(3), 2, + [8843] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1146), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3424), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3422), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [8903] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1147), 2, sym_line_comment, - ACTIONS(2219), 7, + sym_block_comment, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119224,7 +119008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2221), 38, + ACTIONS(2362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119263,11 +119047,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25569] = 3, - ACTIONS(3), 2, - sym_block_comment, + [8963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1148), 2, sym_line_comment, - ACTIONS(3524), 15, + sym_block_comment, + ACTIONS(3428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119283,7 +119071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3522), 30, + ACTIONS(3426), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119314,11 +119102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25623] = 3, - ACTIONS(3), 2, - sym_block_comment, + [9023] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1149), 2, sym_line_comment, - ACTIONS(2253), 7, + sym_block_comment, + ACTIONS(2160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119326,7 +119118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2255), 38, + ACTIONS(2162), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119365,11 +119157,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25677] = 3, - ACTIONS(3), 2, + [9083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1150), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3372), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3368), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [9143] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1151), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3432), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3430), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [9203] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1152), 2, sym_line_comment, - ACTIONS(1002), 15, + sym_block_comment, + ACTIONS(3436), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119385,7 +119291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1000), 30, + ACTIONS(3434), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119416,11 +119322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25731] = 3, - ACTIONS(3), 2, - sym_block_comment, + [9263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1153), 2, sym_line_comment, - ACTIONS(3528), 15, + sym_block_comment, + ACTIONS(3440), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119436,7 +119346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3526), 30, + ACTIONS(3438), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119467,11 +119377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25785] = 3, - ACTIONS(3), 2, - sym_block_comment, + [9323] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1154), 2, sym_line_comment, - ACTIONS(3532), 15, + sym_block_comment, + ACTIONS(3444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119487,7 +119401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3530), 30, + ACTIONS(3442), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119518,11 +119432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25839] = 3, - ACTIONS(3), 2, - sym_block_comment, + [9383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1155), 2, sym_line_comment, - ACTIONS(3536), 15, + sym_block_comment, + ACTIONS(3196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119538,7 +119456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3534), 30, + ACTIONS(3194), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119569,11 +119487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25893] = 3, - ACTIONS(3), 2, - sym_block_comment, + [9443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1156), 2, sym_line_comment, - ACTIONS(3540), 15, + sym_block_comment, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119589,7 +119511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3538), 30, + ACTIONS(3446), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119620,11 +119542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25947] = 3, - ACTIONS(3), 2, - sym_block_comment, + [9503] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1157), 2, sym_line_comment, - ACTIONS(3544), 15, + sym_block_comment, + ACTIONS(3452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119640,7 +119566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3542), 30, + ACTIONS(3450), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119671,11 +119597,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26001] = 3, - ACTIONS(3), 2, + [9563] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1158), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1765), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1767), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9623] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1159), 2, + sym_line_comment, sym_block_comment, + ACTIONS(1785), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1787), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9683] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1160), 2, sym_line_comment, - ACTIONS(2269), 7, + sym_block_comment, + ACTIONS(1777), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119683,7 +119723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2271), 38, + ACTIONS(1779), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119722,11 +119762,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26055] = 3, - ACTIONS(3), 2, + [9743] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1161), 2, + sym_line_comment, sym_block_comment, + ACTIONS(1781), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1783), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9803] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1162), 2, sym_line_comment, - ACTIONS(3548), 15, + sym_block_comment, + ACTIONS(3456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119742,7 +119841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3546), 30, + ACTIONS(3454), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119773,62 +119872,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26109] = 3, - ACTIONS(3), 2, - sym_block_comment, + [9863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1163), 2, sym_line_comment, - ACTIONS(3552), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + sym_block_comment, + ACTIONS(1809), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3550), 30, + sym_metavariable, + ACTIONS(1811), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9923] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1164), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1813), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26163] = 3, - ACTIONS(3), 2, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1815), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9983] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1165), 2, + sym_line_comment, sym_block_comment, + ACTIONS(1845), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1847), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1166), 2, sym_line_comment, - ACTIONS(3556), 15, + sym_block_comment, + ACTIONS(3460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119844,7 +120061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3554), 30, + ACTIONS(3458), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119875,11 +120092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26217] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10103] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1167), 2, sym_line_comment, - ACTIONS(2231), 7, + sym_block_comment, + ACTIONS(1853), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119887,7 +120108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2233), 38, + ACTIONS(1855), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119926,11 +120147,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26271] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10163] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1168), 2, sym_line_comment, - ACTIONS(2241), 7, + sym_block_comment, + ACTIONS(1857), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119938,7 +120163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2243), 38, + ACTIONS(1859), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119977,11 +120202,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26325] = 3, - ACTIONS(3), 2, + [10223] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3464), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3462), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [10283] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1170), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3466), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [10343] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1171), 2, sym_line_comment, - ACTIONS(2245), 7, + sym_block_comment, + ACTIONS(2156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119989,7 +120328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2247), 38, + ACTIONS(2158), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120028,11 +120367,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26379] = 3, - ACTIONS(3), 2, + [10403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1172), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3472), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3470), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [10463] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1173), 2, sym_line_comment, - ACTIONS(2273), 7, + sym_block_comment, + ACTIONS(2252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120040,7 +120438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2275), 38, + ACTIONS(2254), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120079,11 +120477,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26433] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10523] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1174), 2, sym_line_comment, - ACTIONS(3560), 15, + sym_block_comment, + ACTIONS(3476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -120099,7 +120501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3558), 30, + ACTIONS(3474), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120130,11 +120532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26487] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10583] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1175), 2, sym_line_comment, - ACTIONS(2277), 7, + sym_block_comment, + ACTIONS(2328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120142,7 +120548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2279), 38, + ACTIONS(2330), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120181,11 +120587,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26541] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10643] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1176), 2, sym_line_comment, - ACTIONS(2281), 7, + sym_block_comment, + ACTIONS(2284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120193,7 +120603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2283), 38, + ACTIONS(2286), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120232,11 +120642,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26595] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10703] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1177), 2, sym_line_comment, - ACTIONS(2305), 7, + sym_block_comment, + ACTIONS(2582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120244,7 +120658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2307), 38, + ACTIONS(2584), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120283,11 +120697,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26649] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10763] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1178), 2, sym_line_comment, - ACTIONS(2309), 7, + sym_block_comment, + ACTIONS(2738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120295,7 +120713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2311), 38, + ACTIONS(2740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120334,62 +120752,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26703] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10823] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1179), 2, sym_line_comment, - ACTIONS(3292), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3290), 30, + sym_block_comment, + ACTIONS(2292), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26757] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2294), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10883] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1180), 2, sym_line_comment, - ACTIONS(3470), 15, + sym_block_comment, + ACTIONS(1000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -120405,7 +120831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 30, + ACTIONS(998), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120436,11 +120862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26811] = 3, - ACTIONS(3), 2, - sym_block_comment, + [10943] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1181), 2, sym_line_comment, - ACTIONS(2317), 7, + sym_block_comment, + ACTIONS(2304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120448,7 +120878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2319), 38, + ACTIONS(2306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120487,62 +120917,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26865] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11003] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1182), 2, sym_line_comment, - ACTIONS(3564), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3562), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26919] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2321), 7, + ACTIONS(2392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120550,7 +120933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2323), 38, + ACTIONS(2394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120589,11 +120972,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26973] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11063] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1183), 2, sym_line_comment, - ACTIONS(2325), 7, + sym_block_comment, + ACTIONS(2312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120601,7 +120988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2327), 38, + ACTIONS(2314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120640,11 +121027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27027] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11123] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1184), 2, sym_line_comment, - ACTIONS(2333), 7, + sym_block_comment, + ACTIONS(2228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120652,7 +121043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2335), 38, + ACTIONS(2230), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120691,11 +121082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27081] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11183] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1185), 2, sym_line_comment, - ACTIONS(2337), 7, + sym_block_comment, + ACTIONS(1797), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120703,7 +121098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2339), 38, + ACTIONS(1799), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120742,11 +121137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27135] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11243] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1186), 2, sym_line_comment, - ACTIONS(1815), 7, + sym_block_comment, + ACTIONS(2324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120754,7 +121153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1817), 38, + ACTIONS(2326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120793,113 +121192,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27189] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11303] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1187), 2, sym_line_comment, - ACTIONS(3568), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3566), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27243] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3572), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3570), 30, + ACTIONS(1825), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27297] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1827), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11363] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1188), 2, sym_line_comment, - ACTIONS(2457), 7, + sym_block_comment, + ACTIONS(1865), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120907,7 +121263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2459), 38, + ACTIONS(1867), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120946,11 +121302,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27351] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11423] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1189), 2, sym_line_comment, - ACTIONS(2509), 7, + sym_block_comment, + ACTIONS(2332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120958,7 +121318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2511), 38, + ACTIONS(2334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120997,11 +121357,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27405] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1190), 2, sym_line_comment, - ACTIONS(2529), 7, + sym_block_comment, + ACTIONS(1913), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121009,7 +121373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2531), 38, + ACTIONS(1915), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121048,113 +121412,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27459] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11543] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1191), 2, sym_line_comment, - ACTIONS(3576), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3574), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27513] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(970), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(968), 30, + ACTIONS(1921), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27567] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1923), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11603] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1192), 2, sym_line_comment, - ACTIONS(2613), 7, + sym_block_comment, + ACTIONS(1703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121162,7 +121483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2615), 38, + ACTIONS(1705), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121201,64 +121522,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27621] = 5, - ACTIONS(3340), 1, - anon_sym_COLON_COLON, - ACTIONS(3578), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + [11663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1193), 2, sym_line_comment, - ACTIONS(3338), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3336), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27679] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2621), 7, + ACTIONS(2016), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121266,7 +121538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2623), 38, + ACTIONS(2018), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121305,11 +121577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27733] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11723] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1194), 2, sym_line_comment, - ACTIONS(2629), 7, + sym_block_comment, + ACTIONS(2104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121317,7 +121593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2631), 38, + ACTIONS(2106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121356,11 +121632,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27787] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11783] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1195), 2, sym_line_comment, - ACTIONS(2341), 7, + sym_block_comment, + ACTIONS(2172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121368,7 +121648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2343), 38, + ACTIONS(2174), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121407,11 +121687,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27841] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11843] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1196), 2, sym_line_comment, - ACTIONS(2641), 7, + sym_block_comment, + ACTIONS(2184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121419,7 +121703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2643), 38, + ACTIONS(2186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121458,11 +121742,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27895] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11903] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1197), 2, sym_line_comment, - ACTIONS(2645), 7, + sym_block_comment, + ACTIONS(2188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121470,7 +121758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2647), 38, + ACTIONS(2190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121509,11 +121797,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27949] = 3, - ACTIONS(3), 2, - sym_block_comment, + [11963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1198), 2, sym_line_comment, - ACTIONS(2349), 7, + sym_block_comment, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121521,7 +121813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2351), 38, + ACTIONS(2382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121560,11 +121852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28003] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12023] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1199), 2, sym_line_comment, - ACTIONS(2661), 7, + sym_block_comment, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121572,7 +121868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2663), 38, + ACTIONS(2386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121611,11 +121907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28057] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1200), 2, sym_line_comment, - ACTIONS(2365), 7, + sym_block_comment, + ACTIONS(2404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121623,7 +121923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2367), 38, + ACTIONS(2406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121662,11 +121962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28111] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12143] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1201), 2, sym_line_comment, - ACTIONS(2673), 7, + sym_block_comment, + ACTIONS(2410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121674,7 +121978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2675), 38, + ACTIONS(2412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121713,11 +122017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28165] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12203] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1202), 2, sym_line_comment, - ACTIONS(2369), 7, + sym_block_comment, + ACTIONS(2482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121725,7 +122033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2371), 38, + ACTIONS(2484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121764,11 +122072,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28219] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1203), 2, sym_line_comment, - ACTIONS(2778), 7, + sym_block_comment, + ACTIONS(2490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121776,7 +122088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2780), 38, + ACTIONS(2492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121815,11 +122127,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28273] = 3, - ACTIONS(3), 2, + [12323] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3250), 1, + anon_sym_COLON_COLON, + ACTIONS(3478), 1, + anon_sym_BANG, + STATE(1204), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3248), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3246), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12387] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1205), 2, sym_line_comment, - ACTIONS(2373), 7, + sym_block_comment, + ACTIONS(2502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121827,7 +122200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2375), 38, + ACTIONS(2504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121866,11 +122239,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28327] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12447] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1206), 2, sym_line_comment, - ACTIONS(2814), 7, + sym_block_comment, + ACTIONS(2558), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121878,7 +122255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2816), 38, + ACTIONS(2560), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121917,11 +122294,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28381] = 3, - ACTIONS(3), 2, + [12507] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1207), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3482), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3480), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12567] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1208), 2, sym_line_comment, - ACTIONS(2830), 7, + sym_block_comment, + ACTIONS(2566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121929,7 +122365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2832), 38, + ACTIONS(2568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121968,11 +122404,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28435] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12627] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1209), 2, sym_line_comment, - ACTIONS(2834), 7, + sym_block_comment, + ACTIONS(2570), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121980,7 +122420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2836), 38, + ACTIONS(2572), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122019,11 +122459,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28489] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12687] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1210), 2, sym_line_comment, - ACTIONS(2838), 7, + sym_block_comment, + ACTIONS(2372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122031,7 +122475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2840), 38, + ACTIONS(2374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122070,11 +122514,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28543] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12747] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1211), 2, sym_line_comment, - ACTIONS(2854), 7, + sym_block_comment, + ACTIONS(2622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122082,7 +122530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2856), 38, + ACTIONS(2624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122121,11 +122569,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28597] = 3, - ACTIONS(3), 2, + [12807] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1212), 2, + sym_line_comment, sym_block_comment, + ACTIONS(924), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(922), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12867] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1213), 2, sym_line_comment, - ACTIONS(2862), 7, + sym_block_comment, + ACTIONS(2486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122133,7 +122640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2864), 38, + ACTIONS(2488), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122172,11 +122679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28651] = 3, - ACTIONS(3), 2, - sym_block_comment, + [12927] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1214), 2, sym_line_comment, - ACTIONS(2870), 7, + sym_block_comment, + ACTIONS(2862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122184,7 +122695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2872), 38, + ACTIONS(2864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122223,11 +122734,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28705] = 3, - ACTIONS(3), 2, + [12987] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1215), 2, + sym_line_comment, sym_block_comment, + ACTIONS(994), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(996), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13047] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1216), 2, sym_line_comment, - ACTIONS(2878), 7, + sym_block_comment, + ACTIONS(2850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122235,7 +122805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2880), 38, + ACTIONS(2852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122274,62 +122844,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28759] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13107] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1217), 2, sym_line_comment, - ACTIONS(2886), 7, + sym_block_comment, + ACTIONS(984), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(982), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2888), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28813] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13167] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1218), 2, sym_line_comment, - ACTIONS(2946), 7, + sym_block_comment, + ACTIONS(2770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122337,7 +122915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2948), 38, + ACTIONS(2772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122376,62 +122954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28867] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13227] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1219), 2, sym_line_comment, - ACTIONS(1006), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1004), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28921] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2910), 7, + ACTIONS(2762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122439,7 +122970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2912), 38, + ACTIONS(2764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122478,11 +123009,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28975] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13287] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1220), 2, sym_line_comment, - ACTIONS(2914), 7, + sym_block_comment, + ACTIONS(2758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122490,7 +123025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2916), 38, + ACTIONS(2760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122529,11 +123064,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29029] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13347] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1221), 2, sym_line_comment, - ACTIONS(2958), 7, + sym_block_comment, + ACTIONS(2746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122541,7 +123080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2960), 38, + ACTIONS(2748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122580,11 +123119,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29083] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13407] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1222), 2, sym_line_comment, - ACTIONS(2954), 7, + sym_block_comment, + ACTIONS(2742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122592,7 +123135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2956), 38, + ACTIONS(2744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122631,11 +123174,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29137] = 3, - ACTIONS(3), 2, + [13467] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1223), 2, + sym_line_comment, sym_block_comment, + ACTIONS(920), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(918), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13527] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1224), 2, sym_line_comment, - ACTIONS(2397), 7, + sym_block_comment, + ACTIONS(2722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122643,7 +123245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2399), 38, + ACTIONS(2724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122682,11 +123284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29191] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13587] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1225), 2, sym_line_comment, - ACTIONS(2950), 7, + sym_block_comment, + ACTIONS(2642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122694,7 +123300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2952), 38, + ACTIONS(2644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122733,11 +123339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29245] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13647] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1226), 2, sym_line_comment, - ACTIONS(2942), 7, + sym_block_comment, + ACTIONS(2546), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122745,7 +123355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2944), 38, + ACTIONS(2548), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122784,11 +123394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29299] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13707] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1227), 2, sym_line_comment, - ACTIONS(2409), 7, + sym_block_comment, + ACTIONS(2466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122796,7 +123410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2411), 38, + ACTIONS(2468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122835,62 +123449,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29353] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13767] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1228), 2, sym_line_comment, - ACTIONS(3582), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3580), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29407] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2445), 7, + ACTIONS(2630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122898,7 +123465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2447), 38, + ACTIONS(2632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122937,62 +123504,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29461] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13827] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1229), 2, sym_line_comment, - ACTIONS(904), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(902), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29515] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2794), 7, + ACTIONS(2618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123000,7 +123520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2796), 38, + ACTIONS(2620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123039,62 +123559,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29569] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13887] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1230), 2, sym_line_comment, - ACTIONS(2449), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2451), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29623] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2461), 7, + ACTIONS(2614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123102,7 +123575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2463), 38, + ACTIONS(2616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123141,62 +123614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29677] = 3, - ACTIONS(3), 2, - sym_block_comment, + [13947] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1231), 2, sym_line_comment, - ACTIONS(2465), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2467), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29731] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2786), 7, + ACTIONS(2542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123204,7 +123630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2788), 38, + ACTIONS(2544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123243,11 +123669,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29785] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14007] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1232), 2, sym_line_comment, - ACTIONS(2469), 7, + sym_block_comment, + ACTIONS(2364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123255,7 +123685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2471), 38, + ACTIONS(2366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123294,62 +123724,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29839] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14067] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1233), 2, sym_line_comment, - ACTIONS(2473), 7, + sym_block_comment, + ACTIONS(912), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(910), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2475), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29893] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14127] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1234), 2, sym_line_comment, - ACTIONS(2481), 7, + sym_block_comment, + ACTIONS(2244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123357,7 +123795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2483), 38, + ACTIONS(2246), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123396,11 +123834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29947] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14187] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1235), 2, sym_line_comment, - ACTIONS(2782), 7, + sym_block_comment, + ACTIONS(2204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123408,7 +123850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2784), 38, + ACTIONS(2206), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123447,11 +123889,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30001] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14247] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1236), 2, sym_line_comment, - ACTIONS(2485), 7, + sym_block_comment, + ACTIONS(2196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123459,7 +123905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2487), 38, + ACTIONS(2198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123498,11 +123944,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30055] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14307] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1237), 2, sym_line_comment, - ACTIONS(2501), 7, + sym_block_comment, + ACTIONS(2336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123510,7 +123960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2503), 38, + ACTIONS(2338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123549,11 +123999,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30109] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14367] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1238), 2, sym_line_comment, - ACTIONS(2772), 7, + sym_block_comment, + ACTIONS(1829), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123561,7 +124015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2774), 38, + ACTIONS(1831), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123600,11 +124054,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30163] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14427] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1239), 2, sym_line_comment, - ACTIONS(2768), 7, + sym_block_comment, + ACTIONS(2048), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123612,7 +124070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2770), 38, + ACTIONS(2050), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123651,170 +124109,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30217] = 6, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3588), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3584), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30277] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(982), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(980), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30331] = 6, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, + [14487] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1240), 2, sym_line_comment, - ACTIONS(3596), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3594), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30391] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2505), 7, + ACTIONS(2052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123822,7 +124125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2507), 38, + ACTIONS(2054), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123861,11 +124164,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30445] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14547] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1241), 2, sym_line_comment, - ACTIONS(2513), 7, + sym_block_comment, + ACTIONS(2060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123873,7 +124180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2515), 38, + ACTIONS(2062), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123912,11 +124219,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30499] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14607] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1242), 2, sym_line_comment, - ACTIONS(2517), 7, + sym_block_comment, + ACTIONS(2068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123924,7 +124235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2519), 38, + ACTIONS(2070), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123963,11 +124274,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30553] = 3, - ACTIONS(3), 2, + [14667] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1243), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3484), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14727] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1244), 2, sym_line_comment, - ACTIONS(2589), 7, + sym_block_comment, + ACTIONS(2092), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123975,7 +124345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2591), 38, + ACTIONS(2094), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124014,11 +124384,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30607] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14787] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1245), 2, sym_line_comment, - ACTIONS(2521), 7, + sym_block_comment, + ACTIONS(2108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124026,7 +124400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2523), 38, + ACTIONS(2110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124065,11 +124439,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30661] = 3, - ACTIONS(3), 2, - sym_block_comment, + [14847] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1246), 2, sym_line_comment, - ACTIONS(2525), 7, + sym_block_comment, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124077,7 +124455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2527), 38, + ACTIONS(2120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124116,11 +124494,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30715] = 3, - ACTIONS(3), 2, + [14907] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1247), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3486), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3484), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14967] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1248), 2, sym_line_comment, - ACTIONS(2577), 7, + sym_block_comment, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124128,7 +124565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2579), 38, + ACTIONS(2128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124167,11 +124604,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30769] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15027] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1249), 2, sym_line_comment, - ACTIONS(2533), 7, + sym_block_comment, + ACTIONS(2134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124179,7 +124620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2535), 38, + ACTIONS(2136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124218,11 +124659,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30823] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15087] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1250), 2, sym_line_comment, - ACTIONS(2537), 7, + sym_block_comment, + ACTIONS(2150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124230,7 +124675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2539), 38, + ACTIONS(2152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124269,11 +124714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30877] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15147] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1251), 2, sym_line_comment, - ACTIONS(2565), 7, + sym_block_comment, + ACTIONS(2164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124281,7 +124730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2567), 38, + ACTIONS(2166), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124320,11 +124769,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30931] = 3, - ACTIONS(3), 2, + [15207] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1252), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3490), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3488), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15267] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1253), 2, sym_line_comment, - ACTIONS(2541), 7, + sym_block_comment, + ACTIONS(2168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124332,7 +124840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2543), 38, + ACTIONS(2170), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124371,11 +124879,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30985] = 3, - ACTIONS(3), 2, + [15327] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + STATE(1254), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3496), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3492), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15393] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1255), 2, sym_line_comment, - ACTIONS(2545), 7, + sym_block_comment, + ACTIONS(2176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124383,7 +124953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2547), 38, + ACTIONS(2178), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124422,11 +124992,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31039] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15453] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1256), 2, sym_line_comment, - ACTIONS(2549), 7, + sym_block_comment, + ACTIONS(2344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124434,7 +125008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2551), 38, + ACTIONS(2346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124473,11 +125047,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31093] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15513] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1257), 2, sym_line_comment, - ACTIONS(2553), 7, + sym_block_comment, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124485,7 +125063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2555), 38, + ACTIONS(2370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124524,11 +125102,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31147] = 3, - ACTIONS(3), 2, + [15573] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1258), 2, + sym_line_comment, sym_block_comment, + ACTIONS(870), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(868), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15633] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1259), 2, sym_line_comment, - ACTIONS(2561), 7, + sym_block_comment, + ACTIONS(2658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124536,7 +125173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2563), 38, + ACTIONS(2660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124575,11 +125212,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31201] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15693] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1260), 2, sym_line_comment, - ACTIONS(2581), 7, + sym_block_comment, + ACTIONS(2670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124587,7 +125228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2583), 38, + ACTIONS(2672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124626,11 +125267,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31255] = 3, - ACTIONS(3), 2, + [15753] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1261), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3504), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3502), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15813] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1262), 2, sym_line_comment, - ACTIONS(2489), 7, + sym_block_comment, + ACTIONS(2830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124638,7 +125338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2491), 38, + ACTIONS(2832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124677,11 +125377,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31309] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15873] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1263), 2, sym_line_comment, - ACTIONS(2593), 7, + sym_block_comment, + ACTIONS(2814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124689,7 +125393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2595), 38, + ACTIONS(2816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124728,11 +125432,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31363] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15933] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1264), 2, sym_line_comment, - ACTIONS(1010), 15, + sym_block_comment, + ACTIONS(3508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -124748,7 +125456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1008), 30, + ACTIONS(3506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124779,11 +125487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31417] = 3, - ACTIONS(3), 2, - sym_block_comment, + [15993] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1265), 2, sym_line_comment, - ACTIONS(2605), 7, + sym_block_comment, + ACTIONS(2786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124791,7 +125503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2607), 38, + ACTIONS(2788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124830,11 +125542,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31471] = 3, - ACTIONS(3), 2, + [16053] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1266), 2, + sym_line_comment, sym_block_comment, + ACTIONS(2766), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2768), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16113] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1267), 2, sym_line_comment, - ACTIONS(2617), 7, + sym_block_comment, + ACTIONS(2730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124842,7 +125613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2619), 38, + ACTIONS(2732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124881,11 +125652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31525] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16173] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1268), 2, sym_line_comment, - ACTIONS(2625), 7, + sym_block_comment, + ACTIONS(2706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124893,7 +125668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2627), 38, + ACTIONS(2708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124932,11 +125707,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31579] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16233] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1269), 2, sym_line_comment, - ACTIONS(876), 15, + sym_block_comment, + ACTIONS(3512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -124952,7 +125731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(874), 30, + ACTIONS(3510), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124983,11 +125762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31633] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16293] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1270), 2, sym_line_comment, - ACTIONS(2798), 7, + sym_block_comment, + ACTIONS(2702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124995,7 +125778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2800), 38, + ACTIONS(2704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125034,11 +125817,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31687] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16353] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1271), 2, sym_line_comment, - ACTIONS(3600), 15, + sym_block_comment, + ACTIONS(3516), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125054,7 +125841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3598), 30, + ACTIONS(3514), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125085,11 +125872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31741] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16413] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1272), 2, sym_line_comment, - ACTIONS(2810), 7, + sym_block_comment, + ACTIONS(2694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125097,7 +125888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2812), 38, + ACTIONS(2696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125136,11 +125927,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31795] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16473] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1273), 2, sym_line_comment, - ACTIONS(3604), 15, + sym_block_comment, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125156,7 +125951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3602), 30, + ACTIONS(3518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125187,11 +125982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31849] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16533] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1274), 2, sym_line_comment, - ACTIONS(3600), 15, + sym_block_comment, + ACTIONS(3524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125207,7 +126006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3598), 30, + ACTIONS(3522), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125238,62 +126037,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31903] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16593] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1275), 2, sym_line_comment, - ACTIONS(2842), 7, + sym_block_comment, + ACTIONS(894), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(892), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2844), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31957] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16653] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1276), 2, sym_line_comment, - ACTIONS(2850), 7, + sym_block_comment, + ACTIONS(2056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125301,7 +126108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2852), 38, + ACTIONS(2058), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125340,11 +126147,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32011] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16713] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1277), 2, sym_line_comment, - ACTIONS(2906), 7, + sym_block_comment, + ACTIONS(2690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125352,7 +126163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2908), 38, + ACTIONS(2692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125391,11 +126202,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32065] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16773] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1278), 2, sym_line_comment, - ACTIONS(2930), 7, + sym_block_comment, + ACTIONS(2032), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125403,7 +126218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2932), 38, + ACTIONS(2034), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125442,11 +126257,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32119] = 3, - ACTIONS(3), 2, + [16833] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + STATE(1279), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3528), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3526), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16899] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1280), 2, sym_line_comment, - ACTIONS(3608), 15, + sym_block_comment, + ACTIONS(3532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125462,7 +126339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3606), 30, + ACTIONS(3530), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125493,62 +126370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32173] = 3, - ACTIONS(3), 2, - sym_block_comment, + [16959] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1281), 2, sym_line_comment, - ACTIONS(2970), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2972), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32227] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2978), 7, + ACTIONS(2686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125556,7 +126386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2980), 38, + ACTIONS(2688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125595,164 +126425,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32281] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17019] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1282), 2, sym_line_comment, - ACTIONS(2974), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2976), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32335] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2966), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(1468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, - sym_metavariable, - ACTIONS(2968), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32389] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2962), 7, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1470), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2964), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32443] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17079] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1283), 2, sym_line_comment, - ACTIONS(2361), 7, + sym_block_comment, + ACTIONS(2024), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125760,7 +126496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2363), 38, + ACTIONS(2026), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125799,62 +126535,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32497] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17139] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_BANG, + ACTIONS(3534), 1, + anon_sym_COLON_COLON, + STATE(1284), 2, sym_line_comment, - ACTIONS(2938), 7, + sym_block_comment, + ACTIONS(994), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(996), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2940), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32551] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17203] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1285), 2, sym_line_comment, - ACTIONS(2934), 7, + sym_block_comment, + ACTIONS(2662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125862,7 +126608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2936), 38, + ACTIONS(2664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125901,62 +126647,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32605] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1286), 2, sym_line_comment, - ACTIONS(3612), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3610), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32659] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2926), 7, + ACTIONS(2654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125964,7 +126663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2928), 38, + ACTIONS(2656), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126003,62 +126702,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32713] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17323] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1287), 2, sym_line_comment, - ACTIONS(3616), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3614), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32767] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3620), 15, + ACTIONS(3538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126074,7 +126726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3618), 30, + ACTIONS(3536), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126105,11 +126757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32821] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1288), 2, sym_line_comment, - ACTIONS(3624), 15, + sym_block_comment, + ACTIONS(3542), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126125,7 +126781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3622), 30, + ACTIONS(3540), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126156,11 +126812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32875] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1289), 2, sym_line_comment, - ACTIONS(2922), 7, + sym_block_comment, + ACTIONS(1805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126168,7 +126828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2924), 38, + ACTIONS(1807), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126207,11 +126867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32929] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17503] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1290), 2, sym_line_comment, - ACTIONS(2902), 7, + sym_block_comment, + ACTIONS(2638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126219,7 +126883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2904), 38, + ACTIONS(2640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126258,62 +126922,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32983] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17563] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1291), 2, sym_line_comment, - ACTIONS(870), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(868), 30, + sym_block_comment, + ACTIONS(1801), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33037] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1803), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17623] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1292), 2, sym_line_comment, - ACTIONS(1811), 7, + sym_block_comment, + ACTIONS(1711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126321,7 +126993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1813), 38, + ACTIONS(1713), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126360,11 +127032,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33091] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17683] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1293), 2, sym_line_comment, - ACTIONS(2005), 7, + sym_block_comment, + ACTIONS(2626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126372,7 +127048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2007), 38, + ACTIONS(2628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126411,11 +127087,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33145] = 3, - ACTIONS(3), 2, + [17743] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1294), 2, + sym_line_comment, sym_block_comment, + ACTIONS(900), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(898), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17803] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1295), 2, sym_line_comment, - ACTIONS(2898), 7, + sym_block_comment, + ACTIONS(2498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126423,7 +127158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2900), 38, + ACTIONS(2500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126462,11 +127197,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33199] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1296), 2, sym_line_comment, - ACTIONS(1590), 15, + sym_block_comment, + ACTIONS(1518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126482,7 +127221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1592), 30, + ACTIONS(1520), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126513,11 +127252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33253] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17923] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1297), 2, sym_line_comment, - ACTIONS(2894), 7, + sym_block_comment, + ACTIONS(1707), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126525,7 +127268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2896), 38, + ACTIONS(1709), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126564,11 +127307,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33307] = 3, - ACTIONS(3), 2, - sym_block_comment, + [17983] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1298), 2, sym_line_comment, - ACTIONS(3628), 15, + sym_block_comment, + ACTIONS(3546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126584,7 +127331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3626), 30, + ACTIONS(3544), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126615,15 +127362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33361] = 5, - ACTIONS(3264), 1, - anon_sym_BANG, - ACTIONS(3630), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [18043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1299), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126639,15 +127386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 28, + ACTIONS(926), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -126668,11 +127417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33419] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18103] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1300), 2, sym_line_comment, - ACTIONS(2882), 7, + sym_block_comment, + ACTIONS(1773), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126680,7 +127433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2884), 38, + ACTIONS(1775), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126719,62 +127472,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33473] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18163] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1301), 2, sym_line_comment, - ACTIONS(1620), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1622), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33527] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1881), 7, + ACTIONS(2474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126782,7 +127488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1883), 38, + ACTIONS(2476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126821,11 +127527,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33581] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18223] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1302), 2, sym_line_comment, - ACTIONS(1877), 7, + sym_block_comment, + ACTIONS(1793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126833,7 +127543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1879), 38, + ACTIONS(1795), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126872,11 +127582,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33635] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18283] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1303), 2, sym_line_comment, - ACTIONS(2874), 7, + sym_block_comment, + ACTIONS(1769), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126884,7 +127598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2876), 38, + ACTIONS(1771), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126923,11 +127637,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33689] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18343] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1304), 2, sym_line_comment, - ACTIONS(2866), 7, + sym_block_comment, + ACTIONS(1821), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126935,7 +127653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2868), 38, + ACTIONS(1823), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126974,11 +127692,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33743] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1305), 2, sym_line_comment, - ACTIONS(2846), 7, + sym_block_comment, + ACTIONS(1833), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126986,7 +127708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2848), 38, + ACTIONS(1835), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127025,11 +127747,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33797] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18463] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1306), 2, sym_line_comment, - ACTIONS(1977), 7, + sym_block_comment, + ACTIONS(2470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127037,7 +127763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1979), 38, + ACTIONS(2472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127076,113 +127802,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33851] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18523] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1307), 2, sym_line_comment, - ACTIONS(952), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(950), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33905] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3634), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3632), 30, + ACTIONS(1905), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33959] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1907), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18583] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1308), 2, sym_line_comment, - ACTIONS(2790), 7, + sym_block_comment, + ACTIONS(2462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127190,7 +127873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2792), 38, + ACTIONS(2464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127229,11 +127912,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34013] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18643] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1309), 2, sym_line_comment, - ACTIONS(2637), 7, + sym_block_comment, + ACTIONS(2458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127241,7 +127928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2639), 38, + ACTIONS(2460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127280,62 +127967,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34067] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18703] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1310), 2, sym_line_comment, - ACTIONS(3638), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3636), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34121] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2453), 7, + ACTIONS(2454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127343,7 +127983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2455), 38, + ACTIONS(2456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127382,113 +128022,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34175] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18763] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1311), 2, sym_line_comment, - ACTIONS(3642), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3640), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34229] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(956), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(954), 30, + ACTIONS(2040), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34283] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2042), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18823] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1312), 2, sym_line_comment, - ACTIONS(2437), 7, + sym_block_comment, + ACTIONS(2044), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127496,7 +128093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2439), 38, + ACTIONS(2046), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127535,11 +128132,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34337] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18883] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1313), 2, sym_line_comment, - ACTIONS(3646), 15, + sym_block_comment, + ACTIONS(972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -127555,7 +128156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3644), 30, + ACTIONS(970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127586,62 +128187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34391] = 3, - ACTIONS(3), 2, - sym_block_comment, + [18943] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1314), 2, sym_line_comment, - ACTIONS(2433), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2435), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34445] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2001), 7, + ACTIONS(2064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127649,7 +128203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2003), 38, + ACTIONS(2066), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127688,11 +128242,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34499] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19003] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1315), 2, sym_line_comment, - ACTIONS(2049), 7, + sym_block_comment, + ACTIONS(2430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127700,7 +128258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2051), 38, + ACTIONS(2432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127739,11 +128297,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34553] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19063] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1316), 2, sym_line_comment, - ACTIONS(2061), 7, + sym_block_comment, + ACTIONS(2422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127751,7 +128313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2063), 38, + ACTIONS(2424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127790,62 +128352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34607] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19123] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1317), 2, sym_line_comment, - ACTIONS(3650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3648), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34661] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3654), 15, + ACTIONS(3550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -127861,7 +128376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3652), 30, + ACTIONS(3548), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127892,11 +128407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34715] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19183] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1318), 2, sym_line_comment, - ACTIONS(2065), 7, + sym_block_comment, + ACTIONS(2072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127904,7 +128423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2067), 38, + ACTIONS(2074), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127943,11 +128462,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34769] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19243] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1319), 2, sym_line_comment, - ACTIONS(2073), 7, + sym_block_comment, + ACTIONS(2076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127955,7 +128478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2075), 38, + ACTIONS(2078), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127994,62 +128517,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34823] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19303] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1320), 2, sym_line_comment, - ACTIONS(2429), 7, + sym_block_comment, + ACTIONS(3554), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3552), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2431), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34877] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19363] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1321), 2, sym_line_comment, - ACTIONS(2425), 7, + sym_block_comment, + ACTIONS(2320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128057,7 +128588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2427), 38, + ACTIONS(2322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128096,11 +128627,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34931] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19423] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1322), 2, sym_line_comment, - ACTIONS(2081), 7, + sym_block_comment, + ACTIONS(2316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128108,7 +128643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2083), 38, + ACTIONS(2318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128147,62 +128682,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34985] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1323), 2, sym_line_comment, - ACTIONS(2421), 7, + sym_block_comment, + ACTIONS(3558), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3556), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2423), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35039] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19543] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1324), 2, sym_line_comment, - ACTIONS(2417), 7, + sym_block_comment, + ACTIONS(2308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128210,7 +128753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2419), 38, + ACTIONS(2310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128249,11 +128792,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35093] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19603] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1325), 2, sym_line_comment, - ACTIONS(2401), 7, + sym_block_comment, + ACTIONS(2300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128261,7 +128808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2403), 38, + ACTIONS(2302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128300,11 +128847,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35147] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1326), 2, sym_line_comment, - ACTIONS(2389), 7, + sym_block_comment, + ACTIONS(2296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128312,7 +128863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2391), 38, + ACTIONS(2298), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128351,11 +128902,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35201] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19723] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1327), 2, sym_line_comment, - ACTIONS(2385), 7, + sym_block_comment, + ACTIONS(2268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128363,7 +128918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2387), 38, + ACTIONS(2270), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128402,11 +128957,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35255] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19783] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1328), 2, sym_line_comment, - ACTIONS(2377), 7, + sym_block_comment, + ACTIONS(2256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128414,7 +128973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2379), 38, + ACTIONS(2258), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128453,11 +129012,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35309] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19843] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1329), 2, sym_line_comment, - ACTIONS(2806), 7, + sym_block_comment, + ACTIONS(2248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128465,7 +129028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2808), 38, + ACTIONS(2250), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128504,11 +129067,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35363] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19903] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1330), 2, sym_line_comment, - ACTIONS(2357), 7, + sym_block_comment, + ACTIONS(2088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128516,7 +129083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2359), 38, + ACTIONS(2090), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128555,11 +129122,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35417] = 3, - ACTIONS(3), 2, - sym_block_comment, + [19963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1331), 2, sym_line_comment, - ACTIONS(2353), 7, + sym_block_comment, + ACTIONS(2100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128567,7 +129138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2355), 38, + ACTIONS(2102), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128606,11 +129177,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35471] = 3, - ACTIONS(3), 2, + [20023] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1332), 2, + sym_line_comment, sym_block_comment, + ACTIONS(1004), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1002), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1333), 2, sym_line_comment, - ACTIONS(2345), 7, + sym_block_comment, + ACTIONS(2734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128618,7 +129248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2347), 38, + ACTIONS(2736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128657,11 +129287,180 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35525] = 3, - ACTIONS(3), 2, + [20143] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1334), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3562), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3560), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20203] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1335), 2, sym_line_comment, - ACTIONS(2113), 7, + sym_block_comment, + ACTIONS(1012), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1010), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3566), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3564), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20323] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1925), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128669,7 +129468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2115), 38, + ACTIONS(1927), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128708,11 +129507,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35579] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1338), 2, sym_line_comment, - ACTIONS(2329), 7, + sym_block_comment, + ACTIONS(1901), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128720,7 +129523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2331), 38, + ACTIONS(1903), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128759,11 +129562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35633] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1339), 2, sym_line_comment, - ACTIONS(2313), 7, + sym_block_comment, + ACTIONS(2806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128771,7 +129578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2315), 38, + ACTIONS(2808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128810,11 +129617,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35687] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20503] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1340), 2, sym_line_comment, - ACTIONS(2117), 7, + sym_block_comment, + ACTIONS(1893), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128822,7 +129633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2119), 38, + ACTIONS(1895), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128861,113 +129672,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35741] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(974), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(972), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35795] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20563] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1341), 2, sym_line_comment, - ACTIONS(3658), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3656), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35849] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2013), 7, + ACTIONS(1889), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128975,7 +129688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2015), 38, + ACTIONS(1891), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129014,11 +129727,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35903] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20623] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1342), 2, sym_line_comment, - ACTIONS(2301), 7, + sym_block_comment, + ACTIONS(1885), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129026,7 +129743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2303), 38, + ACTIONS(1887), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129065,11 +129782,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35957] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20683] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1343), 2, sym_line_comment, - ACTIONS(2133), 7, + sym_block_comment, + ACTIONS(1881), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129077,7 +129798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2135), 38, + ACTIONS(1883), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129116,11 +129837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36011] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20743] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1344), 2, sym_line_comment, - ACTIONS(2297), 7, + sym_block_comment, + ACTIONS(1877), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129128,7 +129853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2299), 38, + ACTIONS(1879), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129167,11 +129892,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36065] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20803] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1345), 2, sym_line_comment, - ACTIONS(2153), 7, + sym_block_comment, + ACTIONS(1873), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129179,7 +129908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2155), 38, + ACTIONS(1875), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129218,11 +129947,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36119] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1346), 2, sym_line_comment, - ACTIONS(2157), 7, + sym_block_comment, + ACTIONS(1869), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129230,7 +129963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2159), 38, + ACTIONS(1871), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129269,11 +130002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36173] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20923] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1347), 2, sym_line_comment, - ACTIONS(3662), 15, + sym_block_comment, + ACTIONS(3570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -129289,7 +130026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3660), 30, + ACTIONS(3568), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129320,11 +130057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36227] = 3, - ACTIONS(3), 2, - sym_block_comment, + [20983] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1348), 2, sym_line_comment, - ACTIONS(2293), 7, + sym_block_comment, + ACTIONS(1861), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129332,7 +130073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2295), 38, + ACTIONS(1863), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129371,11 +130112,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36281] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1349), 2, sym_line_comment, - ACTIONS(2097), 7, + sym_block_comment, + ACTIONS(1849), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129383,7 +130128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2099), 38, + ACTIONS(1851), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129422,62 +130167,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36335] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21103] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1350), 2, sym_line_comment, - ACTIONS(2057), 7, + sym_block_comment, + ACTIONS(3574), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3572), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2059), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36389] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21163] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1351), 2, sym_line_comment, - ACTIONS(1965), 7, + sym_block_comment, + ACTIONS(1841), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129485,7 +130238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1967), 38, + ACTIONS(1843), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129524,11 +130277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36443] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21223] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1352), 2, sym_line_comment, - ACTIONS(1945), 7, + sym_block_comment, + ACTIONS(1817), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129536,7 +130293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1947), 38, + ACTIONS(1819), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129575,62 +130332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36497] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21283] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1353), 2, sym_line_comment, - ACTIONS(3666), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3664), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36551] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1941), 7, + ACTIONS(2494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129638,7 +130348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1943), 38, + ACTIONS(2496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129677,62 +130387,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36605] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21343] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1354), 2, sym_line_comment, - ACTIONS(948), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(946), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36659] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3670), 15, + ACTIONS(988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -129748,7 +130411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3668), 30, + ACTIONS(986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129779,62 +130442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36713] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1355), 2, sym_line_comment, - ACTIONS(1909), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1911), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36767] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1905), 7, + ACTIONS(1789), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129842,7 +130458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1907), 38, + ACTIONS(1791), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129881,11 +130497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36821] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21463] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1356), 2, sym_line_comment, - ACTIONS(1901), 7, + sym_block_comment, + ACTIONS(1837), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129893,7 +130513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1903), 38, + ACTIONS(1839), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129932,11 +130552,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36875] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21523] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1357), 2, sym_line_comment, - ACTIONS(1897), 7, + sym_block_comment, + ACTIONS(1909), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129944,7 +130568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1899), 38, + ACTIONS(1911), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129983,11 +130607,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36929] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21583] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1358), 2, sym_line_comment, - ACTIONS(2223), 7, + sym_block_comment, + ACTIONS(1917), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129995,7 +130623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2225), 38, + ACTIONS(1919), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130034,62 +130662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36983] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21643] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1359), 2, sym_line_comment, - ACTIONS(986), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(984), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37037] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1893), 7, + ACTIONS(1929), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130097,7 +130678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1895), 38, + ACTIONS(1931), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130136,11 +130717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37091] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21703] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1360), 2, sym_line_comment, - ACTIONS(1823), 7, + sym_block_comment, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130148,7 +130733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1825), 38, + ACTIONS(2022), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130187,11 +130772,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37145] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21763] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1361), 2, sym_line_comment, - ACTIONS(1819), 7, + sym_block_comment, + ACTIONS(2028), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130199,7 +130788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1821), 38, + ACTIONS(2030), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130238,11 +130827,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37199] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21823] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1362), 2, sym_line_comment, - ACTIONS(1969), 7, + sym_block_comment, + ACTIONS(2036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130250,7 +130843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1971), 38, + ACTIONS(2038), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130289,11 +130882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37253] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21883] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1363), 2, sym_line_comment, - ACTIONS(1985), 7, + sym_block_comment, + ACTIONS(2080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130301,7 +130898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1987), 38, + ACTIONS(2082), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130340,113 +130937,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37307] = 3, - ACTIONS(3), 2, - sym_block_comment, + [21943] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1364), 2, sym_line_comment, - ACTIONS(3674), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3672), 30, + sym_block_comment, + ACTIONS(2096), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37361] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3678), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3676), 30, + sym_metavariable, + ACTIONS(2098), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22003] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1365), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2130), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37415] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2132), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22063] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1366), 2, sym_line_comment, - ACTIONS(3682), 15, + sym_block_comment, + ACTIONS(3184), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -130462,7 +131071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3680), 30, + ACTIONS(3182), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130493,62 +131102,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37469] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22123] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1367), 2, sym_line_comment, - ACTIONS(990), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(988), 30, + sym_block_comment, + ACTIONS(2216), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37523] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2218), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22183] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1368), 2, sym_line_comment, - ACTIONS(3686), 15, + sym_block_comment, + ACTIONS(3578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -130564,7 +131181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3684), 30, + ACTIONS(3576), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130595,62 +131212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37577] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22243] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1369), 2, sym_line_comment, - ACTIONS(1997), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1999), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37631] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2029), 7, + ACTIONS(2220), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130658,7 +131228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2031), 38, + ACTIONS(2222), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130697,11 +131267,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37685] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22303] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1370), 2, sym_line_comment, - ACTIONS(2121), 7, + sym_block_comment, + ACTIONS(2224), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130709,7 +131283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2123), 38, + ACTIONS(2226), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130748,11 +131322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37739] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22363] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1371), 2, sym_line_comment, - ACTIONS(3690), 15, + sym_block_comment, + ACTIONS(3582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -130768,7 +131346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3688), 30, + ACTIONS(3580), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130799,11 +131377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37793] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22423] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1372), 2, sym_line_comment, - ACTIONS(2165), 7, + sym_block_comment, + ACTIONS(2232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130811,7 +131393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2167), 38, + ACTIONS(2234), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130850,11 +131432,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37847] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22483] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1373), 2, sym_line_comment, - ACTIONS(2169), 7, + sym_block_comment, + ACTIONS(2236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130862,7 +131448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2171), 38, + ACTIONS(2238), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130901,11 +131487,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37901] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22543] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1374), 2, sym_line_comment, - ACTIONS(2191), 7, + sym_block_comment, + ACTIONS(2240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130913,7 +131503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2193), 38, + ACTIONS(2242), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130952,11 +131542,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37955] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22603] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1375), 2, sym_line_comment, - ACTIONS(2227), 7, + sym_block_comment, + ACTIONS(2122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130964,7 +131558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2229), 38, + ACTIONS(2124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131003,11 +131597,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38009] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1376), 2, sym_line_comment, - ACTIONS(2235), 7, + sym_block_comment, + ACTIONS(2276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131015,7 +131613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2237), 38, + ACTIONS(2278), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131054,11 +131652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38063] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22723] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1377), 2, sym_line_comment, - ACTIONS(2285), 7, + sym_block_comment, + ACTIONS(2348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131066,7 +131668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2287), 38, + ACTIONS(2350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131105,11 +131707,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38117] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22783] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1378), 2, sym_line_comment, - ACTIONS(2289), 7, + sym_block_comment, + ACTIONS(2352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131117,7 +131723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2291), 38, + ACTIONS(2354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131156,62 +131762,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38171] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22843] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1379), 2, sym_line_comment, - ACTIONS(3694), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3692), 30, + sym_block_comment, + ACTIONS(2388), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38225] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2390), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22903] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1380), 2, sym_line_comment, - ACTIONS(2413), 7, + sym_block_comment, + ACTIONS(2418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131219,7 +131833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2415), 38, + ACTIONS(2420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131258,11 +131872,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38279] = 3, - ACTIONS(3), 2, - sym_block_comment, + [22963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1381), 2, sym_line_comment, - ACTIONS(2493), 7, + sym_block_comment, + ACTIONS(2434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131270,7 +131888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2495), 38, + ACTIONS(2436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131309,62 +131927,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38333] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23023] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1382), 2, sym_line_comment, - ACTIONS(3320), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3318), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38387] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2557), 7, + ACTIONS(2438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131372,7 +131943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2559), 38, + ACTIONS(2440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131411,11 +131982,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38441] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1383), 2, sym_line_comment, - ACTIONS(2569), 7, + sym_block_comment, + ACTIONS(2442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131423,7 +131998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2571), 38, + ACTIONS(2444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131462,11 +132037,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38495] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23143] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1384), 2, sym_line_comment, - ACTIONS(2573), 7, + sym_block_comment, + ACTIONS(2446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131474,7 +132053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2575), 38, + ACTIONS(2448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131513,62 +132092,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38549] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23203] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1385), 2, sym_line_comment, - ACTIONS(2597), 7, + sym_block_comment, + ACTIONS(3586), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3584), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2599), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38603] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1386), 2, sym_line_comment, - ACTIONS(3296), 15, + sym_block_comment, + ACTIONS(3590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -131584,7 +132171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3294), 30, + ACTIONS(3588), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131615,62 +132202,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38657] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23323] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1387), 2, sym_line_comment, - ACTIONS(2601), 7, + sym_block_comment, + ACTIONS(3228), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3226), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2603), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [38711] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1388), 2, sym_line_comment, - ACTIONS(2585), 7, + sym_block_comment, + ACTIONS(2450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131678,7 +132273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2587), 38, + ACTIONS(2452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131717,11 +132312,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38765] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1389), 2, sym_line_comment, - ACTIONS(2633), 7, + sym_block_comment, + ACTIONS(2506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131729,7 +132328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2635), 38, + ACTIONS(2508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131768,11 +132367,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38819] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23503] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1390), 2, sym_line_comment, - ACTIONS(2649), 7, + sym_block_comment, + ACTIONS(2510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131780,7 +132383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2651), 38, + ACTIONS(2512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131819,11 +132422,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38873] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23563] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1391), 2, sym_line_comment, - ACTIONS(2653), 7, + sym_block_comment, + ACTIONS(2522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131831,7 +132438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2655), 38, + ACTIONS(2524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131870,11 +132477,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38927] = 3, - ACTIONS(3), 2, + [23623] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1392), 2, + sym_line_comment, sym_block_comment, + ACTIONS(994), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(996), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23683] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1393), 2, sym_line_comment, - ACTIONS(2665), 7, + sym_block_comment, + ACTIONS(2526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131882,7 +132548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2667), 38, + ACTIONS(2528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131921,11 +132587,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38981] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23743] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1394), 2, sym_line_comment, - ACTIONS(2669), 7, + sym_block_comment, + ACTIONS(2530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131933,7 +132603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2671), 38, + ACTIONS(2532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131972,11 +132642,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39035] = 3, - ACTIONS(3), 2, + [23803] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1395), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3592), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1396), 2, sym_line_comment, - ACTIONS(2677), 7, + sym_block_comment, + ACTIONS(2606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131984,7 +132713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2679), 38, + ACTIONS(2608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132023,11 +132752,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39089] = 3, - ACTIONS(3), 2, - sym_block_comment, + [23923] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1397), 2, sym_line_comment, - ACTIONS(3698), 15, + sym_block_comment, + ACTIONS(3598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -132043,7 +132776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3696), 30, + ACTIONS(3596), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132074,22 +132807,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39143] = 6, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, + [23983] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1398), 2, sym_line_comment, - ACTIONS(3702), 14, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -132099,13 +132831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3700), 28, + ACTIONS(996), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -132128,11 +132862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39203] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1399), 2, sym_line_comment, - ACTIONS(3706), 15, + sym_block_comment, + ACTIONS(3602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -132148,7 +132886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3704), 30, + ACTIONS(3600), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132179,215 +132917,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39257] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24103] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1400), 2, sym_line_comment, - ACTIONS(2818), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2820), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39311] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2858), 7, + ACTIONS(3606), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3604), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2860), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39365] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24163] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + STATE(1401), 2, sym_line_comment, - ACTIONS(2890), 7, + sym_block_comment, + ACTIONS(3610), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3608), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2892), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39419] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24229] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1402), 2, sym_line_comment, - ACTIONS(2826), 7, + sym_block_comment, + ACTIONS(890), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(888), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2828), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39473] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24289] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1403), 2, sym_line_comment, - ACTIONS(2822), 7, + sym_block_comment, + ACTIONS(2138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132395,7 +133101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2824), 38, + ACTIONS(2140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132434,113 +133140,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39527] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24349] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1404), 2, sym_line_comment, - ACTIONS(2477), 7, + sym_block_comment, + ACTIONS(3614), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3612), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2479), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39581] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24409] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1405), 2, sym_line_comment, - ACTIONS(2441), 7, + sym_block_comment, + ACTIONS(3618), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3616), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2443), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39635] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24469] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1406), 2, sym_line_comment, - ACTIONS(2393), 7, + sym_block_comment, + ACTIONS(2834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132548,7 +133266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2395), 38, + ACTIONS(2836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132587,11 +133305,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39689] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24529] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1407), 2, sym_line_comment, - ACTIONS(2261), 7, + sym_block_comment, + ACTIONS(2870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132599,7 +133321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2263), 38, + ACTIONS(2872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132638,11 +133360,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39743] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24589] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1408), 2, sym_line_comment, - ACTIONS(2257), 7, + sym_block_comment, + ACTIONS(2874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132650,7 +133376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2259), 38, + ACTIONS(2876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132689,11 +133415,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39797] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24649] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1409), 2, sym_line_comment, - ACTIONS(2249), 7, + sym_block_comment, + ACTIONS(2854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132701,7 +133431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2251), 38, + ACTIONS(2856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132740,11 +133470,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39851] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24709] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1410), 2, sym_line_comment, - ACTIONS(2199), 7, + sym_block_comment, + ACTIONS(2842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132752,7 +133486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2201), 38, + ACTIONS(2844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132791,11 +133525,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39905] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24769] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1411), 2, sym_line_comment, - ACTIONS(2181), 7, + sym_block_comment, + ACTIONS(2634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132803,7 +133541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2183), 38, + ACTIONS(2636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132842,11 +133580,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39959] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24829] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1412), 2, sym_line_comment, - ACTIONS(2129), 7, + sym_block_comment, + ACTIONS(2376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132854,7 +133596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2131), 38, + ACTIONS(2378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132893,62 +133635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40013] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24889] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1413), 2, sym_line_comment, - ACTIONS(3710), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3708), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40067] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(2125), 7, + ACTIONS(2538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132956,7 +133651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2127), 38, + ACTIONS(2540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132995,11 +133690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40121] = 3, - ACTIONS(3), 2, - sym_block_comment, + [24949] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1414), 2, sym_line_comment, - ACTIONS(2105), 7, + sym_block_comment, + ACTIONS(2084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133007,7 +133706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2107), 38, + ACTIONS(2086), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133028,493 +133727,143 @@ 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_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [40175] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3714), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3712), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40229] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(890), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(888), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40283] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(886), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(884), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40337] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1564), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40391] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3718), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3716), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40445] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3722), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3720), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40499] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3726), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(3728), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3724), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40555] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25009] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1415), 2, sym_line_comment, - ACTIONS(3732), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3730), 30, + sym_block_comment, + ACTIONS(2846), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40609] = 7, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3734), 27, + sym_metavariable, + ACTIONS(2848), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25069] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1416), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2822), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40671] = 3, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2824), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25129] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1417), 2, sym_line_comment, - ACTIONS(3742), 15, + sym_block_comment, + ACTIONS(3622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -133530,7 +133879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3740), 30, + ACTIONS(3620), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133561,164 +133910,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40725] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25189] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1418), 2, sym_line_comment, - ACTIONS(3746), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3744), 30, + sym_block_comment, + ACTIONS(2710), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40779] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3750), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3748), 30, + sym_metavariable, + ACTIONS(2712), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25249] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1419), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2514), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40833] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3300), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3298), 30, + sym_metavariable, + ACTIONS(2516), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25309] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1420), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2426), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40887] = 3, - ACTIONS(3), 2, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2428), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25369] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1421), 2, + sym_line_comment, sym_block_comment, + ACTIONS(2288), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2290), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25429] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1422), 2, sym_line_comment, - ACTIONS(3754), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -133734,7 +134154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3752), 30, + ACTIONS(996), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133765,63 +134185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40941] = 4, - ACTIONS(3), 2, - sym_block_comment, + [25489] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1423), 2, sym_line_comment, - ACTIONS(3756), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(3728), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3724), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40997] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3728), 15, + ACTIONS(1464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -133837,7 +134209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3724), 30, + ACTIONS(1466), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133868,11 +134240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41051] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25549] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1424), 2, sym_line_comment, - ACTIONS(3760), 15, + sym_block_comment, + ACTIONS(3626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -133888,7 +134264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3758), 30, + ACTIONS(3624), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133919,11 +134295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41105] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25609] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3630), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1425), 2, sym_line_comment, - ACTIONS(3764), 15, + sym_block_comment, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -133939,17 +134322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3762), 30, + ACTIONS(3628), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -133970,11 +134351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41159] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25671] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1426), 2, sym_line_comment, - ACTIONS(2109), 7, + sym_block_comment, + ACTIONS(3636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133982,7 +134367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2111), 38, + ACTIONS(3634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134021,11 +134406,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [41213] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25731] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1427), 2, sym_line_comment, - ACTIONS(932), 15, + sym_block_comment, + ACTIONS(3640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134041,7 +134430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(930), 30, + ACTIONS(3638), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134072,17 +134461,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41267] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25791] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + STATE(1428), 2, sym_line_comment, - ACTIONS(940), 15, + sym_block_comment, + ACTIONS(3644), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -134092,18 +134492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(938), 30, + ACTIONS(3642), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -134123,11 +134520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41321] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25859] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1429), 2, sym_line_comment, - ACTIONS(908), 15, + sym_block_comment, + ACTIONS(3650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134143,7 +134544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(906), 30, + ACTIONS(3648), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134174,11 +134575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41375] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25919] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1430), 2, sym_line_comment, - ACTIONS(936), 15, + sym_block_comment, + ACTIONS(3654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134194,7 +134599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(934), 30, + ACTIONS(3652), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134225,11 +134630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41429] = 3, - ACTIONS(3), 2, - sym_block_comment, + [25979] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1431), 2, sym_line_comment, - ACTIONS(960), 15, + sym_block_comment, + ACTIONS(874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134245,7 +134654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(958), 30, + ACTIONS(872), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134276,215 +134685,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41483] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2802), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2804), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41537] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2681), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2683), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41591] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3768), 12, - anon_sym_SEMI, - anon_sym_LPAREN, + [26039] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 2, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_EQ, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3766), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41644] = 3, - ACTIONS(3), 2, - sym_block_comment, + STATE(1432), 2, sym_line_comment, - ACTIONS(3772), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3770), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41697] = 4, - ACTIONS(3340), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3338), 15, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134500,7 +134712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 28, + ACTIONS(3628), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134529,115 +134741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41752] = 5, - ACTIONS(3774), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1432), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(547), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3060), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41809] = 3, - ACTIONS(3), 2, - sym_block_comment, + [26101] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1433), 2, sym_line_comment, - ACTIONS(3779), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3777), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41862] = 4, - ACTIONS(3781), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(900), 15, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134653,15 +134765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 28, + ACTIONS(3628), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -134682,24 +134796,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41917] = 3, - ACTIONS(3), 2, - sym_block_comment, + [26161] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1434), 2, sym_line_comment, - ACTIONS(3785), 12, + sym_block_comment, + ACTIONS(2142), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, - anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3783), 32, + ACTIONS(2144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134720,172 +134833,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_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [41970] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, - sym_identifier, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - anon_sym_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3450), 1, - anon_sym_SQUOTE, - ACTIONS(3454), 1, - anon_sym_for, - ACTIONS(3458), 1, - sym_metavariable, - STATE(2334), 1, - sym_where_predicate, - STATE(2563), 1, - sym_scoped_type_identifier, - STATE(2902), 1, - sym_generic_type, - STATE(3299), 1, - sym_scoped_identifier, - STATE(3334), 1, - sym_bracketed_type, - STATE(3337), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3456), 3, - sym_self, - sym_super, - sym_crate, - STATE(3014), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3444), 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, - [42059] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1710), 1, - anon_sym_LBRACK, - ACTIONS(3436), 1, sym_identifier, - ACTIONS(3440), 1, - anon_sym_LPAREN, - ACTIONS(3442), 1, - anon_sym_STAR, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3450), 1, - anon_sym_SQUOTE, - ACTIONS(3454), 1, - anon_sym_for, - ACTIONS(3458), 1, - sym_metavariable, - STATE(2513), 1, - sym_where_predicate, - STATE(2563), 1, - sym_scoped_type_identifier, - STATE(2902), 1, - sym_generic_type, - STATE(3299), 1, - sym_scoped_identifier, - STATE(3334), 1, - sym_bracketed_type, - STATE(3337), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3456), 3, sym_self, sym_super, - sym_crate, - STATE(3014), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3444), 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, - [42148] = 3, - ACTIONS(3), 2, + sym_crate, + [26221] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1435), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3660), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3658), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26281] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1436), 2, sym_line_comment, - ACTIONS(3789), 12, + sym_block_comment, + ACTIONS(3664), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3662), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26341] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1437), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3668), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - anon_sym_COLON_COLON, - anon_sym_BANG, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3666), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26401] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1438), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2400), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, sym_metavariable, - ACTIONS(3787), 32, + ACTIONS(2402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134906,36 +135053,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [42201] = 3, - ACTIONS(3), 2, - sym_block_comment, + [26461] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1439), 2, sym_line_comment, - ACTIONS(3793), 12, + sym_block_comment, + ACTIONS(2414), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, - anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3791), 32, + ACTIONS(2416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134956,35 +135108,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [42254] = 9, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, - anon_sym_COLON_COLON, - ACTIONS(3799), 1, - anon_sym_BANG, - ACTIONS(3801), 1, - anon_sym_LT2, - STATE(1554), 1, - sym_parameters, - STATE(1568), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + [26521] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1440), 2, sym_line_comment, - ACTIONS(3260), 17, + sym_block_comment, + ACTIONS(3216), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134998,22 +135148,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3256), 21, - anon_sym_EQ_GT, + ACTIONS(3214), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -135023,62 +135179,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42319] = 19, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3821), 1, - anon_sym_DOT_DOT, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [26581] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1441), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(968), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3815), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3803), 17, + ACTIONS(966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135089,61 +135236,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42403] = 19, - ACTIONS(331), 1, + [26641] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3672), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, anon_sym_AMP, - ACTIONS(3813), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3817), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3821), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3670), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(3825), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26701] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1443), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(908), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3815), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(325), 17, + ACTIONS(906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135154,27 +135346,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42487] = 8, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + [26761] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1444), 2, sym_line_comment, - ACTIONS(3807), 3, + sym_block_comment, + ACTIONS(916), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 11, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -135182,13 +135370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 25, + ACTIONS(914), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -135208,46 +135401,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42549] = 13, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [26821] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1445), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(960), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3807), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 4, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -135267,57 +135456,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42621] = 15, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [26881] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1446), 2, sym_line_comment, - ACTIONS(3736), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(952), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3815), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3734), 21, + ACTIONS(950), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135328,45 +135511,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42697] = 12, - ACTIONS(3586), 1, + [26941] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3676), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3674), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27000] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3250), 1, + anon_sym_COLON_COLON, + STATE(1448), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(3248), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3807), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 5, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3246), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, + anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -135386,19 +135620,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42767] = 7, - ACTIONS(3799), 1, + [27061] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3678), 1, + anon_sym_POUND, + STATE(1490), 1, + sym_attribute_item, + STATE(1449), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat1, + ACTIONS(557), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_COLON_COLON, anon_sym_BANG, - ACTIONS(3831), 1, - anon_sym_LBRACE, - ACTIONS(3833), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(2972), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27124] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, anon_sym_COLON_COLON, - STATE(1636), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3685), 1, + anon_sym_BANG, + ACTIONS(3687), 1, + anon_sym_LT2, + STATE(1542), 1, + sym_parameters, + STATE(1588), 1, + sym_type_arguments, + STATE(1450), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(3160), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135412,10 +135710,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 24, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3156), 21, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, @@ -135427,7 +135726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -135437,61 +135735,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42827] = 17, - ACTIONS(3586), 1, + [27195] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3691), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3689), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27254] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + STATE(1452), 2, sym_line_comment, - ACTIONS(371), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3815), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(369), 19, + ACTIONS(996), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_COMMA, + anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135502,54 +135845,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42907] = 19, - ACTIONS(3586), 1, + [27315] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1453), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3697), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3695), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27374] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3701), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3699), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27433] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1602), 1, + anon_sym_LBRACK, + ACTIONS(3266), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_STAR, + ACTIONS(3276), 1, + anon_sym_COLON_COLON, + ACTIONS(3278), 1, + anon_sym_AMP, + ACTIONS(3280), 1, + anon_sym_SQUOTE, + ACTIONS(3284), 1, + anon_sym_for, + ACTIONS(3288), 1, + sym_metavariable, + STATE(2588), 1, + sym_scoped_type_identifier, + STATE(2667), 1, + sym_where_predicate, + STATE(2770), 1, + sym_generic_type, + STATE(3330), 1, + sym_scoped_identifier, + STATE(3375), 1, + sym_bracketed_type, + STATE(3378), 1, + sym_generic_type_with_turbofish, + ACTIONS(3282), 2, + anon_sym_default, + anon_sym_union, + STATE(1455), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, + sym_self, + sym_super, + sym_crate, + STATE(3146), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3274), 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, + [27528] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3705), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3703), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27587] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1457), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3709), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3707), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27646] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1602), 1, + anon_sym_LBRACK, + ACTIONS(3266), 1, + sym_identifier, + ACTIONS(3270), 1, + anon_sym_LPAREN, + ACTIONS(3272), 1, + anon_sym_STAR, + ACTIONS(3276), 1, + anon_sym_COLON_COLON, + ACTIONS(3278), 1, + anon_sym_AMP, + ACTIONS(3280), 1, + anon_sym_SQUOTE, + ACTIONS(3284), 1, + anon_sym_for, + ACTIONS(3288), 1, + sym_metavariable, + STATE(2408), 1, + sym_where_predicate, + STATE(2588), 1, + sym_scoped_type_identifier, + STATE(2770), 1, + sym_generic_type, + STATE(3330), 1, + sym_scoped_identifier, + STATE(3375), 1, + sym_bracketed_type, + STATE(3378), 1, + sym_generic_type_with_turbofish, + ACTIONS(3282), 2, + anon_sym_default, + anon_sym_union, + STATE(1458), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, + sym_self, + sym_super, + sym_crate, + STATE(3146), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3274), 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, + [27741] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3821), 1, + ACTIONS(3727), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3837), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, + ACTIONS(3725), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1459), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3835), 17, + ACTIONS(3620), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135557,6 +136264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135567,54 +136275,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42991] = 19, - ACTIONS(3586), 1, + [27833] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3821), 1, - anon_sym_DOT_DOT, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3841), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3819), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1460), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3839), 17, + ACTIONS(3644), 7, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135622,6 +136317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135632,54 +136335,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43075] = 20, - ACTIONS(3586), 1, + [27905] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3821), 1, + ACTIONS(3727), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, + ACTIONS(3725), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3688), 7, + ACTIONS(3612), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135687,7 +136394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135698,50 +136405,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43161] = 8, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, - anon_sym_LT2, - ACTIONS(3847), 1, - anon_sym_COLON_COLON, - STATE(1554), 1, - sym_parameters, - STATE(1568), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + [27997] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + STATE(1462), 2, sym_line_comment, - ACTIONS(3276), 17, - anon_sym_PLUS, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3644), 11, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3274), 21, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3642), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -135751,46 +136461,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43223] = 11, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_block_comment, + [28065] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3685), 1, + anon_sym_BANG, + ACTIONS(3739), 1, + anon_sym_LBRACE, + ACTIONS(3741), 1, + anon_sym_COLON_COLON, + STATE(1673), 1, + sym_field_initializer_list, + STATE(1463), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3807), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 6, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 25, - anon_sym_SEMI, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(996), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_else, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -135809,50 +136520,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43291] = 17, - ACTIONS(3586), 1, + [28131] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3727), 1, + anon_sym_DOT_DOT, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3745), 1, + anon_sym_EQ, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3725), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3851), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3807), 3, + STATE(1464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3849), 19, + ACTIONS(3743), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135860,8 +136579,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28221] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_LT2, + ACTIONS(3747), 1, + anon_sym_COLON_COLON, + STATE(1542), 1, + sym_parameters, + STATE(1588), 1, + sym_type_arguments, + STATE(1465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3180), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + ACTIONS(3178), 21, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135870,56 +136646,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43371] = 20, - ACTIONS(3586), 1, + [28289] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3821), 1, + ACTIONS(3727), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, + ACTIONS(3725), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3720), 7, + ACTIONS(3616), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135927,7 +136706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135938,21 +136717,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43457] = 8, - ACTIONS(3795), 1, + [28381] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3687), 1, anon_sym_LT2, - ACTIONS(3847), 1, + ACTIONS(3747), 1, anon_sym_COLON_COLON, - STATE(1554), 1, + STATE(1542), 1, sym_parameters, - STATE(1568), 1, + STATE(1588), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1467), 2, sym_line_comment, - ACTIONS(3280), 17, + sym_block_comment, + ACTIONS(3176), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135970,7 +136753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3278), 21, + ACTIONS(3174), 21, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, @@ -135992,48 +136775,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [43519] = 16, - ACTIONS(3586), 1, + [28449] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3727), 1, + anon_sym_DOT_DOT, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3751), 1, anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3725), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3734), 20, + ACTIONS(3749), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136041,9 +136834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136054,28 +136844,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43597] = 9, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + [28539] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3242), 1, + anon_sym_LBRACE, + ACTIONS(3244), 1, + anon_sym_COLON_COLON, + ACTIONS(3753), 1, + anon_sym_BANG, + STATE(1298), 1, + sym_field_initializer_list, + STATE(1469), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3807), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 9, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -136083,14 +136876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 25, + ACTIONS(996), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_else, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -136109,54 +136901,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43661] = 19, - ACTIONS(3586), 1, + [28605] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3821), 1, + ACTIONS(3727), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3855), 1, + ACTIONS(3757), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, + ACTIONS(3725), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1470), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3853), 17, + ACTIONS(3755), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136174,21 +136970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43745] = 8, - ACTIONS(3795), 1, + [28695] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3687), 1, anon_sym_LT2, - ACTIONS(3847), 1, + ACTIONS(3747), 1, anon_sym_COLON_COLON, - STATE(1554), 1, + STATE(1542), 1, sym_parameters, - STATE(1568), 1, + STATE(1588), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1471), 2, sym_line_comment, - ACTIONS(3270), 17, + sym_block_comment, + ACTIONS(3170), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -136206,7 +137006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3268), 21, + ACTIONS(3168), 21, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, @@ -136228,54 +137028,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [43807] = 20, - ACTIONS(3586), 1, + [28763] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(333), 1, + anon_sym_EQ, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3821), 1, + ACTIONS(3727), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, + ACTIONS(3725), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1472), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3708), 7, + ACTIONS(327), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136283,7 +137087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136294,37 +137097,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43893] = 10, - ACTIONS(3586), 1, + [28853] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 7, + ACTIONS(3644), 6, anon_sym_EQ, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 25, + ACTIONS(3642), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136350,41 +137158,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43959] = 7, - ACTIONS(3352), 1, - anon_sym_LBRACE, - ACTIONS(3354), 1, - anon_sym_COLON_COLON, - ACTIONS(3857), 1, - anon_sym_BANG, - STATE(1287), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(900), 15, + [28927] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3711), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3644), 4, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(3642), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29005] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3717), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3719), 1, anon_sym_CARET, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3644), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(898), 24, + ACTIONS(3642), 25, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -136403,54 +137283,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44019] = 19, - ACTIONS(3586), 1, + [29081] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3821), 1, + ACTIONS(3727), 1, anon_sym_DOT_DOT, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3861), 1, + ACTIONS(3761), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3819), 2, + ACTIONS(3725), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3807), 3, + STATE(1476), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3859), 17, + ACTIONS(3759), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136468,179 +137352,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44103] = 22, - ACTIONS(29), 1, + [29171] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, anon_sym_LT, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3452), 1, - anon_sym_union, - ACTIONS(3458), 1, - sym_metavariable, - ACTIONS(3863), 1, - sym_identifier, - ACTIONS(3867), 1, - anon_sym_default, - ACTIONS(3869), 1, - anon_sym_for, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1891), 1, - sym_scoped_type_identifier, - STATE(1925), 1, - sym_generic_type, - STATE(1939), 1, - sym_function_type, - STATE(3276), 1, - sym_function_modifiers, - STATE(3299), 1, - sym_scoped_identifier, - STATE(3334), 1, - sym_bracketed_type, - STATE(3337), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3765), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1477), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3456), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3865), 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, - [44192] = 22, - ACTIONS(29), 1, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3763), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29257] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(377), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, anon_sym_LT, - ACTIONS(1046), 1, - anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3452), 1, - anon_sym_union, - ACTIONS(3458), 1, - sym_metavariable, - ACTIONS(3867), 1, - anon_sym_default, - ACTIONS(3871), 1, - sym_identifier, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1889), 1, - sym_scoped_type_identifier, - STATE(1922), 1, - sym_generic_type, - STATE(1957), 1, - sym_function_type, - STATE(3276), 1, - sym_function_modifiers, - STATE(3299), 1, - sym_scoped_identifier, - STATE(3334), 1, - sym_bracketed_type, - STATE(3337), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1478), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(375), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29343] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3644), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1479), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3456), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3865), 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, - [44281] = 4, - ACTIONS(3426), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3288), 16, - anon_sym_PLUS, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3642), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29425] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3717), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3719), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3723), 1, anon_sym_PIPE, + ACTIONS(3727), 1, anon_sym_DOT_DOT, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3769), 1, + anon_sym_EQ, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3725), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3286), 25, + STATE(1480), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3767), 17, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29515] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, + ACTIONS(3498), 1, anon_sym_QMARK, - anon_sym_COLON_COLON, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3644), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1481), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3642), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136651,46 +137686,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44334] = 5, - ACTIONS(3326), 1, - anon_sym_COLON_COLON, - ACTIONS(3328), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3324), 17, + [29599] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3711), 2, anon_sym_PLUS, + anon_sym_DASH, + STATE(1482), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3644), 9, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3322), 23, + ACTIONS(3642), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136700,124 +137743,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44389] = 22, - ACTIONS(29), 1, + [29669] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3166), 1, anon_sym_fn, - ACTIONS(3873), 1, - sym_identifier, - ACTIONS(3877), 1, + ACTIONS(1056), 1, + anon_sym_extern, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3879), 1, - anon_sym_default, - ACTIONS(3881), 1, + ACTIONS(3282), 1, anon_sym_union, - ACTIONS(3885), 1, + ACTIONS(3288), 1, sym_metavariable, - STATE(1473), 1, - sym_scoped_type_identifier, - STATE(1522), 1, - sym_generic_type, - STATE(1650), 1, - sym_function_type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3335), 1, - sym_function_modifiers, - STATE(3346), 1, - sym_scoped_identifier, - STATE(3389), 1, - sym_bracketed_type, - STATE(3390), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3883), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3875), 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, - [44478] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3132), 1, - anon_sym_fn, - ACTIONS(3887), 1, + ACTIONS(3771), 1, sym_identifier, - ACTIONS(3891), 1, - anon_sym_COLON_COLON, - ACTIONS(3893), 1, + ACTIONS(3775), 1, anon_sym_default, - ACTIONS(3895), 1, + ACTIONS(3777), 1, anon_sym_for, - ACTIONS(3897), 1, - anon_sym_union, - ACTIONS(3901), 1, - sym_metavariable, - STATE(1008), 1, + STATE(1722), 1, + sym_for_lifetimes, + STATE(1914), 1, sym_scoped_type_identifier, - STATE(1035), 1, + STATE(1935), 1, sym_generic_type, - STATE(1374), 1, + STATE(1982), 1, sym_function_type, - STATE(1665), 1, - sym_for_lifetimes, - STATE(3205), 1, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3294), 1, sym_function_modifiers, - STATE(3238), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3380), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3381), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + STATE(1483), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, + sym_block_comment, + ACTIONS(1042), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3899), 3, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3889), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136835,15 +137817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [44567] = 5, - ACTIONS(3286), 1, + [29766] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3210), 1, anon_sym_COLON_COLON, - ACTIONS(3288), 1, + ACTIONS(3212), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + STATE(1484), 2, sym_line_comment, - ACTIONS(3284), 17, + sym_block_comment, + ACTIONS(3208), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -136861,7 +137847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3282), 23, + ACTIONS(3206), 23, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -136885,76 +137871,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [44622] = 7, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, - anon_sym_LT2, - STATE(1564), 1, - sym_type_arguments, - STATE(1566), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + [29827] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3304), 1, + anon_sym_LBRACE, + STATE(1485), 2, sym_line_comment, - ACTIONS(3300), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3298), 21, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [44681] = 7, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, - anon_sym_LT2, - STATE(1564), 1, - sym_type_arguments, - STATE(1566), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3292), 17, + ACTIONS(3212), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -136963,14 +137896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3290), 21, + ACTIONS(3210), 25, + anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -136979,6 +137912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136988,21 +137922,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44740] = 5, - ACTIONS(3306), 1, - anon_sym_COLON_COLON, - ACTIONS(3308), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + [29886] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3366), 1, + anon_sym_LBRACE, + STATE(1486), 2, sym_line_comment, - ACTIONS(3304), 17, + sym_block_comment, + ACTIONS(3204), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -137011,24 +137949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3302), 23, + ACTIONS(3202), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137038,20 +137975,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44795] = 7, - ACTIONS(3795), 1, + [29945] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, anon_sym_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3687), 1, anon_sym_LT2, - STATE(1564), 1, + STATE(1584), 1, sym_type_arguments, - STATE(1566), 1, + STATE(1587), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1487), 2, sym_line_comment, - ACTIONS(3320), 17, + sym_block_comment, + ACTIONS(3216), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137069,7 +138011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3318), 21, + ACTIONS(3214), 21, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, @@ -137091,56 +138033,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [44854] = 22, - ACTIONS(29), 1, + [30010] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1048), 1, + ACTIONS(1050), 1, anon_sym_for, - ACTIONS(1054), 1, + ACTIONS(1056), 1, anon_sym_extern, - ACTIONS(3132), 1, + ACTIONS(3066), 1, anon_sym_fn, - ACTIONS(3891), 1, + ACTIONS(3779), 1, + sym_identifier, + ACTIONS(3783), 1, anon_sym_COLON_COLON, - ACTIONS(3893), 1, + ACTIONS(3785), 1, anon_sym_default, - ACTIONS(3897), 1, + ACTIONS(3787), 1, anon_sym_union, - ACTIONS(3901), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3903), 1, - sym_identifier, - STATE(1006), 1, + STATE(1500), 1, sym_scoped_type_identifier, - STATE(1038), 1, + STATE(1571), 1, sym_generic_type, - STATE(1154), 1, + STATE(1684), 1, sym_function_type, - STATE(1665), 1, + STATE(1687), 1, sym_for_lifetimes, - STATE(3205), 1, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3376), 1, sym_function_modifiers, - STATE(3238), 1, + STATE(3387), 1, sym_scoped_identifier, - STATE(3380), 1, + STATE(3430), 1, sym_bracketed_type, - STATE(3381), 1, + STATE(3431), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + STATE(1488), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, + sym_block_comment, + ACTIONS(1042), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3899), 3, + ACTIONS(3789), 3, sym_self, sym_super, sym_crate, - ACTIONS(3889), 17, + ACTIONS(3781), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137158,56 +138105,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [44943] = 22, - ACTIONS(29), 1, + [30107] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1048), 1, + ACTIONS(1050), 1, anon_sym_for, - ACTIONS(1054), 1, + ACTIONS(1056), 1, anon_sym_extern, - ACTIONS(3132), 1, + ACTIONS(3066), 1, anon_sym_fn, - ACTIONS(3891), 1, + ACTIONS(3783), 1, anon_sym_COLON_COLON, - ACTIONS(3893), 1, + ACTIONS(3785), 1, anon_sym_default, - ACTIONS(3897), 1, + ACTIONS(3787), 1, anon_sym_union, - ACTIONS(3901), 1, + ACTIONS(3791), 1, sym_metavariable, - ACTIONS(3905), 1, + ACTIONS(3793), 1, sym_identifier, - STATE(1015), 1, + STATE(1494), 1, sym_scoped_type_identifier, - STATE(1042), 1, + STATE(1586), 1, sym_generic_type, - STATE(1369), 1, + STATE(1635), 1, sym_function_type, - STATE(1665), 1, + STATE(1687), 1, sym_for_lifetimes, - STATE(3205), 1, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3376), 1, sym_function_modifiers, - STATE(3238), 1, + STATE(3387), 1, sym_scoped_identifier, - STATE(3380), 1, + STATE(3430), 1, sym_bracketed_type, - STATE(3381), 1, + STATE(3431), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + STATE(1489), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, + sym_block_comment, + ACTIONS(1042), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3899), 3, + ACTIONS(3789), 3, sym_self, sym_super, sym_crate, - ACTIONS(3889), 17, + ACTIONS(3781), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137225,56 +138177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [45032] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3877), 1, + [30204] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3000), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(3879), 1, - anon_sym_default, - ACTIONS(3881), 1, - anon_sym_union, - ACTIONS(3885), 1, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_POUND, + anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3907), 1, - sym_identifier, - ACTIONS(3909), 1, - anon_sym_for, - STATE(1485), 1, - sym_scoped_type_identifier, - STATE(1555), 1, - sym_generic_type, - STATE(1608), 1, - sym_function_type, - STATE(1667), 1, - sym_for_lifetimes, - STATE(3335), 1, - sym_function_modifiers, - STATE(3346), 1, - sym_scoped_identifier, - STATE(3389), 1, - sym_bracketed_type, - STATE(3390), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3883), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3875), 17, + ACTIONS(2998), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137292,56 +138214,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [45121] = 22, - ACTIONS(29), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30261] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1048), 1, + ACTIONS(1050), 1, anon_sym_for, - ACTIONS(1054), 1, + ACTIONS(1056), 1, anon_sym_extern, - ACTIONS(3166), 1, + ACTIONS(3030), 1, anon_sym_fn, - ACTIONS(3877), 1, + ACTIONS(3795), 1, + sym_identifier, + ACTIONS(3799), 1, anon_sym_COLON_COLON, - ACTIONS(3879), 1, + ACTIONS(3801), 1, anon_sym_default, - ACTIONS(3881), 1, + ACTIONS(3803), 1, anon_sym_union, - ACTIONS(3885), 1, + ACTIONS(3807), 1, sym_metavariable, - ACTIONS(3911), 1, - sym_identifier, - STATE(1475), 1, + STATE(1022), 1, sym_scoped_type_identifier, - STATE(1535), 1, + STATE(1054), 1, sym_generic_type, - STATE(1610), 1, + STATE(1366), 1, sym_function_type, - STATE(1667), 1, + STATE(1686), 1, sym_for_lifetimes, - STATE(3335), 1, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3246), 1, sym_function_modifiers, - STATE(3346), 1, + STATE(3279), 1, sym_scoped_identifier, - STATE(3389), 1, + STATE(3421), 1, sym_bracketed_type, - STATE(3390), 1, + STATE(3422), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + STATE(1491), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, + sym_block_comment, + ACTIONS(1042), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3883), 3, + ACTIONS(3805), 3, sym_self, sym_super, sym_crate, - ACTIONS(3875), 17, + ACTIONS(3797), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137359,66 +138301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [45210] = 4, - ACTIONS(3504), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3308), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3306), 25, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45263] = 6, - ACTIONS(3264), 1, - anon_sym_BANG, - ACTIONS(3913), 1, + [30358] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3250), 1, anon_sym_COLON_COLON, - STATE(1287), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3252), 1, + anon_sym_BANG, + ACTIONS(3809), 1, + sym_identifier, + STATE(1492), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(3248), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137431,16 +138328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_as, anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 24, + ACTIONS(3246), 23, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -137459,104 +138356,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45320] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2109), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_POUND, + [30421] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(2111), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, + ACTIONS(1056), 1, anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [45371] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1046), 1, + ACTIONS(3030), 1, anon_sym_fn, - ACTIONS(1048), 1, - anon_sym_for, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3446), 1, + ACTIONS(3799), 1, anon_sym_COLON_COLON, - ACTIONS(3452), 1, + ACTIONS(3801), 1, + anon_sym_default, + ACTIONS(3803), 1, anon_sym_union, - ACTIONS(3458), 1, + ACTIONS(3807), 1, sym_metavariable, - ACTIONS(3867), 1, - anon_sym_default, - ACTIONS(3915), 1, + ACTIONS(3811), 1, sym_identifier, - STATE(1704), 1, - sym_for_lifetimes, - STATE(1888), 1, + ACTIONS(3813), 1, + anon_sym_for, + STATE(1032), 1, sym_scoped_type_identifier, - STATE(1914), 1, + STATE(1085), 1, sym_generic_type, - STATE(1940), 1, + STATE(1387), 1, sym_function_type, - STATE(3276), 1, + STATE(1686), 1, + sym_for_lifetimes, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3246), 1, sym_function_modifiers, - STATE(3299), 1, + STATE(3279), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3421), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3422), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + STATE(1493), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, + sym_block_comment, + ACTIONS(1042), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3456), 3, + ACTIONS(3805), 3, sym_self, sym_super, sym_crate, - ACTIONS(3865), 17, + ACTIONS(3797), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137574,15 +138428,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [45460] = 5, - ACTIONS(3314), 1, - anon_sym_COLON_COLON, - ACTIONS(3316), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + [30518] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_LT2, + STATE(1584), 1, + sym_type_arguments, + STATE(1587), 1, + sym_parameters, + STATE(1494), 2, sym_line_comment, - ACTIONS(3312), 17, + sym_block_comment, + ACTIONS(3184), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137600,15 +138462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3310), 23, - anon_sym_LPAREN, + ACTIONS(3182), 21, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137624,19 +138484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [45515] = 7, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3801), 1, - anon_sym_LT2, - STATE(1564), 1, - sym_type_arguments, - STATE(1566), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + [30583] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3222), 1, + anon_sym_COLON_COLON, + ACTIONS(3224), 1, + anon_sym_BANG, + STATE(1495), 2, sym_line_comment, - ACTIONS(3296), 17, + sym_block_comment, + ACTIONS(3220), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137654,13 +138514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3294), 21, + ACTIONS(3218), 23, + anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137676,13 +138538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [45574] = 4, - ACTIONS(3412), 1, + [30644] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3302), 1, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + STATE(1496), 2, sym_line_comment, - ACTIONS(3328), 16, + sym_block_comment, + ACTIONS(3192), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137699,7 +138565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3326), 25, + ACTIONS(3190), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -137725,17 +138591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45627] = 6, - ACTIONS(3340), 1, + [30703] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3202), 1, anon_sym_COLON_COLON, - ACTIONS(3342), 1, + ACTIONS(3204), 1, anon_sym_BANG, - ACTIONS(3917), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(1497), 2, sym_line_comment, - ACTIONS(3338), 16, + sym_block_comment, + ACTIONS(3200), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137748,23 +138616,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_as, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 23, - anon_sym_SEMI, + anon_sym_LT_LT_EQ, + ACTIONS(3198), 23, anon_sym_LPAREN, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137774,21 +138644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45684] = 4, - ACTIONS(3410), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + [30764] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3190), 1, + anon_sym_COLON_COLON, + ACTIONS(3192), 1, + anon_sym_BANG, + STATE(1498), 2, sym_line_comment, - ACTIONS(3316), 16, + sym_block_comment, + ACTIONS(3188), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -137797,23 +138671,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3314), 25, + anon_sym_LT_LT_EQ, + ACTIONS(3186), 23, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137823,19 +138698,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45737] = 3, - ACTIONS(3), 2, - sym_block_comment, + [30825] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_LT2, + STATE(1584), 1, + sym_type_arguments, + STATE(1587), 1, + sym_parameters, + STATE(1499), 2, sym_line_comment, - ACTIONS(3328), 16, + sym_block_comment, + ACTIONS(3228), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -137844,23 +138729,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3326), 25, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LT_LT_EQ, + ACTIONS(3226), 21, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137870,19 +138754,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45787] = 3, - ACTIONS(3), 2, - sym_block_comment, + [30890] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3687), 1, + anon_sym_LT2, + STATE(1584), 1, + sym_type_arguments, + STATE(1587), 1, + sym_parameters, + STATE(1500), 2, sym_line_comment, - ACTIONS(3288), 16, + sym_block_comment, + ACTIONS(3196), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -137891,14 +138785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3286), 25, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3194), 21, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -137907,7 +138801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137917,22 +138810,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45837] = 5, - ACTIONS(3919), 1, - anon_sym_else, - STATE(1641), 1, - sym_else_clause, - ACTIONS(3), 2, + [30955] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1048), 1, + anon_sym_fn, + ACTIONS(1050), 1, + anon_sym_for, + ACTIONS(1056), 1, + anon_sym_extern, + ACTIONS(3276), 1, + anon_sym_COLON_COLON, + ACTIONS(3282), 1, + anon_sym_union, + ACTIONS(3288), 1, + sym_metavariable, + ACTIONS(3775), 1, + anon_sym_default, + ACTIONS(3815), 1, + sym_identifier, + STATE(1722), 1, + sym_for_lifetimes, + STATE(1913), 1, + sym_scoped_type_identifier, + STATE(1937), 1, + sym_generic_type, + STATE(1987), 1, + sym_function_type, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3294), 1, + sym_function_modifiers, + STATE(3330), 1, + sym_scoped_identifier, + STATE(3375), 1, + sym_bracketed_type, + STATE(3378), 1, + sym_generic_type_with_turbofish, + STATE(1501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1042), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3286), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3773), 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, + [31052] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1048), 1, + anon_sym_fn, + ACTIONS(1050), 1, + anon_sym_for, + ACTIONS(1056), 1, + anon_sym_extern, + ACTIONS(3276), 1, + anon_sym_COLON_COLON, + ACTIONS(3282), 1, + anon_sym_union, + ACTIONS(3288), 1, + sym_metavariable, + ACTIONS(3775), 1, + anon_sym_default, + ACTIONS(3817), 1, + sym_identifier, + STATE(1722), 1, + sym_for_lifetimes, + STATE(1915), 1, + sym_scoped_type_identifier, + STATE(1957), 1, + sym_generic_type, + STATE(1968), 1, + sym_function_type, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3294), 1, + sym_function_modifiers, + STATE(3330), 1, + sym_scoped_identifier, + STATE(3375), 1, + sym_bracketed_type, + STATE(3378), 1, + sym_generic_type_with_turbofish, + STATE(1502), 2, + sym_line_comment, sym_block_comment, + ACTIONS(1042), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3286), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3773), 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, + [31149] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3308), 1, + anon_sym_LBRACE, + STATE(1503), 2, sym_line_comment, - ACTIONS(850), 15, + sym_block_comment, + ACTIONS(3224), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -137943,11 +138982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(848), 24, + ACTIONS(3222), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -137968,15 +139008,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45891] = 5, - ACTIONS(3264), 1, + [31208] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, anon_sym_BANG, - ACTIONS(3921), 1, + ACTIONS(3819), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1298), 1, + sym_field_initializer_list, + STATE(1504), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137992,7 +139038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 24, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -138017,11 +139063,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45945] = 3, - ACTIONS(3), 2, + [31271] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1056), 1, + anon_sym_extern, + ACTIONS(3066), 1, + anon_sym_fn, + ACTIONS(3783), 1, + anon_sym_COLON_COLON, + ACTIONS(3785), 1, + anon_sym_default, + ACTIONS(3787), 1, + anon_sym_union, + ACTIONS(3791), 1, + sym_metavariable, + ACTIONS(3821), 1, + sym_identifier, + ACTIONS(3823), 1, + anon_sym_for, + STATE(1499), 1, + sym_scoped_type_identifier, + STATE(1581), 1, + sym_generic_type, + STATE(1631), 1, + sym_function_type, + STATE(1687), 1, + sym_for_lifetimes, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3376), 1, + sym_function_modifiers, + STATE(3387), 1, + sym_scoped_identifier, + STATE(3430), 1, + sym_bracketed_type, + STATE(3431), 1, + sym_generic_type_with_turbofish, + STATE(1505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1042), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3789), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3781), 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, + [31368] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1050), 1, + anon_sym_for, + ACTIONS(1056), 1, + anon_sym_extern, + ACTIONS(3030), 1, + anon_sym_fn, + ACTIONS(3799), 1, + anon_sym_COLON_COLON, + ACTIONS(3801), 1, + anon_sym_default, + ACTIONS(3803), 1, + anon_sym_union, + ACTIONS(3807), 1, + sym_metavariable, + ACTIONS(3825), 1, + sym_identifier, + STATE(1024), 1, + sym_scoped_type_identifier, + STATE(1077), 1, + sym_generic_type, + STATE(1155), 1, + sym_function_type, + STATE(1686), 1, + sym_for_lifetimes, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(3246), 1, + sym_function_modifiers, + STATE(3279), 1, + sym_scoped_identifier, + STATE(3421), 1, + sym_bracketed_type, + STATE(3422), 1, + sym_generic_type_with_turbofish, + STATE(1506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1042), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3805), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3797), 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, + [31465] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1507), 2, + sym_line_comment, sym_block_comment, + ACTIONS(2142), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_POUND, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(2144), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31522] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1508), 2, sym_line_comment, - ACTIONS(3316), 16, + sym_block_comment, + ACTIONS(3192), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138038,7 +139284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3314), 25, + ACTIONS(3190), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -138064,15 +139310,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45995] = 5, - ACTIONS(3630), 1, + [31578] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, anon_sym_COLON_COLON, - ACTIONS(3857), 1, + ACTIONS(3753), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + STATE(1509), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138088,7 +139338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 24, + ACTIONS(996), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -138113,11 +139363,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46049] = 3, - ACTIONS(3), 2, + [31638] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3478), 1, + anon_sym_BANG, + ACTIONS(3827), 1, + anon_sym_COLON_COLON, + STATE(1510), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3248), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3246), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31698] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1511), 2, sym_line_comment, - ACTIONS(3328), 16, + sym_block_comment, + ACTIONS(3224), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138134,7 +139441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3326), 25, + ACTIONS(3222), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -138160,14 +139467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46099] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3726), 2, + [31754] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(3728), 15, + STATE(1512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138183,7 +139494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3724), 24, + ACTIONS(3628), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -138208,19 +139519,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46151] = 4, - ACTIONS(3), 2, - sym_block_comment, + [31812] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1513), 2, sym_line_comment, - ACTIONS(3756), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(3728), 15, + sym_block_comment, + ACTIONS(3204), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -138231,11 +139544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3724), 24, + ACTIONS(3202), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -138256,20 +139570,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46203] = 5, - ACTIONS(3923), 1, - anon_sym_SQUOTE, - STATE(1625), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [31868] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1514), 2, sym_line_comment, - ACTIONS(3396), 15, + sym_block_comment, + ACTIONS(3192), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -138280,13 +139595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3394), 24, + ACTIONS(3190), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138305,17 +139621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46257] = 3, - ACTIONS(3), 2, - sym_block_comment, + [31924] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1515), 2, sym_line_comment, - ACTIONS(3316), 16, + sym_block_comment, + ACTIONS(3390), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -138326,14 +139645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3314), 25, + ACTIONS(3388), 26, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138352,11 +139672,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46307] = 3, - ACTIONS(3), 2, + [31980] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3685), 1, + anon_sym_BANG, + ACTIONS(3829), 1, + anon_sym_COLON_COLON, + STATE(1516), 2, + sym_line_comment, sym_block_comment, + ACTIONS(994), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(996), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32040] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1517), 2, sym_line_comment, - ACTIONS(3288), 16, + sym_block_comment, + ACTIONS(3204), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138373,7 +139750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3286), 25, + ACTIONS(3202), 25, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -138399,11 +139776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46357] = 3, - ACTIONS(3), 2, - sym_block_comment, + [32096] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1518), 2, sym_line_comment, - ACTIONS(3308), 16, + sym_block_comment, + ACTIONS(3224), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138420,14 +139801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3306), 25, + ACTIONS(3222), 25, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138446,15 +139827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46407] = 5, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(3927), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_block_comment, + [32152] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3831), 1, + anon_sym_SQUOTE, + STATE(1662), 1, + sym_label, + STATE(1519), 2, sym_line_comment, - ACTIONS(3338), 15, + sym_block_comment, + ACTIONS(3394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138470,7 +139855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 24, + ACTIONS(3392), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -138495,15 +139880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46461] = 5, - ACTIONS(3578), 1, - anon_sym_BANG, - ACTIONS(3929), 1, + [32212] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3630), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1520), 2, sym_line_comment, - ACTIONS(3338), 15, + sym_block_comment, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138519,13 +139907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 24, + ACTIONS(3628), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_SQUOTE, anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138544,11 +139932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46515] = 3, - ACTIONS(3), 2, - sym_block_comment, + [32270] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1521), 2, sym_line_comment, - ACTIONS(3308), 16, + sym_block_comment, + ACTIONS(3212), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138565,14 +139957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3306), 25, + ACTIONS(3210), 25, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138591,15 +139983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46565] = 5, - ACTIONS(3799), 1, - anon_sym_BANG, - ACTIONS(3931), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [32326] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1522), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(3350), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138615,11 +140007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 24, + ACTIONS(3348), 26, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -138640,47 +140034,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46619] = 16, - ACTIONS(29), 1, + [32382] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1660), 1, + ACTIONS(1552), 1, anon_sym_DASH, - ACTIONS(1682), 1, + ACTIONS(1574), 1, aux_sym_string_literal_token1, - ACTIONS(3933), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3937), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(3941), 1, + ACTIONS(3841), 1, sym_metavariable, - STATE(2504), 1, + STATE(2664), 1, sym_scoped_identifier, - STATE(2790), 1, + STATE(2697), 1, sym__literal_pattern, - STATE(3342), 1, + STATE(3383), 1, sym_generic_type_with_turbofish, - STATE(3360), 1, + STATE(3401), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1684), 2, + ACTIONS(1576), 2, anon_sym_true, anon_sym_false, - ACTIONS(3939), 3, + STATE(1523), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3839), 3, sym_self, sym_super, sym_crate, - STATE(2258), 3, + STATE(2306), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(1680), 4, + ACTIONS(1572), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3935), 19, + ACTIONS(3835), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138700,47 +140098,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46695] = 16, - ACTIONS(29), 1, + [32464] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1524), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3340), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3338), 26, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32520] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1660), 1, + ACTIONS(1552), 1, anon_sym_DASH, - ACTIONS(1682), 1, + ACTIONS(1574), 1, aux_sym_string_literal_token1, - ACTIONS(3937), 1, + ACTIONS(3837), 1, anon_sym_COLON_COLON, - ACTIONS(3943), 1, + ACTIONS(3843), 1, sym_identifier, - ACTIONS(3949), 1, + ACTIONS(3849), 1, sym_metavariable, - STATE(2484), 1, + STATE(2620), 1, sym_scoped_identifier, - STATE(2774), 1, + STATE(2720), 1, sym__literal_pattern, - STATE(3342), 1, + STATE(3383), 1, sym_generic_type_with_turbofish, - STATE(3360), 1, + STATE(3401), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1684), 2, + ACTIONS(1576), 2, anon_sym_true, anon_sym_false, - ACTIONS(3947), 3, + STATE(1525), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3847), 3, sym_self, sym_super, sym_crate, - STATE(2258), 3, + STATE(2306), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(1680), 4, + ACTIONS(1572), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3945), 19, + ACTIONS(3845), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138760,16 +140213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46771] = 3, - ACTIONS(3), 2, - sym_block_comment, + [32602] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1526), 2, sym_line_comment, - ACTIONS(3476), 15, + sym_block_comment, + ACTIONS(3212), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -138780,15 +140238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3474), 26, + ACTIONS(3210), 25, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138807,11 +140264,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46821] = 3, - ACTIONS(3), 2, + [32658] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3851), 1, + anon_sym_COLON_COLON, + ACTIONS(3853), 1, + anon_sym_BANG, + STATE(1527), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3248), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3246), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32718] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3855), 1, + anon_sym_else, + STATE(1674), 1, + sym_else_clause, + STATE(1528), 2, sym_line_comment, - ACTIONS(3434), 15, + sym_block_comment, + ACTIONS(744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138827,13 +140345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3432), 26, + ACTIONS(742), 24, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -138854,47 +140370,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46871] = 16, - ACTIONS(29), 1, + [32778] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1026), 1, + ACTIONS(1028), 1, anon_sym_DASH, - ACTIONS(1068), 1, + ACTIONS(1070), 1, aux_sym_string_literal_token1, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(3951), 1, + ACTIONS(3857), 1, sym_identifier, - ACTIONS(3957), 1, + ACTIONS(3863), 1, sym_metavariable, - STATE(2014), 1, + STATE(2042), 1, sym_scoped_identifier, - STATE(2043), 1, + STATE(2065), 1, sym__literal_pattern, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1070), 2, + ACTIONS(1072), 2, anon_sym_true, anon_sym_false, - ACTIONS(3955), 3, + STATE(1529), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3861), 3, sym_self, sym_super, sym_crate, - STATE(1979), 3, + STATE(2012), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(1066), 4, + ACTIONS(1068), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3953), 19, + ACTIONS(3859), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138914,11 +140434,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46947] = 3, - ACTIONS(3), 2, - sym_block_comment, + [32860] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_BANG, + ACTIONS(3865), 1, + anon_sym_COLON_COLON, + STATE(1530), 2, sym_line_comment, - ACTIONS(3388), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -138934,15 +140462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3386), 26, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138961,47 +140487,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46997] = 16, - ACTIONS(29), 1, + [32920] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1026), 1, + ACTIONS(1028), 1, anon_sym_DASH, - ACTIONS(1068), 1, + ACTIONS(1070), 1, aux_sym_string_literal_token1, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(3959), 1, + ACTIONS(3867), 1, sym_identifier, - ACTIONS(3965), 1, + ACTIONS(3873), 1, sym_metavariable, - STATE(1994), 1, + STATE(2027), 1, sym_scoped_identifier, - STATE(2034), 1, + STATE(2081), 1, sym__literal_pattern, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1070), 2, + ACTIONS(1072), 2, anon_sym_true, anon_sym_false, - ACTIONS(3963), 3, + STATE(1531), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3871), 3, sym_self, sym_super, sym_crate, - STATE(1979), 3, + STATE(2012), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(1066), 4, + ACTIONS(1068), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3961), 19, + ACTIONS(3869), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139021,11 +140551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [47073] = 3, - ACTIONS(3), 2, - sym_block_comment, + [33002] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1532), 2, sym_line_comment, - ACTIONS(3324), 17, + sym_block_comment, + ACTIONS(3312), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139039,24 +140573,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3322), 23, + ACTIONS(3310), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -139066,14 +140599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47122] = 4, - ACTIONS(3969), 1, + [33057] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3877), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, + STATE(1533), 2, sym_line_comment, - ACTIONS(3971), 8, + sym_block_comment, + ACTIONS(3879), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_COLON_COLON, @@ -139082,7 +140620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3967), 31, + ACTIONS(3875), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139114,11 +140652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47173] = 3, - ACTIONS(3), 2, - sym_block_comment, + [33114] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1534), 2, sym_line_comment, - ACTIONS(3392), 15, + sym_block_comment, + ACTIONS(894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139134,14 +140676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3390), 25, + ACTIONS(892), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_as, anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139160,62 +140702,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47222] = 23, - ACTIONS(694), 1, + [33169] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(529), 1, anon_sym_RBRACK, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3973), 1, + ACTIONS(3881), 1, anon_sym_SEMI, - ACTIONS(3975), 1, + ACTIONS(3883), 1, anon_sym_COMMA, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - STATE(2668), 1, + STATE(2730), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139226,11 +140772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47311] = 3, - ACTIONS(3), 2, - sym_block_comment, + [33264] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3851), 1, + anon_sym_COLON_COLON, + STATE(1536), 2, sym_line_comment, - ACTIONS(3462), 15, + sym_block_comment, + ACTIONS(3248), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139246,12 +140798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3460), 25, + ACTIONS(3246), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -139272,44 +140823,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47360] = 5, - ACTIONS(3981), 1, - anon_sym_LPAREN, - STATE(1640), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3470), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + [33321] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(696), 1, + anon_sym_RBRACK, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3719), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3723), 1, anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, anon_sym_DOT_DOT, + ACTIONS(3889), 1, + anon_sym_SEMI, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2678), 1, + aux_sym_arguments_repeat1, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 23, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1537), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139320,13 +140893,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47413] = 4, - ACTIONS(3983), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [33416] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1288), 1, + sym_label, + STATE(1538), 2, sym_line_comment, - ACTIONS(3500), 15, + sym_block_comment, + ACTIONS(3394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139342,13 +140919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3498), 24, + ACTIONS(3392), 24, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139367,128 +140944,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47464] = 23, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3989), 1, - anon_sym_EQ, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_DOT_DOT, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - STATE(1121), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [33473] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1539), 2, sym_line_comment, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(880), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3995), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4011), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47553] = 23, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(3586), 1, + ACTIONS(878), 25, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(3590), 1, anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, anon_sym_as, - ACTIONS(3989), 1, - anon_sym_EQ, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_DOT_DOT, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - STATE(1337), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3999), 2, + anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139499,13 +140994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47642] = 4, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [33528] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1540), 2, sym_line_comment, - ACTIONS(3292), 15, + sym_block_comment, + ACTIONS(870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139521,13 +141018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3290), 24, + ACTIONS(868), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139546,43 +141044,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47693] = 4, - ACTIONS(4015), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(900), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + [33583] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3901), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(898), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3911), 1, anon_sym_AMP_AMP, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, + STATE(1119), 1, + sym_block, + STATE(3440), 1, + sym_label, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3907), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1541), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139593,11 +141114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47744] = 3, - ACTIONS(3), 2, - sym_block_comment, + [33678] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3921), 1, + anon_sym_DASH_GT, + STATE(1542), 2, sym_line_comment, - ACTIONS(3480), 15, + sym_block_comment, + ACTIONS(3404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139613,12 +141140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3478), 25, + ACTIONS(3402), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -139639,62 +141165,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47793] = 23, - ACTIONS(690), 1, + [33735] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(674), 1, anon_sym_RBRACK, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4017), 1, + ACTIONS(3923), 1, anon_sym_SEMI, - ACTIONS(4019), 1, + ACTIONS(3925), 1, anon_sym_COMMA, - STATE(2734), 1, + STATE(2834), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139705,42 +141235,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47882] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3372), 15, + [33830] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, + anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3909), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + STATE(1354), 1, + sym_block, + STATE(3440), 1, + sym_label, + ACTIONS(3893), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3370), 25, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_if, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139751,11 +141305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47931] = 3, - ACTIONS(3), 2, - sym_block_comment, + [33925] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1545), 2, sym_line_comment, - ACTIONS(3785), 9, + sym_block_comment, + ACTIONS(3705), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -139765,7 +141323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3783), 31, + ACTIONS(3703), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139797,60 +141355,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [47980] = 4, - ACTIONS(4021), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [33980] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1546), 2, sym_line_comment, - ACTIONS(3300), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3298), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48031] = 4, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3300), 15, + ACTIONS(890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139866,13 +141379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 24, + ACTIONS(888), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139891,13 +141405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48082] = 4, - ACTIONS(4023), 1, + [34035] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3927), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1547), 2, sym_line_comment, - ACTIONS(3971), 8, + sym_block_comment, + ACTIONS(3879), 8, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -139906,7 +141424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3967), 31, + ACTIONS(3875), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139938,62 +141456,47 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48133] = 23, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3989), 1, - anon_sym_EQ, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_DOT_DOT, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - STATE(1654), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [34092] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + STATE(1548), 2, sym_line_comment, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3995), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(996), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140004,13 +141507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48222] = 4, - ACTIONS(4025), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [34149] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1549), 2, sym_line_comment, - ACTIONS(3376), 15, + sym_block_comment, + ACTIONS(874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140026,13 +141531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3374), 24, + ACTIONS(872), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140051,11 +141557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48273] = 3, - ACTIONS(3), 2, - sym_block_comment, + [34204] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3931), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_arguments, + STATE(1550), 2, sym_line_comment, - ACTIONS(3416), 15, + sym_block_comment, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140071,12 +141585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3414), 25, - anon_sym_LPAREN, + ACTIONS(3368), 23, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -140097,62 +141609,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48322] = 23, - ACTIONS(15), 1, + [34263] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3897), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4001), 1, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - STATE(194), 1, + STATE(284), 1, sym_block, - STATE(3218), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1551), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140163,13 +141679,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48411] = 4, - ACTIONS(4013), 1, + [34358] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3933), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1552), 2, sym_line_comment, - ACTIONS(3320), 15, + sym_block_comment, + ACTIONS(3216), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140185,7 +141705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3318), 24, + ACTIONS(3214), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -140210,62 +141730,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48462] = 23, - ACTIONS(389), 1, + [34415] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3897), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4001), 1, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - STATE(1678), 1, + STATE(264), 1, sym_block, - STATE(3448), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1553), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140276,13 +141800,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48551] = 4, - ACTIONS(3726), 1, + [34510] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3935), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + STATE(1554), 2, + sym_line_comment, sym_block_comment, + ACTIONS(994), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(996), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34567] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3937), 1, + anon_sym_COLON_COLON, + STATE(1555), 2, sym_line_comment, - ACTIONS(3728), 15, + sym_block_comment, + ACTIONS(3216), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140298,13 +141877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3724), 24, + ACTIONS(3214), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_SQUOTE, anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140323,62 +141902,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48602] = 23, - ACTIONS(910), 1, + [34624] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3897), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4001), 1, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - STATE(466), 1, + STATE(1590), 1, sym_block, - STATE(3449), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140389,62 +141972,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48691] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3989), 1, + [34719] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3939), 1, + anon_sym_COLON_COLON, + STATE(1557), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3216), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3991), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(3993), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3997), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4001), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3214), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(4005), 1, anon_sym_PIPE_PIPE, - STATE(300), 1, - sym_block, - STATE(3218), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34776] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + STATE(1558), 2, sym_line_comment, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(3632), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3995), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3628), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140455,13 +142074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48780] = 4, - ACTIONS(4027), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [34833] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1559), 2, sym_line_comment, - ACTIONS(3382), 15, + sym_block_comment, + ACTIONS(3380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140477,11 +142098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3380), 24, + ACTIONS(3378), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -140502,13 +142124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48831] = 4, - ACTIONS(4029), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [34888] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1560), 2, sym_line_comment, - ACTIONS(3422), 15, + sym_block_comment, + ACTIONS(3264), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140524,11 +142148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3420), 24, + ACTIONS(3262), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -140549,62 +142174,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48882] = 23, - ACTIONS(642), 1, - anon_sym_RBRACK, - ACTIONS(3586), 1, + [34943] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3909), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4031), 1, - anon_sym_SEMI, - ACTIONS(4033), 1, - anon_sym_COMMA, - STATE(2921), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + STATE(1723), 1, + sym_block, + STATE(3489), 1, + sym_label, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3907), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + STATE(1561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3919), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35038] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, + anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3909), 1, + anon_sym_DOT_DOT, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + STATE(478), 1, + sym_block, + STATE(3490), 1, + sym_label, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140615,62 +142314,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48971] = 23, - ACTIONS(910), 1, + [35133] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3897), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4001), 1, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - STATE(470), 1, + STATE(472), 1, sym_block, - STATE(3449), 1, + STATE(3490), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140681,13 +142384,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49060] = 4, - ACTIONS(4035), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [35228] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1564), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3364), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3362), 25, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35283] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3941), 1, + anon_sym_DASH_GT, + STATE(1565), 2, sym_line_comment, - ACTIONS(3360), 15, + sym_block_comment, + ACTIONS(3384), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140703,7 +142460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3358), 24, + ACTIONS(3382), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -140728,13 +142485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49111] = 4, - STATE(1276), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [35340] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3827), 1, + anon_sym_COLON_COLON, + STATE(1566), 2, sym_line_comment, - ACTIONS(3396), 15, + sym_block_comment, + ACTIONS(3248), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140750,7 +142511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3394), 24, + ACTIONS(3246), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -140775,13 +142536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49162] = 4, - ACTIONS(3929), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [35397] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3943), 1, + anon_sym_DASH_GT, + STATE(1567), 2, sym_line_comment, - ACTIONS(3338), 15, + sym_block_comment, + ACTIONS(3354), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140797,13 +142562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 24, + ACTIONS(3352), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_SQUOTE, anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140822,13 +142587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49213] = 4, - ACTIONS(4037), 1, + [35454] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3945), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1568), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140844,7 +142613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 24, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -140869,11 +142638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49264] = 3, - ACTIONS(3), 2, - sym_block_comment, + [35511] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1569), 2, sym_line_comment, - ACTIONS(3496), 15, + sym_block_comment, + ACTIONS(3316), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140889,7 +142662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3494), 25, + ACTIONS(3314), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -140915,11 +142688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49313] = 3, - ACTIONS(3), 2, - sym_block_comment, + [35566] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1570), 2, sym_line_comment, - ACTIONS(890), 15, + sym_block_comment, + ACTIONS(3320), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140935,14 +142712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(888), 25, + ACTIONS(3318), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140961,11 +142738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49362] = 3, - ACTIONS(3), 2, - sym_block_comment, + [35621] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3939), 1, + anon_sym_COLON_COLON, + STATE(1571), 2, sym_line_comment, - ACTIONS(3490), 15, + sym_block_comment, + ACTIONS(3196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140981,12 +142764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3488), 25, + ACTIONS(3194), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -141007,13 +142789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49411] = 4, - ACTIONS(3756), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [35678] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1572), 2, sym_line_comment, - ACTIONS(3728), 15, + sym_block_comment, + ACTIONS(3324), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141029,13 +142813,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3724), 24, + ACTIONS(3322), 25, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141054,11 +142839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49462] = 3, - ACTIONS(3), 2, - sym_block_comment, + [35733] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, + anon_sym_COLON_COLON, + STATE(1573), 2, sym_line_comment, - ACTIONS(3430), 15, + sym_block_comment, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141074,14 +142865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3428), 25, + ACTIONS(3628), 24, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141100,13 +142890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49511] = 4, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [35790] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1574), 2, sym_line_comment, - ACTIONS(900), 15, + sym_block_comment, + ACTIONS(3208), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141120,9 +142912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(898), 24, + anon_sym_LT_LT_EQ, + ACTIONS(3206), 23, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -141130,12 +142924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141145,45 +142939,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49562] = 4, - ACTIONS(4041), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3402), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + [35845] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(541), 1, + anon_sym_RBRACK, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3719), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3723), 1, anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, anon_sym_DOT_DOT, + ACTIONS(3947), 1, + anon_sym_SEMI, + ACTIONS(3949), 1, + anon_sym_COMMA, + STATE(2929), 1, + aux_sym_arguments_repeat1, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3400), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141194,13 +143010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49613] = 4, - ACTIONS(4013), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [35940] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3951), 1, + anon_sym_DASH_GT, + STATE(1576), 2, sym_line_comment, - ACTIONS(3296), 15, + sym_block_comment, + ACTIONS(3298), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141216,7 +143036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3294), 24, + ACTIONS(3296), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -141241,77 +143061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49664] = 23, - ACTIONS(531), 1, - anon_sym_RBRACK, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4043), 1, - anon_sym_SEMI, - ACTIONS(4045), 1, - anon_sym_COMMA, - STATE(2899), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + [35997] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1577), 2, sym_line_comment, - ACTIONS(3805), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3845), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49753] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4049), 9, + ACTIONS(3955), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -141321,7 +143079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4047), 31, + ACTIONS(3953), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141353,11 +143111,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49802] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36052] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1578), 2, sym_line_comment, - ACTIONS(3772), 9, + sym_block_comment, + ACTIONS(3709), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -141367,7 +143129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3770), 31, + ACTIONS(3707), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141399,11 +143161,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49851] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36107] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3957), 1, + anon_sym_DASH_GT, + STATE(1579), 2, sym_line_comment, - ACTIONS(876), 15, + sym_block_comment, + ACTIONS(3258), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141419,14 +143187,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(874), 25, + ACTIONS(3256), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141445,11 +143212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49900] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36164] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3959), 1, + anon_sym_DASH_GT, + STATE(1580), 2, sym_line_comment, - ACTIONS(882), 15, + sym_block_comment, + ACTIONS(3328), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141465,14 +143238,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(880), 25, + ACTIONS(3326), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141491,11 +143263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49949] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36221] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3939), 1, + anon_sym_COLON_COLON, + STATE(1581), 2, sym_line_comment, - ACTIONS(870), 15, + sym_block_comment, + ACTIONS(3228), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141511,14 +143289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(868), 25, + ACTIONS(3226), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141537,11 +143314,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49998] = 3, - ACTIONS(3), 2, + [36278] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1582), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3963), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3961), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36333] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1583), 2, sym_line_comment, - ACTIONS(886), 15, + sym_block_comment, + ACTIONS(3336), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141557,14 +143388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(884), 25, + ACTIONS(3334), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141583,13 +143414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50047] = 4, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [36388] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1584), 2, sym_line_comment, - ACTIONS(3300), 15, + sym_block_comment, + ACTIONS(3344), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141605,11 +143438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 24, + ACTIONS(3342), 25, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -141630,11 +143464,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50098] = 3, - ACTIONS(3), 2, + [36443] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1585), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3967), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3965), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36498] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3939), 1, + anon_sym_COLON_COLON, + STATE(1586), 2, sym_line_comment, - ACTIONS(3368), 15, + sym_block_comment, + ACTIONS(3184), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141650,12 +143540,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3366), 25, + ACTIONS(3182), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -141676,59 +143565,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50147] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36555] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3969), 1, + anon_sym_DASH_GT, + STATE(1587), 2, sym_line_comment, - ACTIONS(4055), 9, + sym_block_comment, + ACTIONS(3292), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3290), 24, anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36612] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1588), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3400), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3398), 25, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_COLON_COLON, - anon_sym_BANG, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36667] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3903), 2, anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4053), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50196] = 4, - ACTIONS(4057), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + anon_sym_GT, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3971), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1589), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3620), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3919), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36755] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1590), 2, sym_line_comment, - ACTIONS(3484), 15, + sym_block_comment, + ACTIONS(980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141744,7 +143756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3482), 24, + ACTIONS(978), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -141769,57 +143781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50247] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36809] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1591), 2, sym_line_comment, - ACTIONS(4061), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4059), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50296] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3408), 15, + ACTIONS(3562), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141835,12 +143805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 25, + ACTIONS(3560), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -141861,13 +143830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50345] = 4, - ACTIONS(3925), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [36863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1592), 2, sym_line_comment, - ACTIONS(3338), 15, + sym_block_comment, + ACTIONS(3578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141883,7 +143854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 24, + ACTIONS(3576), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -141908,11 +143879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50396] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36917] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1593), 2, sym_line_comment, - ACTIONS(3732), 15, + sym_block_comment, + ACTIONS(3586), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141928,7 +143903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3730), 24, + ACTIONS(3584), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -141953,11 +143928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50444] = 3, - ACTIONS(3), 2, - sym_block_comment, + [36971] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1594), 2, sym_line_comment, - ACTIONS(1562), 15, + sym_block_comment, + ACTIONS(3538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141973,7 +143952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1564), 24, + ACTIONS(3536), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -141998,11 +143977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50492] = 3, - ACTIONS(3), 2, - sym_block_comment, + [37025] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1595), 2, sym_line_comment, - ACTIONS(3666), 15, + sym_block_comment, + ACTIONS(3590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142018,7 +144001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3664), 24, + ACTIONS(3588), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142043,11 +144026,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50540] = 3, - ACTIONS(3), 2, + [37079] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1596), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3975), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37167] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(676), 1, + anon_sym_RPAREN, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(3977), 1, + anon_sym_COMMA, + STATE(2899), 1, + aux_sym_arguments_repeat1, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1597), 2, sym_line_comment, - ACTIONS(3682), 15, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37259] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(686), 1, + anon_sym_RPAREN, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(3979), 1, + anon_sym_COMMA, + STATE(2874), 1, + aux_sym_arguments_repeat1, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1598), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37351] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1599), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3640), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142063,7 +144252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3680), 24, + ACTIONS(3638), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142088,11 +144277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50588] = 3, - ACTIONS(3), 2, - sym_block_comment, + [37405] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1600), 2, sym_line_comment, - ACTIONS(3678), 15, + sym_block_comment, + ACTIONS(1518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142108,7 +144301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3676), 24, + ACTIONS(1520), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142133,11 +144326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50636] = 3, - ACTIONS(3), 2, - sym_block_comment, + [37459] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1601), 2, sym_line_comment, - ACTIONS(3654), 15, + sym_block_comment, + ACTIONS(3468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142153,7 +144350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3652), 24, + ACTIONS(3466), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142178,11 +144375,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50684] = 3, - ACTIONS(3), 2, - sym_block_comment, + [37513] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1602), 2, sym_line_comment, - ACTIONS(3608), 15, + sym_block_comment, + ACTIONS(3464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142198,7 +144399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3606), 24, + ACTIONS(3462), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142223,58 +144424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50732] = 20, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + [37567] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1603), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(3460), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3815), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3458), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4063), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3827), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142285,60 +144473,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50814] = 22, - ACTIONS(692), 1, - anon_sym_RPAREN, - ACTIONS(3586), 1, + [37621] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(694), 1, + anon_sym_RBRACK, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4065), 1, + ACTIONS(3981), 1, anon_sym_COMMA, - STATE(2912), 1, + STATE(2807), 1, aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142349,11 +144541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50900] = 3, - ACTIONS(3), 2, - sym_block_comment, + [37713] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1605), 2, sym_line_comment, - ACTIONS(3754), 15, + sym_block_comment, + ACTIONS(3424), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142369,7 +144565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3752), 24, + ACTIONS(3422), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142394,11 +144590,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50948] = 3, - ACTIONS(3), 2, + [37767] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(3983), 1, + anon_sym_RPAREN, + ACTIONS(3985), 1, + anon_sym_COMMA, + STATE(2791), 1, + aux_sym_arguments_repeat1, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1606), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37859] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1607), 2, sym_line_comment, - ACTIONS(986), 15, + sym_block_comment, + ACTIONS(3412), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142414,7 +144682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(984), 24, + ACTIONS(3410), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142439,60 +144707,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50996] = 22, - ACTIONS(668), 1, - anon_sym_RPAREN, - ACTIONS(3586), 1, + [37913] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3769), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3973), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2833), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3971), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3767), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142503,60 +144772,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51082] = 22, - ACTIONS(650), 1, - anon_sym_RBRACK, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, + [37999] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1490), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, anon_sym_AMP, - ACTIONS(3813), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3817), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3823), 1, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1492), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(3825), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38053] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1610), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(3668), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3815), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3666), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142567,60 +144870,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51168] = 22, - ACTIONS(3586), 1, + [38107] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(377), 2, anon_sym_EQ, - ACTIONS(3979), 1, anon_sym_DOT_DOT, - ACTIONS(4071), 1, - anon_sym_RPAREN, - ACTIONS(4073), 1, - anon_sym_COMMA, - STATE(2750), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(375), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142631,11 +144933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51254] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38189] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1612), 2, sym_line_comment, - ACTIONS(3746), 15, + sym_block_comment, + ACTIONS(3216), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142651,7 +144957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3744), 24, + ACTIONS(3214), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142676,11 +144982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51302] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38243] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1613), 2, sym_line_comment, - ACTIONS(3532), 15, + sym_block_comment, + ACTIONS(908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142696,7 +145006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3530), 24, + ACTIONS(906), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142721,11 +145031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51350] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38297] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1614), 2, sym_line_comment, - ACTIONS(3528), 15, + sym_block_comment, + ACTIONS(952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142741,7 +145055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3526), 24, + ACTIONS(950), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142766,11 +145080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51398] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38351] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1615), 2, sym_line_comment, - ACTIONS(3524), 15, + sym_block_comment, + ACTIONS(960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142786,7 +145104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3522), 24, + ACTIONS(958), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142811,11 +145129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51446] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38405] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1616), 2, sym_line_comment, - ACTIONS(3300), 15, + sym_block_comment, + ACTIONS(1468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142831,7 +145153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 24, + ACTIONS(1470), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142856,11 +145178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51494] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38459] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1617), 2, sym_line_comment, - ACTIONS(3470), 15, + sym_block_comment, + ACTIONS(968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142876,7 +145202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 24, + ACTIONS(966), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142901,11 +145227,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51542] = 3, - ACTIONS(3), 2, + [38513] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3761), 1, + anon_sym_EQ, + ACTIONS(3899), 1, + anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3971), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1618), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3759), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38599] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1619), 2, sym_line_comment, - ACTIONS(932), 15, + sym_block_comment, + ACTIONS(900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142921,7 +145316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(930), 24, + ACTIONS(898), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142946,11 +145341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51590] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38653] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1620), 2, sym_line_comment, - ACTIONS(908), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142966,7 +145365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(906), 24, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -142991,11 +145390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51638] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38707] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1621), 2, sym_line_comment, - ACTIONS(3576), 15, + sym_block_comment, + ACTIONS(3416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143011,7 +145414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3574), 24, + ACTIONS(3414), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143036,41 +145439,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51686] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(936), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, + [38761] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(333), 1, anon_sym_EQ, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3901), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, anon_sym_DOT_DOT, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(934), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3971), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(327), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143081,11 +145504,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51734] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38847] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1623), 2, sym_line_comment, - ACTIONS(960), 15, + sym_block_comment, + ACTIONS(1464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143101,7 +145528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(958), 24, + ACTIONS(1466), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143126,11 +145553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51782] = 3, - ACTIONS(3), 2, - sym_block_comment, + [38901] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1624), 2, sym_line_comment, - ACTIONS(3582), 15, + sym_block_comment, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143146,7 +145577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 24, + ACTIONS(3368), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143171,22 +145602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51830] = 6, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, + [38955] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1625), 2, sym_line_comment, - ACTIONS(3588), 14, + sym_block_comment, + ACTIONS(3602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -143196,9 +145626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3584), 22, + ACTIONS(3600), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -143219,11 +145651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51884] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39009] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1626), 2, sym_line_comment, - ACTIONS(3516), 15, + sym_block_comment, + ACTIONS(1004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143239,7 +145675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3514), 24, + ACTIONS(1002), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143264,11 +145700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51932] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39063] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1627), 2, sym_line_comment, - ACTIONS(3714), 15, + sym_block_comment, + ACTIONS(3444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143284,7 +145724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3712), 24, + ACTIONS(3442), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143309,57 +145749,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51980] = 19, - ACTIONS(3586), 1, + [39117] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3837), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4003), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3987), 1, + anon_sym_RPAREN, + ACTIONS(3989), 1, + anon_sym_COMMA, + STATE(2794), 1, + aux_sym_arguments_repeat1, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4081), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 3, + STATE(1628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3835), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143370,22 +145817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52060] = 6, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, + [39209] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1629), 2, sym_line_comment, - ACTIONS(3596), 14, + sym_block_comment, + ACTIONS(3152), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -143395,9 +145841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3594), 22, + ACTIONS(3154), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -143418,11 +145866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52114] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1630), 2, sym_line_comment, - ACTIONS(3512), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143438,7 +145890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3510), 24, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143463,182 +145915,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52162] = 20, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4089), 1, - anon_sym_EQ, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, - anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [39317] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1631), 2, sym_line_comment, - ACTIONS(4085), 2, + sym_block_comment, + ACTIONS(3228), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3688), 3, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(4087), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4113), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52244] = 20, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4089), 1, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4091), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(4093), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3708), 3, + ACTIONS(3226), 24, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4113), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52326] = 20, - ACTIONS(4075), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4089), 1, - anon_sym_EQ, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, - anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 2, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3720), 3, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4113), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143649,11 +145964,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52408] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39371] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1632), 2, sym_line_comment, - ACTIONS(1620), 15, + sym_block_comment, + ACTIONS(3490), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143669,7 +145988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1622), 24, + ACTIONS(3488), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143694,17 +146013,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52456] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39425] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + STATE(1633), 2, sym_line_comment, - ACTIONS(3252), 15, + sym_block_comment, + ACTIONS(3496), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -143714,11 +146042,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3254), 24, + ACTIONS(3492), 22, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -143739,55 +146065,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52504] = 17, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [39485] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1634), 2, sym_line_comment, - ACTIONS(371), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(3472), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3995), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3470), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143798,11 +146114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52580] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39539] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1635), 2, sym_line_comment, - ACTIONS(3296), 15, + sym_block_comment, + ACTIONS(3184), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143818,7 +146138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3294), 24, + ACTIONS(3182), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -143843,60 +146163,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52628] = 22, - ACTIONS(3586), 1, + [39593] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4115), 1, - anon_sym_RPAREN, - ACTIONS(4117), 1, - anon_sym_COMMA, - STATE(2768), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4013), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1636), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3612), 3, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4025), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143907,17 +146229,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52714] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39681] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + STATE(1637), 2, sym_line_comment, - ACTIONS(3320), 15, + sym_block_comment, + ACTIONS(3528), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -143927,11 +146258,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3318), 24, + ACTIONS(3526), 22, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -143952,57 +146281,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52762] = 19, - ACTIONS(3586), 1, + [39741] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3809), 1, + ACTIONS(4001), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(4003), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4081), 2, + ACTIONS(4013), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 3, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3620), 3, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3803), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(4025), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144013,41 +146347,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52842] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3520), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + [39829] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, anon_sym_DOT, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4003), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4005), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4009), 1, anon_sym_PIPE, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, anon_sym_DOT_DOT, + ACTIONS(4017), 1, + anon_sym_AMP_AMP, + ACTIONS(4019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4007), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4013), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3518), 24, + STATE(1639), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3616), 3, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3999), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4025), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144058,11 +146413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52890] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39917] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1640), 2, sym_line_comment, - ACTIONS(990), 15, + sym_block_comment, + ACTIONS(1012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144078,7 +146437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(988), 24, + ACTIONS(1010), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144103,11 +146462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52938] = 3, - ACTIONS(3), 2, - sym_block_comment, + [39971] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1641), 2, sym_line_comment, - ACTIONS(974), 15, + sym_block_comment, + ACTIONS(972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144123,7 +146486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(972), 24, + ACTIONS(970), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144148,11 +146511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52986] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40025] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1642), 2, sym_line_comment, - ACTIONS(1600), 15, + sym_block_comment, + ACTIONS(928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144168,7 +146535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1602), 24, + ACTIONS(926), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144193,11 +146560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53034] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40079] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1643), 2, sym_line_comment, - ACTIONS(956), 15, + sym_block_comment, + ACTIONS(3524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144213,7 +146584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(954), 24, + ACTIONS(3522), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144238,72 +146609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53082] = 19, - ACTIONS(331), 1, - anon_sym_EQ, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + [40133] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1644), 2, sym_line_comment, - ACTIONS(3985), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4009), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4081), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(325), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53162] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3642), 15, + ACTIONS(3532), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144319,7 +146633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3640), 24, + ACTIONS(3530), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144344,11 +146658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53210] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40187] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1645), 2, sym_line_comment, - ACTIONS(1590), 15, + sym_block_comment, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144364,7 +146682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1592), 24, + ACTIONS(3480), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144389,11 +146707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53258] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40241] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1646), 2, sym_line_comment, - ACTIONS(3646), 15, + sym_block_comment, + ACTIONS(3508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144409,7 +146731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3644), 24, + ACTIONS(3506), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144434,11 +146756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53306] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40295] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1647), 2, sym_line_comment, - ACTIONS(3650), 15, + sym_block_comment, + ACTIONS(3550), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144454,7 +146780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3648), 24, + ACTIONS(3548), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144479,72 +146805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53354] = 19, - ACTIONS(331), 1, - anon_sym_EQ, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, - anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [40349] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1648), 2, sym_line_comment, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(325), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53434] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3624), 15, + ACTIONS(3512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144560,7 +146829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3622), 24, + ACTIONS(3510), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144585,11 +146854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53482] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1649), 2, sym_line_comment, - ACTIONS(3620), 15, + sym_block_comment, + ACTIONS(3554), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144605,7 +146878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3618), 24, + ACTIONS(3552), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144630,11 +146903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53530] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40457] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1650), 2, sym_line_comment, - ACTIONS(3628), 15, + sym_block_comment, + ACTIONS(3558), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144650,7 +146927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3626), 24, + ACTIONS(3556), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144675,86 +146952,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53578] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3658), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, + [40511] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3745), 1, anon_sym_EQ, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, anon_sym_DOT, + ACTIONS(4003), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4005), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4009), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3656), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(4011), 1, anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, anon_sym_AMP_AMP, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53626] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3508), 15, + ACTIONS(3997), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3506), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(4013), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3743), 13, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144765,11 +147017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53674] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40597] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1652), 2, sym_line_comment, - ACTIONS(952), 15, + sym_block_comment, + ACTIONS(3570), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144785,7 +147041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(950), 24, + ACTIONS(3568), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144794,73 +147050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53722] = 19, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, - anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3803), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144871,19 +147066,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53802] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3662), 15, + [40651] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(3997), 2, anon_sym_PLUS, + anon_sym_DASH, + STATE(1653), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3644), 9, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -144891,12 +147099,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3660), 24, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -144916,11 +147121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53850] = 3, - ACTIONS(3), 2, - sym_block_comment, + [40717] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1654), 2, sym_line_comment, - ACTIONS(3674), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144936,7 +147145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3672), 24, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -144961,55 +147170,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53898] = 17, - ACTIONS(4075), 1, + [40771] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4091), 1, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(4093), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(4097), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(4099), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4105), 1, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(371), 2, + ACTIONS(3644), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4085), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4095), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4111), 2, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4109), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 15, + ACTIONS(3642), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145020,57 +147232,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53974] = 19, - ACTIONS(3837), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [40851] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4091), 1, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(4093), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(4097), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(4099), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4103), 1, + ACTIONS(3644), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4095), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4109), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3835), 13, + ACTIONS(3642), 17, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145081,41 +147293,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54054] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + [40929] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3901), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, anon_sym_DOT_DOT, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3598), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3971), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1657), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3616), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145126,86 +147359,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54102] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3600), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + [41017] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, anon_sym_DOT, + ACTIONS(4003), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4005), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4009), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3598), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(4011), 1, anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4017), 1, anon_sym_AMP_AMP, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54150] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3634), 15, + ACTIONS(3765), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3997), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3632), 24, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4021), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3763), 15, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145216,58 +147422,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54198] = 20, - ACTIONS(3586), 1, + [41099] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(333), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4013), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4119), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3827), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(327), 13, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145278,32 +147487,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54280] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3568), 15, + [41185] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4003), 1, + anon_sym_AMP, + ACTIONS(4005), 1, + anon_sym_CARET, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(3997), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3644), 5, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3566), 24, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -145323,77 +147545,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54328] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3638), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + [41257] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, anon_sym_DOT, + ACTIONS(4003), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4005), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4009), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(3997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 24, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54376] = 3, - ACTIONS(3), 2, - sym_block_comment, + STATE(1661), 2, sym_line_comment, - ACTIONS(3670), 15, - anon_sym_PLUS, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3644), 4, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3668), 24, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -145413,11 +147604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54424] = 3, - ACTIONS(3), 2, - sym_block_comment, + [41331] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1662), 2, sym_line_comment, - ACTIONS(982), 15, + sym_block_comment, + ACTIONS(3542), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145433,7 +147628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(980), 24, + ACTIONS(3540), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145458,32 +147653,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54472] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(904), 15, + [41385] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4003), 1, + anon_sym_AMP, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(3997), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, anon_sym_PERCENT, + ACTIONS(3644), 6, + anon_sym_EQ, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(902), 24, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -145503,11 +147710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54520] = 3, - ACTIONS(3), 2, - sym_block_comment, + [41455] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1664), 2, sym_line_comment, - ACTIONS(3686), 15, + sym_block_comment, + ACTIONS(3618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145523,7 +147734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3684), 24, + ACTIONS(3616), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145548,32 +147759,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54568] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(970), 15, + [41509] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(3997), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3644), 7, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(968), 24, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -145593,60 +147815,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54616] = 22, - ACTIONS(662), 1, - anon_sym_RBRACK, - ACTIONS(3586), 1, + [41577] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3761), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4121), 1, - anon_sym_COMMA, - STATE(2793), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4013), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3759), 13, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145657,11 +147880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54702] = 3, - ACTIONS(3), 2, - sym_block_comment, + [41663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1667), 2, sym_line_comment, - ACTIONS(3572), 15, + sym_block_comment, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145677,7 +147904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3570), 24, + ACTIONS(3518), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145702,11 +147929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54750] = 3, - ACTIONS(3), 2, - sym_block_comment, + [41717] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1668), 2, sym_line_comment, - ACTIONS(3564), 15, + sym_block_comment, + ACTIONS(3516), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145722,7 +147953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3562), 24, + ACTIONS(3514), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145747,58 +147978,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54798] = 20, - ACTIONS(3586), 1, + [41771] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3989), 1, - anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(4003), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, + ACTIONS(377), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4081), 2, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4021), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(375), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3720), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(3987), 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41853] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3769), 1, + anon_sym_EQ, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4003), 1, + anon_sym_AMP, + ACTIONS(4005), 1, + anon_sym_CARET, + ACTIONS(4009), 1, + anon_sym_PIPE, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, + anon_sym_AMP_AMP, + ACTIONS(4019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4007), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4013), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3767), 13, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145809,11 +148106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54880] = 3, - ACTIONS(3), 2, - sym_block_comment, + [41939] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1671), 2, sym_line_comment, - ACTIONS(3722), 15, + sym_block_comment, + ACTIONS(3486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145829,7 +148130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3720), 24, + ACTIONS(3484), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145854,11 +148155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54928] = 3, - ACTIONS(3), 2, - sym_block_comment, + [41993] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1672), 2, sym_line_comment, - ACTIONS(3292), 15, + sym_block_comment, + ACTIONS(3486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145874,7 +148179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3290), 24, + ACTIONS(3484), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145899,11 +148204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54976] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42047] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1673), 2, sym_line_comment, - ACTIONS(3560), 15, + sym_block_comment, + ACTIONS(3546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145919,7 +148228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3558), 24, + ACTIONS(3544), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145944,11 +148253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55024] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42101] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1674), 2, sym_line_comment, - ACTIONS(3612), 15, + sym_block_comment, + ACTIONS(920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145964,7 +148277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3610), 24, + ACTIONS(918), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -145989,11 +148302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55072] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42155] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1675), 2, sym_line_comment, - ACTIONS(3548), 15, + sym_block_comment, + ACTIONS(984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146009,7 +148326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3546), 24, + ACTIONS(982), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146034,11 +148351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55120] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42209] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1676), 2, sym_line_comment, - ACTIONS(998), 15, + sym_block_comment, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146054,7 +148375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(996), 24, + ACTIONS(3564), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146079,11 +148400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55168] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1677), 2, sym_line_comment, - ACTIONS(3690), 15, + sym_block_comment, + ACTIONS(3574), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146099,7 +148424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3688), 24, + ACTIONS(3572), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146124,58 +148449,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55216] = 20, - ACTIONS(3586), 1, + [42317] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3989), 1, - anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(4003), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4081), 2, + ACTIONS(4013), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3688), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(3987), 3, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3749), 13, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146186,11 +148514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55298] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1679), 2, sym_line_comment, - ACTIONS(3694), 15, + sym_block_comment, + ACTIONS(1000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146206,7 +148538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3692), 24, + ACTIONS(998), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146231,11 +148563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55346] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42457] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1680), 2, sym_line_comment, - ACTIONS(994), 15, + sym_block_comment, + ACTIONS(3582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146251,7 +148587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(992), 24, + ACTIONS(3580), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146276,19 +148612,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55394] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42511] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4011), 1, + anon_sym_as, + STATE(1681), 2, sym_line_comment, - ACTIONS(3616), 15, - anon_sym_PLUS, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3644), 11, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -146296,12 +148644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3614), 24, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -146321,11 +148666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55442] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42575] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1682), 2, sym_line_comment, - ACTIONS(3698), 15, + sym_block_comment, + ACTIONS(3476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146341,7 +148690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3696), 24, + ACTIONS(3474), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146366,11 +148715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55490] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42629] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1683), 2, sym_line_comment, - ACTIONS(966), 15, + sym_block_comment, + ACTIONS(3456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146386,7 +148739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(964), 24, + ACTIONS(3454), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146411,11 +148764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55538] = 3, - ACTIONS(3), 2, - sym_block_comment, + [42683] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1684), 2, sym_line_comment, - ACTIONS(944), 15, + sym_block_comment, + ACTIONS(3196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146431,7 +148788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(942), 24, + ACTIONS(3194), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146456,59 +148813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55586] = 6, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, + [42737] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1685), 2, sym_line_comment, - ACTIONS(3702), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3700), 22, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55640] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3536), 15, + ACTIONS(956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146524,7 +148837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3534), 24, + ACTIONS(954), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146549,50 +148862,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55688] = 19, - ACTIONS(29), 1, + [42791] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1054), 1, + ACTIONS(1056), 1, anon_sym_extern, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3452), 1, + ACTIONS(3282), 1, anon_sym_union, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3867), 1, + ACTIONS(3775), 1, anon_sym_default, - ACTIONS(4123), 1, + ACTIONS(4027), 1, sym_identifier, - ACTIONS(4125), 1, + ACTIONS(4029), 1, anon_sym_fn, - STATE(2592), 1, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(2633), 1, sym_scoped_type_identifier, - STATE(3239), 1, - sym_function_modifiers, - STATE(3241), 1, + STATE(3238), 1, sym_generic_type, - STATE(3299), 1, + STATE(3280), 1, + sym_function_modifiers, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + STATE(1686), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, + sym_block_comment, + ACTIONS(1042), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3456), 3, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146610,11 +148928,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [55768] = 3, - ACTIONS(3), 2, + [42879] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1056), 1, + anon_sym_extern, + ACTIONS(3276), 1, + anon_sym_COLON_COLON, + ACTIONS(3282), 1, + anon_sym_union, + ACTIONS(3288), 1, + sym_metavariable, + ACTIONS(3775), 1, + anon_sym_default, + ACTIONS(4031), 1, + sym_identifier, + ACTIONS(4033), 1, + anon_sym_fn, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(2499), 1, + sym_scoped_type_identifier, + STATE(3238), 1, + sym_generic_type, + STATE(3330), 1, + sym_scoped_identifier, + STATE(3375), 1, + sym_bracketed_type, + STATE(3378), 1, + sym_generic_type_with_turbofish, + STATE(3388), 1, + sym_function_modifiers, + STATE(1687), 2, + sym_line_comment, sym_block_comment, + ACTIONS(1042), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3286), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3773), 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, + [42967] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1688), 2, sym_line_comment, - ACTIONS(3540), 15, + sym_block_comment, + ACTIONS(3428), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146630,7 +149018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3538), 24, + ACTIONS(3426), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146655,72 +149043,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55816] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3452), 1, - anon_sym_union, - ACTIONS(3458), 1, - sym_metavariable, - ACTIONS(3867), 1, - anon_sym_default, - ACTIONS(4127), 1, - sym_identifier, - ACTIONS(4129), 1, - anon_sym_fn, - STATE(2419), 1, - sym_scoped_type_identifier, - STATE(3241), 1, - sym_generic_type, - STATE(3299), 1, - sym_scoped_identifier, - STATE(3334), 1, - sym_bracketed_type, - STATE(3337), 1, - sym_generic_type_with_turbofish, - STATE(3347), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, + [43021] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_EQ, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4003), 1, + anon_sym_AMP, + ACTIONS(4005), 1, + anon_sym_CARET, + ACTIONS(4009), 1, + anon_sym_PIPE, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4015), 1, + anon_sym_DOT_DOT, + ACTIONS(4017), 1, + anon_sym_AMP_AMP, + ACTIONS(4019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4007), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4013), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4023), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4021), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3755), 13, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43107] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1690), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3456), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3865), 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, - [55896] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3544), 15, + ACTIONS(3664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146736,7 +149132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3542), 24, + ACTIONS(3662), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146761,11 +149157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55944] = 3, - ACTIONS(3), 2, - sym_block_comment, + [43161] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1691), 2, sym_line_comment, - ACTIONS(3552), 15, + sym_block_comment, + ACTIONS(3594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146781,7 +149181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3550), 24, + ACTIONS(3592), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146806,11 +149206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55992] = 3, - ACTIONS(3), 2, - sym_block_comment, + [43215] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1692), 2, sym_line_comment, - ACTIONS(3556), 15, + sym_block_comment, + ACTIONS(3614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146826,7 +149230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3554), 24, + ACTIONS(3612), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -146851,57 +149255,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56040] = 19, - ACTIONS(3861), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [43269] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4091), 1, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(4093), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4097), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(4107), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, + ACTIONS(3973), 1, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4095), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, + ACTIONS(3971), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1693), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3612), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4109), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3859), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146912,28 +149321,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56120] = 9, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + [43357] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1694), 2, sym_line_comment, - ACTIONS(4085), 2, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4087), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 9, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -146941,9 +149345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 21, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -146963,11 +149370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56180] = 3, - ACTIONS(3), 2, - sym_block_comment, + [43411] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1695), 2, sym_line_comment, - ACTIONS(1006), 15, + sym_block_comment, + ACTIONS(3598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146983,7 +149394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1004), 24, + ACTIONS(3596), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -147008,111 +149419,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56228] = 16, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, - anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, + [43465] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1696), 2, sym_line_comment, - ACTIONS(3736), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4085), 2, + sym_block_comment, + ACTIONS(3660), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4087), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3734), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56302] = 15, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4091), 1, anon_sym_AMP, - ACTIONS(4093), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4111), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3734), 17, + ACTIONS(3658), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147123,11 +149468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56374] = 3, - ACTIONS(3), 2, - sym_block_comment, + [43519] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1697), 2, sym_line_comment, - ACTIONS(3604), 15, + sym_block_comment, + ACTIONS(912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147143,7 +149492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3602), 24, + ACTIONS(910), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -147168,55 +149517,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56422] = 17, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, - anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [43573] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1698), 2, sym_line_comment, - ACTIONS(3851), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4085), 2, + sym_block_comment, + ACTIONS(3606), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(4095), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(4111), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3849), 15, + ACTIONS(3604), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147227,11 +149566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56498] = 3, - ACTIONS(3), 2, - sym_block_comment, + [43627] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1699), 2, sym_line_comment, - ACTIONS(948), 15, + sym_block_comment, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147247,7 +149590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(946), 24, + ACTIONS(3628), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -147272,41 +149615,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56546] = 12, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, - anon_sym_CARET, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + [43681] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1700), 2, sym_line_comment, - ACTIONS(4085), 2, + sym_block_comment, + ACTIONS(3420), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4087), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 5, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3418), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -147326,17 +149664,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56612] = 3, - ACTIONS(3), 2, - sym_block_comment, + [43735] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + STATE(1701), 2, sym_line_comment, - ACTIONS(3764), 15, + sym_block_comment, + ACTIONS(3610), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -147346,11 +149693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3762), 24, + ACTIONS(3608), 22, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, @@ -147371,51 +149716,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56660] = 13, - ACTIONS(4075), 1, + [43795] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4091), 1, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3745), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(4093), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4097), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4111), 2, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, + ACTIONS(3971), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(3734), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3743), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147426,19 +149781,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56728] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3760), 15, + [43881] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3893), 2, anon_sym_PLUS, + anon_sym_DASH, + STATE(1703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3644), 9, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -147446,13 +149814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3758), 24, + ACTIONS(3642), 21, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147471,49 +149836,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56776] = 11, - ACTIONS(4075), 1, + [43947] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, + ACTIONS(3899), 1, + anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3644), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4111), 2, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, + STATE(1704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 6, - anon_sym_EQ, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3734), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3642), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147524,48 +149898,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56840] = 10, - ACTIONS(4075), 1, + [44027] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, + ACTIONS(3899), 1, + anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3644), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4111), 2, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, + STATE(1705), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 7, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3734), 21, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3642), 17, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44105] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3899), 1, + anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3765), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1706), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3763), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147576,11 +150022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56902] = 3, - ACTIONS(3), 2, - sym_block_comment, + [44187] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1707), 2, sym_line_comment, - ACTIONS(3728), 15, + sym_block_comment, + ACTIONS(3654), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147596,7 +150046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3724), 24, + ACTIONS(3652), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -147621,99 +150071,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56950] = 19, - ACTIONS(3841), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [44241] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4091), 1, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(4093), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3839), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57030] = 8, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3893), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1708), 2, sym_line_comment, - ACTIONS(4087), 3, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3644), 5, anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3734), 21, + ACTIONS(3642), 21, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147732,57 +150129,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57088] = 19, - ACTIONS(3586), 1, + [44313] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3861), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4003), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4081), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 3, + STATE(1709), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(4035), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3859), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147793,36 +150195,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57168] = 9, - ACTIONS(3586), 1, + [44401] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3899), 1, + anon_sym_AMP, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3987), 3, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 9, + ACTIONS(3644), 4, anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3734), 21, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -147844,54 +150254,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57228] = 16, - ACTIONS(3586), 1, + [44475] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3991), 1, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3985), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4009), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3734), 16, + ACTIONS(3644), 6, + anon_sym_EQ, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147902,53 +150311,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57302] = 15, - ACTIONS(3586), 1, + [44545] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(662), 1, + anon_sym_RBRACK, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3991), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, - anon_sym_EQ, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3985), 2, + ACTIONS(4037), 1, + anon_sym_COMMA, + STATE(2820), 1, + aux_sym_arguments_repeat1, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3734), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147959,55 +150379,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57374] = 17, - ACTIONS(3586), 1, + [44637] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3851), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3985), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4009), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3849), 15, + ACTIONS(3644), 7, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148018,11 +150435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57450] = 3, - ACTIONS(3), 2, - sym_block_comment, + [44705] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1714), 2, sym_line_comment, - ACTIONS(3750), 15, + sym_block_comment, + ACTIONS(3650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148038,7 +150459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3748), 24, + ACTIONS(3648), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148063,42 +150484,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57498] = 12, - ACTIONS(3586), 1, + [44759] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3991), 1, + ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3911), 1, + anon_sym_AMP_AMP, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3973), 1, + anon_sym_DOT_DOT, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4009), 2, + ACTIONS(3903), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + ACTIONS(3971), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 5, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3749), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44845] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4011), 1, + anon_sym_as, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3644), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3642), 21, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148117,40 +150602,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57564] = 13, - ACTIONS(3586), 1, + [44907] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, + STATE(1717), 2, sym_line_comment, - ACTIONS(3985), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4009), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 3, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 4, + ACTIONS(3644), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3642), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -148172,41 +150656,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57632] = 11, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_block_comment, + [44971] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1718), 2, sym_line_comment, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(3672), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4009), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 6, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3670), 24, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148225,40 +150705,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57696] = 10, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + [45025] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1719), 2, sym_line_comment, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(916), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4009), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 7, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(914), 24, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148277,11 +150754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57758] = 3, - ACTIONS(3), 2, - sym_block_comment, + [45079] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1720), 2, sym_line_comment, - ACTIONS(3742), 15, + sym_block_comment, + ACTIONS(1376), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148297,7 +150778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3740), 24, + ACTIONS(1378), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148322,54 +150803,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57806] = 19, - ACTIONS(3586), 1, + [45133] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3841), 1, + ACTIONS(3757), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4003), 1, + ACTIONS(3911), 1, anon_sym_AMP_AMP, - ACTIONS(4005), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, + ACTIONS(3973), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + ACTIONS(3917), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4081), 2, + ACTIONS(3971), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 3, + STATE(1721), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3839), 13, + ACTIONS(3755), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -148383,57 +150868,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57886] = 19, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3855), 1, + [45219] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(1056), 1, + anon_sym_extern, + ACTIONS(3276), 1, + anon_sym_COLON_COLON, + ACTIONS(3282), 1, + anon_sym_union, + ACTIONS(3288), 1, + sym_metavariable, + ACTIONS(3775), 1, + anon_sym_default, + ACTIONS(4039), 1, + sym_identifier, + ACTIONS(4041), 1, + anon_sym_fn, + STATE(2168), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(2676), 1, + sym_scoped_type_identifier, + STATE(3238), 1, + sym_generic_type, + STATE(3276), 1, + sym_function_modifiers, + STATE(3330), 1, + sym_scoped_identifier, + STATE(3375), 1, + sym_bracketed_type, + STATE(3378), 1, + sym_generic_type_with_turbofish, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1042), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3286), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3773), 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, + [45307] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(988), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3991), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(3993), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3997), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4003), 1, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(986), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(4005), 1, anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45361] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1724), 2, sym_line_comment, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(3504), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3995), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4081), 2, + ACTIONS(3502), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3853), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148444,24 +151032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57966] = 7, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + [45415] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1725), 2, sym_line_comment, - ACTIONS(3736), 14, + sym_block_comment, + ACTIONS(924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -148471,9 +151056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 21, + ACTIONS(922), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -148493,27 +151081,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58022] = 8, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + [45469] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1726), 2, sym_line_comment, - ACTIONS(3987), 3, + sym_block_comment, + ACTIONS(3452), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 11, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -148521,10 +151105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 21, + ACTIONS(3450), 24, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148543,11 +151130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58080] = 3, - ACTIONS(3), 2, - sym_block_comment, + [45523] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1727), 2, sym_line_comment, - ACTIONS(1456), 15, + sym_block_comment, + ACTIONS(3448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148563,7 +151154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1458), 24, + ACTIONS(3446), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148588,72 +151179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58128] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(1054), 1, - anon_sym_extern, - ACTIONS(3446), 1, - anon_sym_COLON_COLON, - ACTIONS(3452), 1, - anon_sym_union, - ACTIONS(3458), 1, - sym_metavariable, - ACTIONS(3867), 1, - anon_sym_default, - ACTIONS(4131), 1, - sym_identifier, - ACTIONS(4133), 1, - anon_sym_fn, - STATE(2625), 1, - sym_scoped_type_identifier, - STATE(3241), 1, - sym_generic_type, - STATE(3299), 1, - sym_scoped_identifier, - STATE(3332), 1, - sym_function_modifiers, - STATE(3334), 1, - sym_bracketed_type, - STATE(3337), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + [45577] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1728), 2, sym_line_comment, - STATE(2180), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(1040), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3456), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3865), 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, - [58208] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(940), 15, + ACTIONS(3622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148669,7 +151203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(938), 24, + ACTIONS(3620), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148694,11 +151228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58256] = 3, - ACTIONS(3), 2, - sym_block_comment, + [45631] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1729), 2, sym_line_comment, - ACTIONS(1002), 15, + sym_block_comment, + ACTIONS(3440), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148714,7 +151252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1000), 24, + ACTIONS(3438), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148739,11 +151277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58304] = 3, - ACTIONS(3), 2, - sym_block_comment, + [45685] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1730), 2, sym_line_comment, - ACTIONS(3718), 15, + sym_block_comment, + ACTIONS(994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148759,7 +151301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3716), 24, + ACTIONS(996), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148784,11 +151326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58352] = 3, - ACTIONS(3), 2, - sym_block_comment, + [45739] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1731), 2, sym_line_comment, - ACTIONS(1010), 15, + sym_block_comment, + ACTIONS(3436), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148804,7 +151350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1008), 24, + ACTIONS(3434), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148829,57 +151375,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58400] = 19, - ACTIONS(3855), 1, + [45793] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1732), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3432), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, anon_sym_DOT, - ACTIONS(4091), 1, anon_sym_AMP, - ACTIONS(4093), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4101), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4111), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, + ACTIONS(3430), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3853), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148890,58 +151424,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58480] = 20, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3989), 1, - anon_sym_EQ, - ACTIONS(3991), 1, - anon_sym_AMP, - ACTIONS(3993), 1, - anon_sym_CARET, - ACTIONS(3997), 1, - anon_sym_PIPE, - ACTIONS(4003), 1, - anon_sym_AMP_AMP, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4083), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + [45847] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1733), 2, sym_line_comment, - ACTIONS(3985), 2, + sym_block_comment, + ACTIONS(3626), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3995), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(4009), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4081), 2, + ACTIONS(3624), 24, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3708), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(3987), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4007), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148952,11 +151473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58562] = 3, - ACTIONS(3), 2, - sym_block_comment, + [45901] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1734), 2, sym_line_comment, - ACTIONS(3710), 15, + sym_block_comment, + ACTIONS(904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148972,7 +151497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3708), 24, + ACTIONS(902), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -148997,11 +151522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58610] = 3, - ACTIONS(3), 2, - sym_block_comment, + [45955] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1735), 2, sym_line_comment, - ACTIONS(3706), 15, + sym_block_comment, + ACTIONS(964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149017,7 +151546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3704), 24, + ACTIONS(962), 24, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -149042,42 +151571,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58658] = 13, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4139), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, + [46009] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1736), 2, sym_line_comment, - ACTIONS(4135), 2, + sym_block_comment, + ACTIONS(976), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4137), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 4, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(974), 24, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149096,56 +151620,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58725] = 19, - ACTIONS(331), 1, + [46063] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3761), 1, anon_sym_EQ, - ACTIONS(3586), 1, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(4161), 1, + ACTIONS(4057), 1, anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, + ACTIONS(4055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1737), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(325), 12, + ACTIONS(3759), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149156,58 +151684,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58804] = 21, - ACTIONS(3586), 1, + [46148] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4171), 1, + ACTIONS(3620), 2, anon_sym_RPAREN, - ACTIONS(4173), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149218,57 +151749,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58887] = 20, - ACTIONS(4075), 1, + [46235] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4089), 1, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(4091), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4093), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4097), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4105), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4107), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3708), 2, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(4085), 2, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4095), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4111), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4175), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4087), 3, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4109), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4113), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149279,54 +151815,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58968] = 17, - ACTIONS(3586), 1, + [46324] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(3757), 1, + anon_sym_EQ, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4163), 1, + ACTIONS(4083), 1, + anon_sym_DOT_DOT, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3851), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4147), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, + ACTIONS(4081), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3849), 14, + ACTIONS(3755), 12, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149337,118 +151879,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59043] = 20, - ACTIONS(3586), 1, + [46409] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3688), 2, + ACTIONS(4093), 1, anon_sym_RPAREN, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3845), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [59124] = 20, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + STATE(1741), 2, sym_line_comment, - ACTIONS(3805), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4179), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3807), 3, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149459,57 +151945,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59205] = 20, - ACTIONS(4075), 1, + [46498] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4181), 1, - anon_sym_EQ, - ACTIONS(4187), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3720), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4135), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4097), 1, + anon_sym_SEMI, + ACTIONS(4099), 1, + anon_sym_else, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4195), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149520,48 +152011,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59286] = 15, - ACTIONS(3586), 1, + [46587] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, + ACTIONS(3644), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4147), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3734), 16, + ACTIONS(3642), 16, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149576,58 +152071,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59357] = 21, - ACTIONS(3586), 1, + [46664] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4083), 1, + anon_sym_DOT_DOT, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(4101), 1, anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4199), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3620), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4091), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1744), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4103), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149638,58 +152136,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59440] = 21, - ACTIONS(3586), 1, + [46751] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4203), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149700,53 +152202,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59523] = 16, - ACTIONS(3586), 1, + [46840] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(4163), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, - anon_sym_EQ, + ACTIONS(4019), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4107), 1, anon_sym_DOT_DOT, - ACTIONS(4147), 2, + ACTIONS(3612), 2, + anon_sym_EQ_GT, + anon_sym_if, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + ACTIONS(4105), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1746), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3734), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, + ACTIONS(4025), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149757,26 +152267,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59596] = 9, - ACTIONS(3586), 1, + [46927] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, + STATE(1747), 2, sym_line_comment, - ACTIONS(4147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 3, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 9, + ACTIONS(3644), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ, anon_sym_AMP, anon_sym_CARET, @@ -149786,7 +152299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 20, + ACTIONS(3642), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, @@ -149807,56 +152320,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59655] = 19, - ACTIONS(3586), 1, + [46990] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3861), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(4109), 1, + anon_sym_RBRACE, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3859), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149867,58 +152386,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59734] = 21, - ACTIONS(3586), 1, + [47079] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4205), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4207), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4111), 1, + anon_sym_RBRACE, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149929,58 +152452,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59817] = 21, - ACTIONS(846), 1, - anon_sym_RPAREN, - ACTIONS(3586), 1, + [47168] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4173), 1, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4113), 1, + anon_sym_RPAREN, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1750), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149991,56 +152518,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59900] = 19, - ACTIONS(3586), 1, + [47257] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3751), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4001), 1, + ACTIONS(4083), 1, anon_sym_DOT_DOT, - ACTIONS(4005), 1, + ACTIONS(4085), 1, + anon_sym_AMP_AMP, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4209), 3, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AMP_AMP, - ACTIONS(4007), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3749), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150051,58 +152582,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59979] = 21, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [47342] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1752), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3644), 7, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150113,58 +152637,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60062] = 21, - ACTIONS(3586), 1, + [47409] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(4163), 1, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(4211), 1, - anon_sym_LBRACE, - ACTIONS(4213), 1, + ACTIONS(4115), 1, anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_DOT_DOT, - STATE(465), 1, - sym_match_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(3612), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4215), 2, + ACTIONS(4055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4149), 3, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4219), 10, + ACTIONS(4117), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150175,119 +152702,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60145] = 21, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [47496] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3845), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [60228] = 20, - ACTIONS(4075), 1, - anon_sym_LBRACK, - ACTIONS(4077), 1, - anon_sym_QMARK, - ACTIONS(4079), 1, - anon_sym_DOT, - ACTIONS(4089), 1, + ACTIONS(3644), 6, anon_sym_EQ, - ACTIONS(4091), 1, - anon_sym_AMP, - ACTIONS(4093), 1, anon_sym_CARET, - ACTIONS(4097), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4105), 1, - anon_sym_AMP_AMP, - ACTIONS(4107), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3720), 2, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(4085), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4095), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4111), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4175), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4087), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4109), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4113), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150298,56 +152758,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60309] = 19, - ACTIONS(3841), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [47565] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, - anon_sym_AMP_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4183), 2, + STATE(1755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3644), 4, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, + anon_sym_DOT_DOT, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4193), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3839), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150358,58 +152816,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60388] = 21, - ACTIONS(862), 1, + [47638] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(864), 1, anon_sym_RPAREN, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4173), 1, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150420,58 +152882,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60471] = 21, - ACTIONS(123), 1, + [47727] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(111), 1, anon_sym_RBRACE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150482,58 +152948,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60554] = 21, - ACTIONS(117), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [47816] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3644), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150544,57 +153005,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60637] = 20, - ACTIONS(3586), 1, + [47887] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(714), 1, + anon_sym_RPAREN, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4095), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4221), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3807), 3, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150605,58 +153071,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60718] = 21, - ACTIONS(3586), 1, + [47976] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 1, - anon_sym_SEMI, - ACTIONS(4225), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4119), 3, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AMP_AMP, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150667,45 +153135,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60801] = 8, - ACTIONS(4075), 1, + [48061] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4137), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3715), 1, anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, + ACTIONS(3719), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3723), 1, anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, anon_sym_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1761), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150716,58 +153201,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60858] = 21, - ACTIONS(3586), 1, + [48150] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(4101), 1, anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4125), 1, anon_sym_DOT_DOT, - ACTIONS(4227), 1, - anon_sym_SEMI, - ACTIONS(4229), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + STATE(482), 1, + sym_match_block, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4123), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4103), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150778,57 +153267,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60941] = 20, - ACTIONS(3586), 1, + [48239] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(301), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3708), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3805), 2, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150839,56 +153333,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61022] = 19, - ACTIONS(3855), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [48328] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(3765), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3853), 12, + ACTIONS(3763), 14, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150899,58 +153395,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61101] = 21, - ACTIONS(135), 1, + [48409] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(319), 1, anon_sym_RBRACE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150961,58 +153461,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61184] = 21, - ACTIONS(706), 1, - anon_sym_RPAREN, - ACTIONS(3586), 1, + [48498] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(3765), 2, anon_sym_EQ, - ACTIONS(3979), 1, anon_sym_DOT_DOT, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3763), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151023,58 +153523,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61267] = 21, - ACTIONS(3586), 1, + [48579] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4231), 1, + ACTIONS(4127), 1, anon_sym_SEMI, - ACTIONS(4233), 1, + ACTIONS(4129), 1, anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1767), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151085,58 +153589,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61350] = 21, - ACTIONS(860), 1, - anon_sym_RPAREN, - ACTIONS(3586), 1, + [48668] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(4115), 1, anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3620), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4117), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151147,58 +153654,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61433] = 21, - ACTIONS(109), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [48755] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4131), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151209,58 +153719,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61516] = 21, - ACTIONS(3586), 1, + [48842] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4235), 1, - anon_sym_SEMI, - ACTIONS(4237), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4133), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151271,58 +153784,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61599] = 21, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [48929] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(3644), 2, anon_sym_EQ, - ACTIONS(3979), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3642), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151333,58 +153844,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61682] = 21, - ACTIONS(3586), 1, + [49006] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4239), 1, - anon_sym_RPAREN, - ACTIONS(4241), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1772), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3644), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151395,57 +153901,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61765] = 20, - ACTIONS(4075), 1, + [49077] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4089), 1, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(4091), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4093), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4097), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_as, - ACTIONS(4105), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4107), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3688), 2, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(4085), 2, + ACTIONS(4135), 1, + anon_sym_SEMI, + ACTIONS(4137), 1, + anon_sym_else, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4095), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4111), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4175), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4087), 3, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4109), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4113), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151456,56 +153967,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61846] = 19, - ACTIONS(3861), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [49166] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(3644), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + ACTIONS(4091), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3859), 12, + ACTIONS(3642), 15, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151516,26 +154028,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61925] = 9, - ACTIONS(4075), 1, + [49245] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4137), 3, + STATE(1775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 9, + ACTIONS(3644), 9, anon_sym_EQ, anon_sym_AMP, anon_sym_CARET, @@ -151545,9 +154061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 20, + ACTIONS(3642), 20, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151566,120 +154082,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61984] = 21, - ACTIONS(3586), 1, + [49310] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(4243), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3845), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [62067] = 21, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(3644), 4, anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4245), 1, - anon_sym_RPAREN, - ACTIONS(4247), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3815), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + anon_sym_DOT_DOT, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151690,58 +154140,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62150] = 21, - ACTIONS(121), 1, + [49383] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(287), 1, anon_sym_RBRACE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151752,49 +154206,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62233] = 12, - ACTIONS(3586), 1, + [49472] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3745), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(4053), 1, + anon_sym_PIPE, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, + anon_sym_AMP_AMP, + ACTIONS(4061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4149), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 5, - anon_sym_EQ, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3734), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3743), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151805,56 +154270,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62298] = 19, - ACTIONS(3586), 1, + [49557] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3745), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4001), 1, + ACTIONS(4083), 1, anon_sym_DOT_DOT, - ACTIONS(4005), 1, + ACTIONS(4085), 1, + anon_sym_AMP_AMP, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 3, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4249), 3, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_AMP_AMP, - ACTIONS(4007), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3743), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151865,57 +154334,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62377] = 20, - ACTIONS(3586), 1, + [49642] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(3769), 1, + anon_sym_EQ, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4161), 1, + ACTIONS(4083), 1, anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3688), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4147), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4219), 10, + ACTIONS(3767), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151926,42 +154398,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62458] = 13, - ACTIONS(3586), 1, + [49727] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4169), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 4, + ACTIONS(3644), 6, anon_sym_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3734), 20, + ACTIONS(3642), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151980,57 +154454,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62525] = 20, - ACTIONS(3586), 1, + [49796] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4139), 1, + anon_sym_RPAREN, + ACTIONS(4141), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4251), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3807), 3, + STATE(1782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152041,57 +154520,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62606] = 20, - ACTIONS(3586), 1, + [49885] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(4107), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3616), 2, + anon_sym_EQ_GT, + anon_sym_if, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4105), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4253), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3807), 3, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4025), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152102,58 +154585,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62687] = 21, - ACTIONS(293), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [49972] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3757), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3755), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152164,57 +154649,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62770] = 20, - ACTIONS(4075), 1, + [50057] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4181), 1, - anon_sym_EQ, - ACTIONS(4187), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3688), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4135), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(3612), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + STATE(1785), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4195), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152225,53 +154714,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62851] = 16, - ACTIONS(4075), 1, + [50144] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4189), 1, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, + ACTIONS(4087), 1, + anon_sym_PIPE_PIPE, + ACTIONS(377), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4135), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4137), 3, + ACTIONS(4091), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3734), 15, + ACTIONS(375), 14, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152282,56 +154776,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [62924] = 19, - ACTIONS(331), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [50225] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3761), 1, + anon_sym_EQ, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4187), 1, + ACTIONS(4083), 1, anon_sym_DOT_DOT, - ACTIONS(4189), 1, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + ACTIONS(4091), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(325), 12, + ACTIONS(3759), 12, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152342,56 +154840,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63003] = 19, - ACTIONS(3809), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [50310] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(712), 1, + anon_sym_RPAREN, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4095), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + STATE(1788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3803), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152402,54 +154906,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63082] = 17, - ACTIONS(4075), 1, + [50399] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4189), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(371), 2, - anon_sym_EQ, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4135), 2, + ACTIONS(4143), 1, + anon_sym_SEMI, + ACTIONS(4145), 1, + anon_sym_else, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4137), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152460,57 +154972,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63157] = 20, - ACTIONS(3586), 1, + [50488] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4147), 1, + anon_sym_RBRACE, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4255), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3807), 3, + STATE(1790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152521,56 +155038,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63238] = 19, - ACTIONS(3837), 1, - anon_sym_EQ, - ACTIONS(4075), 1, + [50577] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + STATE(1791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3835), 12, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50666] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, + anon_sym_LBRACK, + ACTIONS(3993), 1, + anon_sym_QMARK, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4043), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3644), 7, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3642), 20, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152581,57 +155159,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63317] = 20, - ACTIONS(3586), 1, + [50733] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3720), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3805), 2, + ACTIONS(4151), 1, + anon_sym_SEMI, + ACTIONS(4153), 1, + anon_sym_else, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152642,52 +155225,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63398] = 15, - ACTIONS(4075), 1, + [50822] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3736), 2, - anon_sym_EQ, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4135), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4137), 3, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4155), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3734), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152698,57 +155290,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63469] = 20, - ACTIONS(3586), 1, + [50909] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(115), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4257), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3807), 3, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152759,57 +155356,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63550] = 20, - ACTIONS(3586), 1, + [50998] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4157), 1, + anon_sym_RBRACE, + ACTIONS(4159), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4259), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(3807), 3, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152820,58 +155422,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63631] = 21, - ACTIONS(113), 1, + [51087] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(323), 1, anon_sym_RBRACE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1797), 2, sym_line_comment, - ACTIONS(3805), 2, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [51176] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_CARET, + ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_AMP_AMP, + ACTIONS(4087), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4101), 1, + anon_sym_EQ, + ACTIONS(4125), 1, + anon_sym_DOT_DOT, + ACTIONS(4161), 1, + anon_sym_LBRACE, + STATE(1641), 1, + sym_match_block, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4123), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4103), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152882,54 +155554,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63714] = 17, - ACTIONS(4075), 1, + [51265] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(4189), 1, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3851), 2, + ACTIONS(4115), 1, anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4135), 2, + ACTIONS(3616), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4137), 3, + ACTIONS(4055), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3849), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4117), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152940,57 +155619,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63789] = 20, - ACTIONS(3586), 1, + [51352] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(738), 1, + anon_sym_RPAREN, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3720), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4147), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4095), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4219), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153001,48 +155685,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63870] = 11, - ACTIONS(3586), 1, + [51441] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3751), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(4049), 1, + anon_sym_CARET, + ACTIONS(4053), 1, + anon_sym_PIPE, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, + anon_sym_AMP_AMP, + ACTIONS(4061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4169), 2, + ACTIONS(4051), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4055), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 6, - anon_sym_EQ, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3734), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3749), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153053,49 +155749,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63933] = 12, - ACTIONS(4075), 1, + [51526] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(4163), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym_LBRACE, + ACTIONS(4167), 1, + anon_sym_RBRACE, + ACTIONS(4169), 1, + anon_sym_STAR, + ACTIONS(4173), 1, + anon_sym_COMMA, + ACTIONS(4175), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + sym_metavariable, + STATE(2429), 1, + sym_scoped_identifier, + STATE(2915), 1, + sym__use_clause, + STATE(3317), 1, + sym_generic_type_with_turbofish, + STATE(3363), 1, + sym_bracketed_type, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4177), 3, + sym_self, + sym_super, + sym_crate, + STATE(2771), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4171), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [51605] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4181), 1, + anon_sym_SEMI, + ACTIONS(4183), 1, + anon_sym_else, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4137), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3734), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153106,58 +155876,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [63998] = 21, - ACTIONS(129), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [51694] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4185), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4187), 1, + anon_sym_else, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153168,58 +155942,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64081] = 21, - ACTIONS(3586), 1, + [51783] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(333), 1, + anon_sym_EQ, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4083), 1, + anon_sym_DOT_DOT, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4261), 1, - anon_sym_SEMI, - ACTIONS(4263), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4091), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(327), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153230,57 +156006,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64164] = 20, - ACTIONS(4075), 1, + [51868] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4181), 1, - anon_sym_EQ, - ACTIONS(4187), 1, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - ACTIONS(4189), 1, - anon_sym_AMP_AMP, - ACTIONS(4191), 1, + ACTIONS(3913), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3708), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4135), 2, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4185), 2, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(4189), 3, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AMP_AMP, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4195), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153291,58 +156070,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64245] = 21, - ACTIONS(3586), 1, + [51953] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4265), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153353,54 +156136,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64328] = 17, - ACTIONS(3586), 1, + [52042] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(4163), 1, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(371), 2, + ACTIONS(3644), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4147), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 14, + ACTIONS(3642), 15, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153411,58 +156197,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64403] = 21, - ACTIONS(3586), 1, + [52121] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(4151), 1, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3644), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(4153), 1, anon_sym_CARET, - ACTIONS(4157), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4163), 1, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(4165), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [52184] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(4217), 1, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4267), 1, - anon_sym_LBRACE, - STATE(1321), 1, - sym_match_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4215), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4149), 3, + ACTIONS(4191), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4219), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153473,57 +156315,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64486] = 20, - ACTIONS(3586), 1, + [52271] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3989), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(3991), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3993), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3997), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_DOT_DOT, - ACTIONS(4005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3985), 2, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4009), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4269), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(3987), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4193), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4007), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4011), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153534,58 +156380,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64567] = 21, - ACTIONS(3586), 1, + [52358] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4163), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_EQ, - ACTIONS(4217), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4273), 1, - anon_sym_LBRACE, - STATE(1614), 1, - sym_match_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4215), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4149), 3, + ACTIONS(4195), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4219), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153596,47 +156445,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64650] = 10, - ACTIONS(3586), 1, + [52445] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4149), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 7, - anon_sym_EQ, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4079), 1, anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_AMP_AMP, + ACTIONS(4087), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4101), 1, + anon_sym_EQ, + ACTIONS(4125), 1, anon_sym_DOT_DOT, - ACTIONS(3734), 20, - anon_sym_LPAREN, + ACTIONS(4197), 1, anon_sym_LBRACE, + STATE(1313), 1, + sym_match_block, + ACTIONS(4069), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4077), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4091), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4123), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4103), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153647,56 +156511,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64711] = 19, - ACTIONS(3586), 1, + [52534] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3809), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(4199), 1, + anon_sym_RBRACE, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3803), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153707,56 +156577,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64790] = 19, - ACTIONS(3586), 1, + [52623] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3855), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(4201), 1, + anon_sym_RBRACE, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3853), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153767,58 +156643,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64869] = 21, - ACTIONS(3586), 1, + [52712] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, - anon_sym_DOT, - ACTIONS(3738), 1, - anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(4001), 1, + anon_sym_EQ, + ACTIONS(4003), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4005), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4009), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4011), 1, + anon_sym_as, + ACTIONS(4017), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4019), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(4107), 1, anon_sym_DOT_DOT, - ACTIONS(4275), 1, - anon_sym_RBRACE, - ACTIONS(4277), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3620), 2, + anon_sym_EQ_GT, + anon_sym_if, + ACTIONS(3997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4007), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4023), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4105), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3999), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4021), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4025), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153829,58 +156708,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [64952] = 21, - ACTIONS(309), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [52799] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4203), 1, + anon_sym_RBRACE, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153891,56 +156774,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65035] = 19, - ACTIONS(3586), 1, + [52888] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3837), 1, - anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4161), 1, + ACTIONS(4083), 1, anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(4101), 1, + anon_sym_EQ, + ACTIONS(3612), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3835), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4103), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153951,58 +156839,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65114] = 21, - ACTIONS(3586), 1, + [52975] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4279), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154013,58 +156905,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65197] = 21, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [53064] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3616), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154075,58 +156970,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65280] = 21, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [53151] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3769), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3767), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154137,58 +157034,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65363] = 21, - ACTIONS(3586), 1, + [53236] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(4075), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(4079), 1, anon_sym_PIPE, - ACTIONS(4163), 1, + ACTIONS(4083), 1, + anon_sym_DOT_DOT, + ACTIONS(4085), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(4087), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, + ACTIONS(4101), 1, anon_sym_EQ, - ACTIONS(4217), 1, - anon_sym_DOT_DOT, - ACTIONS(4281), 1, + ACTIONS(3616), 2, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(252), 1, - sym_match_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(4077), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4169), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4215), 2, + ACTIONS(4081), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4149), 3, + ACTIONS(4091), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4219), 10, + ACTIONS(4103), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154199,58 +157099,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65446] = 21, - ACTIONS(315), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [53323] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(377), 2, anon_sym_EQ, - ACTIONS(3979), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(375), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154261,58 +157161,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65529] = 21, - ACTIONS(321), 1, + [53404] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(117), 1, anon_sym_RBRACE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154323,58 +157227,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65612] = 21, - ACTIONS(3586), 1, + [53493] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154385,58 +157293,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65695] = 21, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [53582] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3899), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3909), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3913), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4207), 1, + anon_sym_AMP_AMP, + ACTIONS(3893), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3907), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(3917), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4205), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3895), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3919), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154447,58 +157358,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65778] = 21, - ACTIONS(3586), 1, + [53669] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4285), 1, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(4209), 1, anon_sym_RBRACE, - ACTIONS(4287), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154509,58 +157424,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65861] = 21, - ACTIONS(3586), 1, + [53758] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4289), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154571,58 +157490,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [65944] = 21, - ACTIONS(3586), 1, + [53847] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(333), 1, + anon_sym_EQ, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(4057), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4291), 1, - anon_sym_SEMI, - ACTIONS(4293), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4055), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + ACTIONS(4065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(327), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154633,48 +157554,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66027] = 11, - ACTIONS(4075), 1, + [53932] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, + ACTIONS(3721), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4137), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4211), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 6, - anon_sym_EQ, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3734), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154685,56 +157619,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66090] = 19, - ACTIONS(3586), 1, + [54019] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3841), 1, + ACTIONS(3715), 1, anon_sym_EQ, - ACTIONS(4151), 1, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4147), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4213), 1, + anon_sym_SEMI, + ACTIONS(4215), 1, + anon_sym_else, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3839), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154745,58 +157685,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66169] = 21, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [54108] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, - anon_sym_AMP, - ACTIONS(3813), 1, - anon_sym_CARET, - ACTIONS(3817), 1, - anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + STATE(1832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3644), 9, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3642), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3827), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154807,58 +157739,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66252] = 21, - ACTIONS(303), 1, + [54173] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(129), 1, anon_sym_RBRACE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1833), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154869,57 +157805,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66335] = 20, - ACTIONS(3586), 1, + [54262] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4151), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4153), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4157), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(4165), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4213), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3708), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4147), 2, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4155), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4159), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4169), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4149), 3, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4219), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154930,45 +157871,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66416] = 8, - ACTIONS(3586), 1, + [54351] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4149), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3736), 11, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4217), 1, + anon_sym_RPAREN, + ACTIONS(4219), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3734), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1835), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154979,58 +157937,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66473] = 21, - ACTIONS(3586), 1, + [54440] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(131), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(4295), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155041,47 +158003,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66556] = 10, - ACTIONS(4075), 1, + [54529] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_CARET, + ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(4085), 1, + anon_sym_AMP_AMP, + ACTIONS(4087), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4101), 1, + anon_sym_EQ, + ACTIONS(4125), 1, + anon_sym_DOT_DOT, + ACTIONS(4221), 1, + anon_sym_LBRACE, + STATE(231), 1, + sym_match_block, + ACTIONS(4069), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, + ACTIONS(4077), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4091), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4137), 3, + ACTIONS(4123), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1837), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4071), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3736), 7, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3734), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4089), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4103), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155092,58 +158069,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66617] = 21, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3586), 1, + [54618] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4223), 1, + anon_sym_RBRACE, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1838), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155154,58 +158135,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66700] = 21, - ACTIONS(133), 1, + [54707] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(289), 1, anon_sym_RBRACE, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155216,114 +158201,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66783] = 15, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(4297), 1, - sym_identifier, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, + [54796] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(293), 1, anon_sym_RBRACE, - ACTIONS(4303), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COMMA, - ACTIONS(4309), 1, - anon_sym_COLON_COLON, - ACTIONS(4313), 1, - sym_metavariable, - STATE(2388), 1, - sym_scoped_identifier, - STATE(3278), 1, - sym_generic_type_with_turbofish, - STATE(3325), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4311), 3, - sym_self, - sym_super, - sym_crate, - STATE(2754), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4305), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [66854] = 21, - ACTIONS(3586), 1, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4315), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155334,56 +158267,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [66937] = 20, - ACTIONS(3586), 1, + [54885] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(291), 1, + anon_sym_RBRACE, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4317), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155394,56 +158333,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67017] = 20, - ACTIONS(3586), 1, + [54974] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4319), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4225), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155454,55 +158397,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67097] = 19, - ACTIONS(4075), 1, + [55060] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4181), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4227), 1, + anon_sym_RBRACK, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4209), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4321), 2, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4195), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155513,56 +158461,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67175] = 20, - ACTIONS(3586), 1, + [55146] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4325), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4229), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1844), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155573,55 +158525,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67255] = 19, - ACTIONS(4075), 1, + [55232] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4181), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4095), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4249), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4321), 2, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + STATE(1845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4195), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155632,56 +158589,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67333] = 20, - ACTIONS(3586), 1, + [55318] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4327), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4231), 1, + anon_sym_RBRACK, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155692,56 +158653,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67413] = 20, - ACTIONS(3586), 1, + [55404] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4329), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4233), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155752,56 +158717,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67493] = 20, - ACTIONS(3586), 1, + [55490] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(4163), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym_LBRACE, + ACTIONS(4169), 1, + anon_sym_STAR, + ACTIONS(4175), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + sym_metavariable, + ACTIONS(4235), 1, + anon_sym_RBRACE, + STATE(2429), 1, + sym_scoped_identifier, + STATE(2967), 1, + sym__use_clause, + STATE(3317), 1, + sym_generic_type_with_turbofish, + STATE(3363), 1, + sym_bracketed_type, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4177), 3, + sym_self, + sym_super, + sym_crate, + STATE(2771), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4171), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [55566] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4331), 1, + ACTIONS(4237), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155812,56 +158840,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67573] = 20, - ACTIONS(3586), 1, + [55652] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4333), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4239), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155872,56 +158904,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67653] = 20, - ACTIONS(3586), 1, + [55738] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(4115), 1, anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(4243), 1, anon_sym_DOT_DOT, - ACTIONS(4335), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4189), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4117), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155932,56 +158967,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67733] = 20, - ACTIONS(3586), 1, + [55822] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, + ACTIONS(4245), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155992,110 +159031,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67813] = 14, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(4297), 1, - sym_identifier, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4303), 1, - anon_sym_STAR, - ACTIONS(4309), 1, - anon_sym_COLON_COLON, - ACTIONS(4313), 1, - sym_metavariable, - ACTIONS(4339), 1, - anon_sym_RBRACE, - STATE(2388), 1, - sym_scoped_identifier, - STATE(3278), 1, - sym_generic_type_with_turbofish, - STATE(3325), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4311), 3, - sym_self, - sym_super, - sym_crate, - STATE(3043), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4305), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [67881] = 20, - ACTIONS(3586), 1, + [55908] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, + ACTIONS(4247), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1853), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156106,56 +159095,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [67961] = 20, - ACTIONS(3586), 1, + [55994] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(4115), 1, anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(4243), 1, anon_sym_DOT_DOT, - ACTIONS(4343), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4119), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1854), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4117), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156166,56 +159158,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68041] = 20, - ACTIONS(3586), 1, + [56078] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4345), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4249), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1855), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156226,56 +159222,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68121] = 20, - ACTIONS(3586), 1, + [56164] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4347), 1, + ACTIONS(4251), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156286,56 +159286,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68201] = 20, - ACTIONS(4075), 1, + [56250] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(4079), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(4099), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(4139), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(4181), 1, - anon_sym_EQ, - ACTIONS(4191), 1, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4269), 1, - anon_sym_EQ_GT, - ACTIONS(4323), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4145), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4183), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4321), 2, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 3, + STATE(1857), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4193), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4195), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156346,56 +159350,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68281] = 20, - ACTIONS(3586), 1, + [56336] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4351), 1, + ACTIONS(4255), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156406,56 +159414,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68361] = 20, - ACTIONS(3586), 1, + [56422] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4173), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4257), 1, + anon_sym_RBRACK, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1859), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156466,56 +159478,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68441] = 20, - ACTIONS(3586), 1, + [56508] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, + ACTIONS(4259), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156526,56 +159542,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68521] = 20, - ACTIONS(3586), 1, + [56594] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4353), 1, + ACTIONS(4261), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156586,56 +159606,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68601] = 20, - ACTIONS(3586), 1, + [56680] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4355), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1862), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156646,56 +159670,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68681] = 20, - ACTIONS(3586), 1, + [56766] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3991), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3993), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(4011), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(4047), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(4049), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(4053), 1, anon_sym_PIPE, - ACTIONS(3823), 1, - anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(4061), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, + ACTIONS(4115), 1, anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(4205), 1, + anon_sym_EQ_GT, + ACTIONS(4243), 1, anon_sym_DOT_DOT, - ACTIONS(4357), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4265), 1, + anon_sym_AMP_AMP, + ACTIONS(4043), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(4051), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(4065), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(4241), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4045), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(4063), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(4117), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156706,56 +159734,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68761] = 20, - ACTIONS(3586), 1, + [56852] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4267), 1, + anon_sym_RBRACK, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1864), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156766,56 +159798,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68841] = 20, - ACTIONS(3586), 1, + [56938] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4361), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4269), 1, + anon_sym_RBRACK, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1865), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156826,41 +159862,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [68921] = 14, - ACTIONS(29), 1, + [57024] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(4297), 1, + ACTIONS(4163), 1, sym_identifier, - ACTIONS(4299), 1, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(4303), 1, + ACTIONS(4169), 1, anon_sym_STAR, - ACTIONS(4309), 1, + ACTIONS(4175), 1, anon_sym_COLON_COLON, - ACTIONS(4313), 1, + ACTIONS(4179), 1, sym_metavariable, - ACTIONS(4363), 1, + ACTIONS(4271), 1, anon_sym_RBRACE, - STATE(2388), 1, + STATE(2429), 1, sym_scoped_identifier, - STATE(3278), 1, + STATE(2967), 1, + sym__use_clause, + STATE(3317), 1, sym_generic_type_with_turbofish, - STATE(3325), 1, + STATE(3363), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + STATE(1866), 2, sym_line_comment, - ACTIONS(4311), 3, + sym_block_comment, + ACTIONS(4177), 3, sym_self, sym_super, sym_crate, - STATE(3043), 5, - sym__use_clause, + STATE(2771), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4305), 19, + ACTIONS(4171), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -156880,56 +159921,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [68989] = 20, - ACTIONS(3586), 1, + [57100] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4365), 1, + ACTIONS(4273), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156940,56 +159985,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69069] = 20, - ACTIONS(3586), 1, + [57186] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4367), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4275), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157000,56 +160049,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69149] = 20, - ACTIONS(3586), 1, + [57272] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4369), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4067), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157060,56 +160113,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69229] = 20, - ACTIONS(3586), 1, + [57358] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4371), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4277), 1, + anon_sym_SEMI, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157120,56 +160177,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69309] = 20, - ACTIONS(3586), 1, + [57444] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4373), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(4279), 1, + anon_sym_COMMA, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157180,56 +160241,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69389] = 20, - ACTIONS(3586), 1, + [57530] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4375), 1, + ACTIONS(4281), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1872), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157240,56 +160305,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69469] = 20, - ACTIONS(3586), 1, + [57616] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 1, + ACTIONS(4283), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157300,56 +160369,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69549] = 20, - ACTIONS(3586), 1, + [57702] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3498), 1, anon_sym_QMARK, - ACTIONS(3592), 1, + ACTIONS(3500), 1, anon_sym_DOT, - ACTIONS(3738), 1, + ACTIONS(3646), 1, anon_sym_as, - ACTIONS(3811), 1, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, anon_sym_AMP, - ACTIONS(3813), 1, + ACTIONS(3719), 1, anon_sym_CARET, - ACTIONS(3817), 1, + ACTIONS(3723), 1, anon_sym_PIPE, - ACTIONS(3823), 1, + ACTIONS(3729), 1, anon_sym_AMP_AMP, - ACTIONS(3825), 1, + ACTIONS(3731), 1, anon_sym_PIPE_PIPE, - ACTIONS(3843), 1, - anon_sym_EQ, - ACTIONS(3979), 1, + ACTIONS(3887), 1, anon_sym_DOT_DOT, - ACTIONS(4379), 1, + ACTIONS(4285), 1, anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3805), 2, + ACTIONS(3711), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3815), 2, + ACTIONS(3721), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3829), 2, + ACTIONS(3735), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3977), 2, + ACTIONS(3885), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3807), 3, + STATE(1874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3827), 4, + ACTIONS(3733), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3845), 10, + ACTIONS(3737), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157360,91 +160433,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [69629] = 13, - ACTIONS(29), 1, + [57788] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3494), 1, + anon_sym_LBRACK, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(3500), 1, + anon_sym_DOT, + ACTIONS(3646), 1, + anon_sym_as, + ACTIONS(3715), 1, + anon_sym_EQ, + ACTIONS(3717), 1, + anon_sym_AMP, + ACTIONS(3719), 1, + anon_sym_CARET, + ACTIONS(3723), 1, + anon_sym_PIPE, + ACTIONS(3729), 1, + anon_sym_AMP_AMP, + ACTIONS(3731), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3887), 1, + anon_sym_DOT_DOT, + ACTIONS(4287), 1, + anon_sym_RBRACK, + ACTIONS(3711), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3721), 2, anon_sym_LT, - ACTIONS(4297), 1, - sym_identifier, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4303), 1, - anon_sym_STAR, - ACTIONS(4309), 1, - anon_sym_COLON_COLON, - ACTIONS(4313), 1, - sym_metavariable, - STATE(2388), 1, - sym_scoped_identifier, - STATE(3278), 1, - sym_generic_type_with_turbofish, - STATE(3325), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_GT, + ACTIONS(3735), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3885), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1875), 2, sym_line_comment, - ACTIONS(4311), 3, - sym_self, - sym_super, - sym_crate, - STATE(3372), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4305), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [69694] = 13, - ACTIONS(29), 1, + sym_block_comment, + ACTIONS(3713), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3733), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57874] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(4297), 1, + ACTIONS(4163), 1, sym_identifier, - ACTIONS(4299), 1, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(4303), 1, + ACTIONS(4169), 1, anon_sym_STAR, - ACTIONS(4309), 1, + ACTIONS(4175), 1, anon_sym_COLON_COLON, - ACTIONS(4313), 1, + ACTIONS(4179), 1, sym_metavariable, - STATE(2388), 1, + STATE(2429), 1, sym_scoped_identifier, - STATE(3278), 1, + STATE(3291), 1, + sym__use_clause, + STATE(3317), 1, sym_generic_type_with_turbofish, - STATE(3325), 1, + STATE(3363), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + STATE(1876), 2, sym_line_comment, - ACTIONS(4311), 3, + sym_block_comment, + ACTIONS(4177), 3, sym_self, sym_super, sym_crate, - STATE(3364), 5, - sym__use_clause, + STATE(2771), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4305), 19, + ACTIONS(4171), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157464,39 +160554,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [69759] = 13, - ACTIONS(29), 1, + [57947] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(4297), 1, + ACTIONS(4163), 1, sym_identifier, - ACTIONS(4299), 1, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(4303), 1, + ACTIONS(4169), 1, anon_sym_STAR, - ACTIONS(4309), 1, + ACTIONS(4175), 1, anon_sym_COLON_COLON, - ACTIONS(4313), 1, + ACTIONS(4179), 1, sym_metavariable, - STATE(2388), 1, + STATE(2429), 1, sym_scoped_identifier, - STATE(3278), 1, + STATE(3256), 1, + sym__use_clause, + STATE(3317), 1, sym_generic_type_with_turbofish, - STATE(3325), 1, + STATE(3363), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + STATE(1877), 2, sym_line_comment, - ACTIONS(4311), 3, + sym_block_comment, + ACTIONS(4177), 3, sym_self, sym_super, sym_crate, - STATE(3043), 5, - sym__use_clause, + STATE(2771), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4305), 19, + ACTIONS(4171), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157516,39 +160611,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [69824] = 13, - ACTIONS(29), 1, + [58020] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(4297), 1, + ACTIONS(4163), 1, sym_identifier, - ACTIONS(4299), 1, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(4303), 1, + ACTIONS(4169), 1, anon_sym_STAR, - ACTIONS(4309), 1, + ACTIONS(4175), 1, anon_sym_COLON_COLON, - ACTIONS(4313), 1, + ACTIONS(4179), 1, sym_metavariable, - STATE(2388), 1, + STATE(2429), 1, sym_scoped_identifier, - STATE(3278), 1, + STATE(3316), 1, + sym__use_clause, + STATE(3317), 1, sym_generic_type_with_turbofish, - STATE(3325), 1, + STATE(3363), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + STATE(1878), 2, sym_line_comment, - ACTIONS(4311), 3, + sym_block_comment, + ACTIONS(4177), 3, sym_self, sym_super, sym_crate, - STATE(3345), 5, - sym__use_clause, + STATE(2771), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4305), 19, + ACTIONS(4171), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157568,39 +160668,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [69889] = 13, - ACTIONS(29), 1, + [58093] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(4297), 1, + ACTIONS(4163), 1, sym_identifier, - ACTIONS(4299), 1, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(4303), 1, + ACTIONS(4169), 1, anon_sym_STAR, - ACTIONS(4309), 1, + ACTIONS(4175), 1, anon_sym_COLON_COLON, - ACTIONS(4313), 1, + ACTIONS(4179), 1, sym_metavariable, - STATE(2388), 1, + STATE(2429), 1, sym_scoped_identifier, - STATE(3278), 1, + STATE(3317), 1, sym_generic_type_with_turbofish, - STATE(3325), 1, + STATE(3363), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + STATE(3475), 1, + sym__use_clause, + STATE(1879), 2, sym_line_comment, - ACTIONS(4311), 3, + sym_block_comment, + ACTIONS(4177), 3, sym_self, sym_super, sym_crate, - STATE(3277), 5, + STATE(2771), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4171), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [58166] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(4163), 1, + sym_identifier, + ACTIONS(4165), 1, + anon_sym_LBRACE, + ACTIONS(4169), 1, + anon_sym_STAR, + ACTIONS(4175), 1, + anon_sym_COLON_COLON, + ACTIONS(4179), 1, + sym_metavariable, + STATE(2429), 1, + sym_scoped_identifier, + STATE(2967), 1, sym__use_clause, + STATE(3317), 1, + sym_generic_type_with_turbofish, + STATE(3363), 1, + sym_bracketed_type, + STATE(1880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4177), 3, + sym_self, + sym_super, + sym_crate, + STATE(2771), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4305), 19, + ACTIONS(4171), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157620,42 +160782,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [69954] = 15, - ACTIONS(29), 1, + [58239] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4381), 1, + ACTIONS(4289), 1, sym_identifier, - STATE(2829), 1, + STATE(2931), 1, sym_scoped_type_identifier, - STATE(2948), 1, + STATE(3005), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1881), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157673,42 +160839,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70022] = 15, - ACTIONS(29), 1, + [58313] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4383), 1, + ACTIONS(4291), 1, sym_identifier, - STATE(2871), 1, + STATE(2702), 1, sym_scoped_type_identifier, - STATE(3024), 1, + STATE(3171), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157726,42 +160896,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70090] = 15, - ACTIONS(29), 1, + [58387] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4385), 1, + ACTIONS(4293), 1, sym_identifier, - STATE(2665), 1, + STATE(2906), 1, sym_scoped_type_identifier, - STATE(2984), 1, + STATE(3013), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157779,42 +160953,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70158] = 15, - ACTIONS(29), 1, + [58461] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4387), 1, + ACTIONS(4295), 1, sym_identifier, - STATE(2663), 1, + STATE(2937), 1, sym_scoped_type_identifier, - STATE(2980), 1, + STATE(3003), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157832,42 +161010,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70226] = 15, - ACTIONS(29), 1, + [58535] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4389), 1, + ACTIONS(4297), 1, sym_identifier, - STATE(2671), 1, + STATE(2949), 1, sym_scoped_type_identifier, - STATE(2997), 1, + STATE(2995), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1885), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157885,42 +161067,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70294] = 15, - ACTIONS(29), 1, + [58609] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4391), 1, + ACTIONS(4299), 1, sym_identifier, - STATE(2659), 1, + STATE(2953), 1, sym_scoped_type_identifier, - STATE(2971), 1, + STATE(2989), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1886), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157938,42 +161124,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70362] = 15, - ACTIONS(29), 1, + [58683] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4393), 1, + ACTIONS(4301), 1, sym_identifier, - STATE(2924), 1, + STATE(2727), 1, sym_scoped_type_identifier, - STATE(2961), 1, + STATE(3175), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1887), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157991,42 +161181,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70430] = 15, - ACTIONS(29), 1, + [58757] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(3446), 1, + ACTIONS(3276), 1, anon_sym_COLON_COLON, - ACTIONS(3458), 1, + ACTIONS(3288), 1, sym_metavariable, - ACTIONS(3746), 1, + ACTIONS(3668), 1, anon_sym_where, - ACTIONS(4395), 1, + ACTIONS(4303), 1, sym_identifier, - STATE(2692), 1, + STATE(2812), 1, sym_scoped_type_identifier, - STATE(3011), 1, + STATE(3074), 1, sym_generic_type, - STATE(3299), 1, + STATE(3330), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3375), 1, sym_bracketed_type, - STATE(3337), 1, + STATE(3378), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3452), 2, + ACTIONS(3282), 2, anon_sym_default, anon_sym_union, - ACTIONS(3456), 3, + STATE(1888), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3286), 3, sym_self, sym_super, sym_crate, - ACTIONS(3744), 3, + ACTIONS(3666), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3865), 17, + ACTIONS(3773), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158044,15 +161238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [70498] = 3, - ACTIONS(3), 2, - sym_block_comment, + [58831] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1889), 2, sym_line_comment, - ACTIONS(4399), 3, + sym_block_comment, + ACTIONS(4307), 3, anon_sym_COLON_COLON, anon_sym_LT, sym_metavariable, - ACTIONS(4397), 28, + ACTIONS(4305), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158081,15 +161279,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [70538] = 3, - ACTIONS(3), 2, - sym_block_comment, + [58877] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1890), 2, sym_line_comment, - ACTIONS(4403), 3, + sym_block_comment, + ACTIONS(4311), 3, anon_sym_COLON_COLON, anon_sym_LT, sym_metavariable, - ACTIONS(4401), 28, + ACTIONS(4309), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158118,15 +161320,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [70578] = 3, - ACTIONS(3), 2, - sym_block_comment, + [58923] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1891), 2, sym_line_comment, - ACTIONS(4407), 3, + sym_block_comment, + ACTIONS(4315), 3, anon_sym_COLON_COLON, anon_sym_LT, sym_metavariable, - ACTIONS(4405), 28, + ACTIONS(4313), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158155,31 +161361,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [70618] = 11, - ACTIONS(29), 1, + [58969] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(4409), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4323), 1, sym_metavariable, - STATE(2204), 1, + STATE(2252), 1, sym_scoped_identifier, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - STATE(3427), 1, + STATE(3323), 1, sym_attribute, - ACTIONS(3), 2, - sym_block_comment, + STATE(1892), 2, sym_line_comment, - ACTIONS(4413), 3, + sym_block_comment, + ACTIONS(4321), 3, sym_self, sym_super, sym_crate, - ACTIONS(4411), 19, + ACTIONS(4319), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158199,31 +161409,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [70673] = 11, - ACTIONS(29), 1, + [59030] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(4409), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4323), 1, sym_metavariable, - STATE(2204), 1, + STATE(2252), 1, sym_scoped_identifier, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - STATE(3462), 1, + STATE(3295), 1, sym_attribute, - ACTIONS(3), 2, - sym_block_comment, + STATE(1893), 2, sym_line_comment, - ACTIONS(4413), 3, + sym_block_comment, + ACTIONS(4321), 3, sym_self, sym_super, sym_crate, - ACTIONS(4411), 19, + ACTIONS(4319), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158243,31 +161457,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [70728] = 11, - ACTIONS(29), 1, + [59091] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(4409), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4323), 1, sym_metavariable, - STATE(2204), 1, + STATE(2252), 1, sym_scoped_identifier, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - STATE(3282), 1, + STATE(3433), 1, sym_attribute, - ACTIONS(3), 2, - sym_block_comment, + STATE(1894), 2, sym_line_comment, - ACTIONS(4413), 3, + sym_block_comment, + ACTIONS(4321), 3, sym_self, sym_super, sym_crate, - ACTIONS(4411), 19, + ACTIONS(4319), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158287,31 +161505,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [70783] = 11, - ACTIONS(29), 1, + [59152] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(4409), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4323), 1, sym_metavariable, - STATE(2204), 1, + STATE(2252), 1, sym_scoped_identifier, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - STATE(3269), 1, + STATE(3442), 1, sym_attribute, - ACTIONS(3), 2, - sym_block_comment, + STATE(1895), 2, sym_line_comment, - ACTIONS(4413), 3, + sym_block_comment, + ACTIONS(4321), 3, sym_self, sym_super, sym_crate, - ACTIONS(4411), 19, + ACTIONS(4319), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158331,31 +161553,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [70838] = 11, - ACTIONS(29), 1, + [59213] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(4409), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4323), 1, sym_metavariable, - STATE(2204), 1, + STATE(2252), 1, sym_scoped_identifier, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - STATE(3442), 1, + STATE(3275), 1, sym_attribute, - ACTIONS(3), 2, - sym_block_comment, + STATE(1896), 2, sym_line_comment, - ACTIONS(4413), 3, + sym_block_comment, + ACTIONS(4321), 3, sym_self, sym_super, sym_crate, - ACTIONS(4411), 19, + ACTIONS(4319), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158375,31 +161601,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [70893] = 11, - ACTIONS(29), 1, + [59274] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(4409), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4323), 1, sym_metavariable, - STATE(2204), 1, + STATE(2252), 1, sym_scoped_identifier, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3215), 1, - sym_attribute, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, + STATE(3267), 1, + sym_attribute, + STATE(1897), 2, sym_line_comment, - ACTIONS(4413), 3, + sym_block_comment, + ACTIONS(4321), 3, sym_self, sym_super, sym_crate, - ACTIONS(4411), 19, + ACTIONS(4319), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158419,31 +161649,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [70948] = 11, - ACTIONS(29), 1, + [59335] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(1837), 1, + ACTIONS(1725), 1, anon_sym_COLON_COLON, - ACTIONS(4409), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4323), 1, sym_metavariable, - STATE(2204), 1, + STATE(2252), 1, sym_scoped_identifier, - STATE(3198), 1, + STATE(3236), 1, sym_bracketed_type, - STATE(3220), 1, + STATE(3261), 1, sym_generic_type_with_turbofish, - STATE(3411), 1, + STATE(3450), 1, sym_attribute, - ACTIONS(3), 2, - sym_block_comment, + STATE(1898), 2, sym_line_comment, - ACTIONS(4413), 3, + sym_block_comment, + ACTIONS(4321), 3, sym_self, sym_super, sym_crate, - ACTIONS(4411), 19, + ACTIONS(4319), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158463,29 +161697,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [71003] = 10, - ACTIONS(29), 1, + [59396] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(4417), 1, + ACTIONS(4325), 1, sym_identifier, - ACTIONS(4421), 1, + ACTIONS(4329), 1, anon_sym_COLON_COLON, - ACTIONS(4425), 1, + ACTIONS(4333), 1, sym_metavariable, - STATE(3073), 1, + STATE(3125), 1, sym_scoped_identifier, - STATE(3278), 1, + STATE(3317), 1, sym_generic_type_with_turbofish, - STATE(3325), 1, + STATE(3363), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + STATE(1899), 2, sym_line_comment, - ACTIONS(4423), 3, + sym_block_comment, + ACTIONS(4331), 3, sym_self, sym_super, sym_crate, - ACTIONS(4419), 19, + ACTIONS(4327), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158505,29 +161743,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [71055] = 10, - ACTIONS(29), 1, + [59454] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(31), 1, anon_sym_LT, - ACTIONS(4421), 1, + ACTIONS(4329), 1, anon_sym_COLON_COLON, - ACTIONS(4427), 1, + ACTIONS(4335), 1, sym_identifier, - ACTIONS(4433), 1, + ACTIONS(4341), 1, sym_metavariable, - STATE(3053), 1, + STATE(3219), 1, sym_scoped_identifier, - STATE(3278), 1, + STATE(3317), 1, sym_generic_type_with_turbofish, - STATE(3325), 1, + STATE(3363), 1, sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, + STATE(1900), 2, sym_line_comment, - ACTIONS(4431), 3, + sym_block_comment, + ACTIONS(4339), 3, sym_self, sym_super, sym_crate, - ACTIONS(4429), 19, + ACTIONS(4337), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158547,13 +161789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [71107] = 3, - ACTIONS(1562), 1, + [59512] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1518), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + STATE(1901), 2, sym_line_comment, - ACTIONS(1564), 20, + sym_block_comment, + ACTIONS(1520), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158574,25 +161820,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71137] = 9, - ACTIONS(3260), 1, + [59548] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3160), 1, anon_sym_COLON, - ACTIONS(4435), 1, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1902), 2, sym_line_comment, - ACTIONS(3256), 14, + sym_block_comment, + ACTIONS(3156), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158607,13 +161857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [71179] = 3, - ACTIONS(1620), 1, + [59596] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1464), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + STATE(1903), 2, sym_line_comment, - ACTIONS(1622), 20, + sym_block_comment, + ACTIONS(1466), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158634,47 +161888,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71209] = 8, - ACTIONS(3280), 1, - anon_sym_COLON, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, + [59632] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4443), 1, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4357), 1, + anon_sym_COLON, + ACTIONS(4359), 1, anon_sym_COLON_COLON, - STATE(1908), 1, + ACTIONS(4361), 1, + anon_sym_AT, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1904), 2, sym_line_comment, - ACTIONS(3278), 14, + sym_block_comment, + ACTIONS(4351), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [71248] = 4, - ACTIONS(3324), 1, + anon_sym_in, + [59685] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3220), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3326), 2, + ACTIONS(3222), 2, anon_sym_COLON_COLON, anon_sym_BANG, - ACTIONS(3322), 17, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3218), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -158692,53 +161958,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [71279] = 12, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4447), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LBRACE, - ACTIONS(4451), 1, + [59722] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3176), 1, anon_sym_COLON, - ACTIONS(4453), 1, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, anon_sym_COLON_COLON, - ACTIONS(4455), 1, - anon_sym_AT, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1941), 1, + sym_parameters, + STATE(1906), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 9, + sym_block_comment, + ACTIONS(3174), 14, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [71326] = 4, - ACTIONS(3312), 1, + [59767] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3180), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3314), 2, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, anon_sym_COLON_COLON, - anon_sym_BANG, - ACTIONS(3310), 17, + STATE(1929), 1, + sym_type_arguments, + STATE(1941), 1, + sym_parameters, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3178), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -158750,20 +162026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [71357] = 4, - ACTIONS(3284), 1, + [59812] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3286), 2, + ACTIONS(3190), 2, anon_sym_COLON_COLON, anon_sym_BANG, - ACTIONS(3282), 17, + STATE(1908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3186), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -158781,16 +162059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [71388] = 4, - ACTIONS(3304), 1, + [59849] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3306), 2, + ACTIONS(3210), 2, anon_sym_COLON_COLON, anon_sym_BANG, - ACTIONS(3302), 17, + STATE(1909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3206), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -158808,23 +162090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [71419] = 8, - ACTIONS(3276), 1, + [59886] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3170), 1, anon_sym_COLON, - ACTIONS(4435), 1, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4443), 1, + ACTIONS(4367), 1, anon_sym_COLON_COLON, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1910), 2, sym_line_comment, - ACTIONS(3274), 14, + sym_block_comment, + ACTIONS(3168), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158839,24 +162125,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [71458] = 8, - ACTIONS(3270), 1, + [59931] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3200), 1, anon_sym_COLON, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, + ACTIONS(3202), 2, anon_sym_COLON_COLON, - STATE(1908), 1, - sym_type_arguments, - STATE(1927), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_BANG, + STATE(1911), 2, sym_line_comment, - ACTIONS(3268), 14, + sym_block_comment, + ACTIONS(3198), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -158868,21 +162152,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [71497] = 6, - ACTIONS(4435), 1, + anon_sym_LT2, + [59968] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1912), 2, sym_line_comment, - ACTIONS(3318), 15, + sym_block_comment, + ACTIONS(3214), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158898,19 +162188,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [71531] = 6, - ACTIONS(4435), 1, + [60008] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1913), 2, sym_line_comment, - ACTIONS(3290), 15, + sym_block_comment, + ACTIONS(3194), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158926,19 +162220,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [71565] = 6, - ACTIONS(4435), 1, + [60048] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1914), 2, sym_line_comment, - ACTIONS(3298), 15, + sym_block_comment, + ACTIONS(3226), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158954,19 +162252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [71599] = 6, - ACTIONS(4435), 1, + [60088] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1915), 2, sym_line_comment, - ACTIONS(3294), 15, + sym_block_comment, + ACTIONS(3182), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -158982,14 +162284,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [71633] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3316), 2, + [60128] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3314), 16, + STATE(1916), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3222), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159006,17 +162312,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71660] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3310), 2, + [60161] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3186), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3316), 2, + ACTIONS(3192), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3314), 14, + STATE(1917), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3190), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159031,44 +162341,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71689] = 2, - ACTIONS(3), 2, - sym_block_comment, + [60196] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1918), 2, sym_line_comment, - ACTIONS(3322), 18, + sym_block_comment, + ACTIONS(3202), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [71714] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3322), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(3328), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [60229] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3326), 14, + STATE(1919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3190), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ, anon_sym_COMMA, @@ -159079,41 +162397,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71743] = 3, - ACTIONS(3), 2, - sym_block_comment, + [60262] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1920), 2, sym_line_comment, - ACTIONS(3288), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(3286), 16, + sym_block_comment, + ACTIONS(3206), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_BANG, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - [71770] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3282), 2, + anon_sym_LT2, + [60293] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3198), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3288), 2, + ACTIONS(3204), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3286), 14, + STATE(1921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3202), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159128,20 +162453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71799] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3308), 2, + [60328] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3218), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(3224), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3306), 16, + STATE(1922), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3222), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_EQ, anon_sym_COMMA, @@ -159152,14 +162482,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71826] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3328), 2, + [60363] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3326), 16, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3210), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159176,17 +162510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71853] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3302), 2, + [60396] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3206), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3308), 2, + ACTIONS(3212), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3306), 14, + STATE(1924), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3210), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159201,79 +162539,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [71882] = 3, - ACTIONS(3372), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3370), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [71908] = 10, - ACTIONS(4441), 1, + [60431] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4463), 1, + ACTIONS(4371), 1, anon_sym_COLON, - ACTIONS(4465), 1, + ACTIONS(4373), 1, anon_sym_COLON_COLON, - ACTIONS(4467), 1, + ACTIONS(4375), 1, anon_sym_BANG, - ACTIONS(4471), 1, + ACTIONS(4379), 1, anon_sym_DOT_DOT, - STATE(1901), 1, + STATE(1933), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4469), 2, + ACTIONS(4377), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71948] = 9, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4463), 1, - anon_sym_COLON, - ACTIONS(4467), 1, - anon_sym_BANG, - ACTIONS(4471), 1, - anon_sym_DOT_DOT, - ACTIONS(4473), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1925), 2, sym_line_comment, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 9, + sym_block_comment, + ACTIONS(4369), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -159283,13 +162572,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [71986] = 3, - ACTIONS(3388), 1, + [60475] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3340), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1926), 2, sym_line_comment, - ACTIONS(3386), 16, + sym_block_comment, + ACTIONS(3338), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159306,50 +162599,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [72012] = 17, - ACTIONS(4477), 1, + [60507] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4383), 1, anon_sym_const, - ACTIONS(4479), 1, + ACTIONS(4385), 1, anon_sym_enum, - ACTIONS(4481), 1, + ACTIONS(4387), 1, anon_sym_fn, - ACTIONS(4483), 1, + ACTIONS(4389), 1, anon_sym_mod, - ACTIONS(4485), 1, + ACTIONS(4391), 1, anon_sym_static, - ACTIONS(4487), 1, + ACTIONS(4393), 1, anon_sym_struct, - ACTIONS(4489), 1, + ACTIONS(4395), 1, anon_sym_trait, - ACTIONS(4491), 1, + ACTIONS(4397), 1, anon_sym_type, - ACTIONS(4493), 1, + ACTIONS(4399), 1, anon_sym_union, - ACTIONS(4495), 1, + ACTIONS(4401), 1, anon_sym_unsafe, - ACTIONS(4497), 1, + ACTIONS(4403), 1, anon_sym_use, - ACTIONS(4499), 1, + ACTIONS(4405), 1, anon_sym_extern, - STATE(2074), 1, + STATE(2111), 1, sym_extern_modifier, - STATE(2180), 1, + STATE(2168), 1, aux_sym_function_modifiers_repeat1, - STATE(3351), 1, + STATE(3402), 1, sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4475), 2, + ACTIONS(4381), 2, anon_sym_async, anon_sym_default, - [72066] = 3, - ACTIONS(3368), 1, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + [60567] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_COLON, + STATE(1928), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3342), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [60599] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3400), 1, anon_sym_COLON, - ACTIONS(3), 2, + STATE(1929), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3398), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [60631] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3390), 1, + anon_sym_COLON, + STATE(1930), 2, sym_line_comment, - ACTIONS(3366), 16, + sym_block_comment, + ACTIONS(3388), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159366,50 +162721,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [72092] = 17, - ACTIONS(4501), 1, + [60663] = 19, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4407), 1, anon_sym_const, - ACTIONS(4503), 1, + ACTIONS(4409), 1, anon_sym_enum, - ACTIONS(4505), 1, + ACTIONS(4411), 1, anon_sym_fn, - ACTIONS(4507), 1, + ACTIONS(4413), 1, anon_sym_mod, - ACTIONS(4509), 1, + ACTIONS(4415), 1, anon_sym_static, - ACTIONS(4511), 1, + ACTIONS(4417), 1, anon_sym_struct, - ACTIONS(4513), 1, + ACTIONS(4419), 1, anon_sym_trait, - ACTIONS(4515), 1, + ACTIONS(4421), 1, anon_sym_type, - ACTIONS(4517), 1, + ACTIONS(4423), 1, anon_sym_union, - ACTIONS(4519), 1, + ACTIONS(4425), 1, anon_sym_unsafe, - ACTIONS(4521), 1, + ACTIONS(4427), 1, anon_sym_use, - ACTIONS(4523), 1, + ACTIONS(4429), 1, anon_sym_extern, - STATE(2096), 1, + STATE(2137), 1, sym_extern_modifier, - STATE(2180), 1, + STATE(2168), 1, aux_sym_function_modifiers_repeat1, - STATE(3458), 1, + STATE(3499), 1, sym_function_modifiers, - ACTIONS(3), 2, + ACTIONS(4381), 2, + anon_sym_async, + anon_sym_default, + STATE(1931), 2, + sym_line_comment, sym_block_comment, + [60723] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(4375), 1, + anon_sym_BANG, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1932), 2, sym_line_comment, - ACTIONS(4475), 2, + sym_block_comment, + ACTIONS(4369), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3254), 6, anon_sym_async, + anon_sym_const, anon_sym_default, - [72146] = 3, - ACTIONS(3408), 1, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [60769] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3380), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1933), 2, sym_line_comment, - ACTIONS(3406), 16, + sym_block_comment, + ACTIONS(3378), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159426,13 +162823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [72172] = 3, - ACTIONS(3434), 1, + [60801] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3350), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1934), 2, sym_line_comment, - ACTIONS(3432), 16, + sym_block_comment, + ACTIONS(3348), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159449,13 +162850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [72198] = 3, - ACTIONS(3476), 1, + [60833] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3228), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + STATE(1935), 2, sym_line_comment, - ACTIONS(3474), 16, + sym_block_comment, + ACTIONS(3226), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159464,49 +162871,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [72224] = 9, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4467), 1, - anon_sym_BANG, - ACTIONS(4471), 1, - anon_sym_DOT_DOT, - ACTIONS(4525), 1, + [60866] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3216), 1, + anon_sym_COLON, + ACTIONS(4435), 1, anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(1936), 2, sym_line_comment, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 3, + sym_block_comment, + ACTIONS(3214), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72261] = 3, - ACTIONS(4527), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60899] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3196), 1, + anon_sym_COLON, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + STATE(1937), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3194), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60932] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1938), 2, sym_line_comment, - ACTIONS(3380), 15, + sym_block_comment, + ACTIONS(898), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159522,13 +162955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72286] = 3, - ACTIONS(4529), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_in, + [60961] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1939), 2, sym_line_comment, - ACTIONS(3420), 15, + sym_block_comment, + ACTIONS(954), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159544,20 +162980,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72311] = 4, - ACTIONS(3320), 1, - anon_sym_COLON, - ACTIONS(4531), 1, + anon_sym_in, + [60990] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4361), 1, + anon_sym_AT, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4437), 1, + anon_sym_LPAREN, + ACTIONS(4439), 1, + anon_sym_RBRACK, + ACTIONS(4442), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + STATE(1929), 1, + sym_type_arguments, + STATE(1941), 1, + sym_parameters, + ACTIONS(3156), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4351), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1940), 2, + sym_line_comment, sym_block_comment, + [61043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4444), 1, + anon_sym_DASH_GT, + STATE(1941), 2, sym_line_comment, - ACTIONS(3318), 14, + sym_block_comment, + ACTIONS(3402), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -159567,11 +163044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72338] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61074] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1942), 2, sym_line_comment, - ACTIONS(1000), 16, + sym_block_comment, + ACTIONS(3334), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159580,6 +163061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -159587,14 +163069,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [72361] = 3, - ACTIONS(4533), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [61103] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4375), 1, + anon_sym_BANG, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4446), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1943), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4369), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61146] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4448), 1, + anon_sym_DASH_GT, + STATE(1944), 2, sym_line_comment, - ACTIONS(3498), 15, + sym_block_comment, + ACTIONS(3352), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159610,11 +163127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72386] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61177] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1945), 2, sym_line_comment, - ACTIONS(984), 16, + sym_block_comment, + ACTIONS(3262), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159623,6 +163144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -159630,21 +163152,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [72409] = 4, - ACTIONS(3300), 1, - anon_sym_COLON, - ACTIONS(4023), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [61206] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + STATE(1946), 2, sym_line_comment, - ACTIONS(3298), 14, + sym_block_comment, + ACTIONS(3296), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -159654,11 +163178,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72436] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61237] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4452), 1, + anon_sym_DASH_GT, + STATE(1947), 2, sym_line_comment, - ACTIONS(950), 16, + sym_block_comment, + ACTIONS(3256), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159674,14 +163204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [72459] = 3, - ACTIONS(4535), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [61268] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1948), 2, sym_line_comment, - ACTIONS(3358), 15, + sym_block_comment, + ACTIONS(910), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159697,13 +163228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72484] = 3, - ACTIONS(4537), 1, + anon_sym_in, + [61297] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4454), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, + STATE(1949), 2, sym_line_comment, - ACTIONS(3967), 15, + sym_block_comment, + ACTIONS(3875), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -159719,15 +163255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [72509] = 4, - ACTIONS(3292), 1, + [61328] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3216), 1, anon_sym_COLON, - ACTIONS(4531), 1, + ACTIONS(4433), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1950), 2, sym_line_comment, - ACTIONS(3290), 14, + sym_block_comment, + ACTIONS(3214), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159742,53 +163282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72536] = 14, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4449), 1, - anon_sym_LBRACE, - ACTIONS(4455), 1, - anon_sym_AT, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(4539), 1, - anon_sym_LPAREN, - ACTIONS(4541), 1, - anon_sym_RBRACK, - ACTIONS(4544), 1, - anon_sym_COLON_COLON, - STATE(1908), 1, - sym_type_arguments, - STATE(1927), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + [61361] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1951), 2, sym_line_comment, - ACTIONS(3256), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4445), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [72583] = 4, - ACTIONS(3300), 1, - anon_sym_COLON, - ACTIONS(4546), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3298), 14, + ACTIONS(1002), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -159798,58 +163306,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72610] = 4, - ACTIONS(3296), 1, + anon_sym_in, + [61390] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4357), 1, anon_sym_COLON, - ACTIONS(4531), 1, + ACTIONS(4361), 1, + anon_sym_AT, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4456), 1, + anon_sym_LPAREN, + ACTIONS(4458), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1929), 1, + sym_type_arguments, + STATE(1941), 1, + sym_parameters, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1952), 2, sym_line_comment, - ACTIONS(3294), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [72637] = 3, - ACTIONS(4548), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3482), 15, - anon_sym_SEMI, + ACTIONS(3156), 3, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [72662] = 3, - ACTIONS(4550), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + [61443] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1953), 2, sym_line_comment, - ACTIONS(3400), 15, + sym_block_comment, + ACTIONS(3322), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159858,6 +163361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -159865,11 +163369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72687] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61472] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1954), 2, sym_line_comment, - ACTIONS(3414), 16, + sym_block_comment, + ACTIONS(3362), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159886,20 +163394,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72710] = 4, - ACTIONS(3300), 1, - anon_sym_COLON, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [61501] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4460), 1, + anon_sym_DASH_GT, + STATE(1955), 2, sym_line_comment, - ACTIONS(3298), 14, + sym_block_comment, + ACTIONS(3290), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -159909,11 +163420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72737] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61532] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4462), 1, + anon_sym_DASH_GT, + STATE(1956), 2, sym_line_comment, - ACTIONS(3390), 16, + sym_block_comment, + ACTIONS(3382), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -159922,7 +163439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -159930,84 +163446,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72760] = 14, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4445), 1, - anon_sym_PIPE, - ACTIONS(4449), 1, - anon_sym_LBRACE, - ACTIONS(4451), 1, - anon_sym_COLON, - ACTIONS(4455), 1, - anon_sym_AT, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(4552), 1, - anon_sym_LPAREN, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - STATE(1908), 1, - sym_type_arguments, - STATE(1927), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3256), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72807] = 15, - ACTIONS(3256), 1, - anon_sym_PLUS, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4445), 1, - anon_sym_PIPE, - ACTIONS(4449), 1, - anon_sym_LBRACE, - ACTIONS(4451), 1, + [61563] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3184), 1, anon_sym_COLON, - ACTIONS(4455), 1, - anon_sym_AT, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(4556), 1, - anon_sym_LPAREN, - ACTIONS(4558), 1, + ACTIONS(4433), 1, anon_sym_COLON_COLON, - STATE(1908), 1, - sym_type_arguments, - STATE(1927), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(1957), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4541), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [72856] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1008), 16, + ACTIONS(3182), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -160017,14 +163473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [72879] = 3, - ACTIONS(4560), 1, + [61596] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4464), 1, anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, + STATE(1958), 2, sym_line_comment, - ACTIONS(3374), 15, + sym_block_comment, + ACTIONS(3326), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160040,11 +163499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72904] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61627] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1959), 2, sym_line_comment, - ACTIONS(3428), 16, + sym_block_comment, + ACTIONS(3310), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160061,20 +163524,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72927] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61656] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3216), 1, + anon_sym_COLON, + ACTIONS(3927), 1, + anon_sym_COLON_COLON, + STATE(1960), 2, sym_line_comment, - ACTIONS(3460), 16, + sym_block_comment, + ACTIONS(3214), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -160082,59 +163551,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [72950] = 8, - ACTIONS(4439), 1, + [61689] = 17, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3156), 1, + anon_sym_PLUS, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_LPAREN, - ACTIONS(4451), 1, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4357), 1, anon_sym_COLON, - ACTIONS(4459), 1, + ACTIONS(4361), 1, + anon_sym_AT, + ACTIONS(4365), 1, anon_sym_DOT_DOT, - ACTIONS(4562), 1, + ACTIONS(4466), 1, + anon_sym_LPAREN, + ACTIONS(4468), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, + STATE(1929), 1, + sym_type_arguments, + STATE(1941), 1, + sym_parameters, + ACTIONS(4363), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 9, - anon_sym_SEMI, + ACTIONS(4439), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [72985] = 2, - ACTIONS(3), 2, + STATE(1961), 2, + sym_line_comment, sym_block_comment, + [61744] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, + anon_sym_COLON, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4470), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1962), 2, sym_line_comment, - ACTIONS(3478), 16, + sym_block_comment, + ACTIONS(4351), 9, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [73008] = 2, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_in, + [61785] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1963), 2, sym_line_comment, - ACTIONS(3294), 15, + sym_block_comment, + ACTIONS(3484), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160150,11 +163644,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73030] = 2, - ACTIONS(3), 2, + [61813] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + STATE(1964), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3879), 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, + [61843] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1965), 2, sym_line_comment, - ACTIONS(3318), 15, + sym_block_comment, + ACTIONS(3434), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160170,11 +163693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73052] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61871] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1966), 2, sym_line_comment, - ACTIONS(3602), 15, + sym_block_comment, + ACTIONS(3474), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160190,11 +163717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73074] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61899] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1967), 2, sym_line_comment, - ACTIONS(3550), 15, + sym_block_comment, + ACTIONS(3666), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160210,11 +163741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73096] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61927] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1968), 2, sym_line_comment, - ACTIONS(3566), 15, + sym_block_comment, + ACTIONS(3182), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160230,11 +163765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73118] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61955] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1969), 2, sym_line_comment, - ACTIONS(3542), 15, + sym_block_comment, + ACTIONS(3600), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160250,11 +163789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73140] = 2, - ACTIONS(3), 2, - sym_block_comment, + [61983] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1970), 2, sym_line_comment, - ACTIONS(3570), 15, + sym_block_comment, + ACTIONS(3470), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160270,11 +163813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73162] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62011] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1971), 2, sym_line_comment, - ACTIONS(3614), 15, + sym_block_comment, + ACTIONS(3450), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160290,11 +163837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73184] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62039] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1972), 2, sym_line_comment, - ACTIONS(3538), 15, + sym_block_comment, + ACTIONS(3506), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160310,11 +163861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73206] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62067] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1973), 2, sym_line_comment, - ACTIONS(3704), 15, + sym_block_comment, + ACTIONS(3484), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160330,13 +163885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73228] = 3, - ACTIONS(4564), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [62095] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1974), 2, sym_line_comment, - ACTIONS(3971), 14, + sym_block_comment, + ACTIONS(3961), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -160351,11 +163908,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [73252] = 2, - ACTIONS(3), 2, + sym_identifier, + [62123] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1975), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3953), 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, + [62151] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1976), 2, sym_line_comment, - ACTIONS(3598), 15, + sym_block_comment, + ACTIONS(3502), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160371,39 +163957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73274] = 10, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4461), 1, - anon_sym_PIPE, - ACTIONS(4463), 1, - anon_sym_COLON, - ACTIONS(4467), 1, - anon_sym_BANG, - ACTIONS(4471), 1, - anon_sym_DOT_DOT, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + [62179] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1977), 2, sym_line_comment, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73312] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3562), 15, + ACTIONS(3514), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160419,71 +163981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73334] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4059), 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, - [73356] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4053), 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, - [73378] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62207] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1978), 2, sym_line_comment, - ACTIONS(4047), 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, - [73400] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3534), 15, + ACTIONS(3446), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160499,11 +164005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73422] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62235] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1979), 2, sym_line_comment, - ACTIONS(3290), 15, + sym_block_comment, + ACTIONS(3430), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160519,32 +164029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73444] = 3, - ACTIONS(3781), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [62263] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1980), 2, sym_line_comment, - ACTIONS(3971), 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, - [73468] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3618), 15, + ACTIONS(3592), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160560,11 +164053,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73490] = 2, - ACTIONS(3), 2, + [62291] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1981), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3965), 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, + [62319] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1982), 2, sym_line_comment, - ACTIONS(3712), 15, + sym_block_comment, + ACTIONS(3226), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160580,11 +164101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73512] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62347] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1983), 2, sym_line_comment, - ACTIONS(3744), 15, + sym_block_comment, + ACTIONS(3214), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160600,11 +164125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73534] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62375] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1984), 2, sym_line_comment, - ACTIONS(3298), 15, + sym_block_comment, + ACTIONS(3454), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160620,11 +164149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73556] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62403] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1985), 2, sym_line_comment, - ACTIONS(3610), 15, + sym_block_comment, + ACTIONS(3418), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160640,11 +164173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73578] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62431] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1986), 2, sym_line_comment, - ACTIONS(3558), 15, + sym_block_comment, + ACTIONS(3510), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160660,11 +164197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73600] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62459] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1987), 2, sym_line_comment, - ACTIONS(3554), 15, + sym_block_comment, + ACTIONS(3194), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160680,11 +164221,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73622] = 2, - ACTIONS(3), 2, + [62487] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + STATE(1988), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3879), 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, + [62517] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1989), 2, sym_line_comment, - ACTIONS(3546), 15, + sym_block_comment, + ACTIONS(3438), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160700,11 +164270,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73644] = 2, - ACTIONS(3), 2, + [62545] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4369), 1, + anon_sym_PIPE, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(4375), 1, + anon_sym_BANG, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4474), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1990), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62589] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1991), 2, sym_line_comment, - ACTIONS(3622), 15, + sym_block_comment, + ACTIONS(3518), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160720,11 +164326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73666] = 2, - ACTIONS(3), 2, - sym_block_comment, + [62617] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1992), 2, sym_line_comment, - ACTIONS(3598), 15, + sym_block_comment, + ACTIONS(3426), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -160740,15 +164350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [73688] = 4, - ACTIONS(4570), 1, + [62645] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4478), 1, anon_sym_pat, - STATE(428), 1, + STATE(433), 1, sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(1993), 2, sym_line_comment, - ACTIONS(4568), 12, + sym_block_comment, + ACTIONS(4476), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -160761,87 +164375,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [73713] = 14, - ACTIONS(4435), 1, + [62676] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4572), 1, + ACTIONS(4480), 1, anon_sym_COLON, - ACTIONS(4574), 1, + ACTIONS(4482), 1, anon_sym_EQ, - ACTIONS(4576), 1, + ACTIONS(4484), 1, anon_sym_COMMA, - ACTIONS(4578), 1, + ACTIONS(4486), 1, anon_sym_GT, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - STATE(2843), 1, + STATE(2738), 1, aux_sym_type_parameters_repeat1, - STATE(2918), 1, + STATE(2753), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3256), 2, + ACTIONS(3156), 2, anon_sym_PLUS, anon_sym_as, - [73758] = 3, - ACTIONS(1600), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, + STATE(1994), 2, + sym_line_comment, sym_block_comment, + [62727] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(4373), 1, + anon_sym_COLON_COLON, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1995), 2, sym_line_comment, - ACTIONS(1602), 13, + sym_block_comment, + ACTIONS(4369), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, anon_sym_else, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, - [73781] = 6, - ACTIONS(4463), 1, - anon_sym_COLON, - ACTIONS(4471), 1, + [62762] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1490), 1, anon_sym_DOT_DOT, - ACTIONS(4473), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1996), 2, sym_line_comment, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 9, + sym_block_comment, + ACTIONS(1492), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_else, + anon_sym_DOT_DOT_DOT, anon_sym_in, - [73810] = 3, - ACTIONS(4582), 1, + anon_sym_DOT_DOT_EQ, + [62791] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1997), 2, sym_line_comment, - ACTIONS(4580), 12, + sym_block_comment, + ACTIONS(4351), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -160851,359 +164484,491 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, - [73832] = 5, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3328), 2, - anon_sym_COLON, + [62821] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 1, anon_sym_DOT_DOT, - ACTIONS(3322), 3, + ACTIONS(4488), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(1998), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3218), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4584), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3222), 6, anon_sym_COMMA, - ACTIONS(3326), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [73858] = 5, - ACTIONS(4587), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3288), 2, + [62853] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3282), 5, - anon_sym_RPAREN, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3218), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3286), 5, + ACTIONS(4488), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3222), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [73884] = 5, - ACTIONS(3308), 1, + [62885] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4491), 1, + anon_sym_LPAREN, + ACTIONS(3204), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + STATE(2000), 2, sym_line_comment, - ACTIONS(4590), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(3302), 4, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(3198), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3306), 6, anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3202), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [73910] = 5, - ACTIONS(4593), 1, + [62917] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4494), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3316), 2, + ACTIONS(3212), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3310), 5, + STATE(2001), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3206), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3314), 5, + ACTIONS(3210), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [73936] = 4, - ACTIONS(4459), 1, + [62949] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4491), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [73960] = 3, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + STATE(2002), 2, sym_line_comment, - ACTIONS(4596), 12, + sym_block_comment, + ACTIONS(3198), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3202), 6, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_in, anon_sym_DOT_DOT_EQ, - [73982] = 5, - ACTIONS(4590), 1, + [62981] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4488), 1, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3308), 2, + ACTIONS(3224), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3302), 5, + STATE(2003), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3218), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3306), 5, + ACTIONS(3222), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74008] = 5, - ACTIONS(4584), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3328), 2, + [63013] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3322), 5, - anon_sym_RPAREN, + STATE(2004), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3206), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3326), 5, + ACTIONS(4494), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3210), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74034] = 5, - ACTIONS(3328), 1, + [63045] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + STATE(2005), 2, sym_line_comment, - ACTIONS(4584), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(3322), 4, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(3186), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3326), 6, + ACTIONS(4497), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(3190), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74060] = 5, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3288), 2, + [63077] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 2, anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3282), 3, + STATE(2006), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3198), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4587), 3, + ACTIONS(4491), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3286), 5, + ACTIONS(3202), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74086] = 5, - ACTIONS(3316), 1, + [63109] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4497), 1, + anon_sym_LPAREN, + ACTIONS(3192), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + STATE(2007), 2, sym_line_comment, - ACTIONS(4593), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(3310), 4, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(3186), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3314), 6, anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3190), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74112] = 5, - ACTIONS(3288), 1, + [63141] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4587), 2, + ACTIONS(4494), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(3282), 4, + STATE(2008), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3206), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3286), 6, + ACTIONS(3210), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74138] = 11, - ACTIONS(4441), 1, + [63173] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4600), 1, + ACTIONS(4500), 1, anon_sym_LPAREN, - ACTIONS(4602), 1, + ACTIONS(4502), 1, anon_sym_LBRACE, - ACTIONS(4604), 1, + ACTIONS(4504), 1, anon_sym_COLON_COLON, - ACTIONS(4606), 1, + ACTIONS(4506), 1, anon_sym_BANG, - ACTIONS(4608), 1, + ACTIONS(4508), 1, anon_sym_AT, - ACTIONS(4612), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4610), 2, + ACTIONS(4510), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 3, + STATE(2009), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4351), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [74176] = 5, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3308), 2, - anon_sym_COLON, + [63217] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, anon_sym_DOT_DOT, - ACTIONS(3302), 3, + ACTIONS(4497), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2010), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3186), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4590), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3190), 6, anon_sym_COMMA, - ACTIONS(3306), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74202] = 5, - ACTIONS(3), 2, - sym_block_comment, + [63249] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4516), 1, + anon_sym_DOT_DOT, + STATE(2011), 2, sym_line_comment, - ACTIONS(3316), 2, + sym_block_comment, + ACTIONS(4514), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [63277] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4520), 1, anon_sym_DOT_DOT, - ACTIONS(3310), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4593), 3, - anon_sym_LPAREN, + STATE(2012), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4518), 12, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3314), 5, - anon_sym_COLON_COLON, - anon_sym_BANG, anon_sym_PIPE, + anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_in, anon_sym_DOT_DOT_EQ, - [74228] = 8, - ACTIONS(15), 1, + [63305] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4489), 1, + ACTIONS(4395), 1, anon_sym_trait, - ACTIONS(4614), 1, + ACTIONS(4522), 1, anon_sym_impl, - STATE(189), 1, + STATE(213), 1, sym_block, - STATE(3218), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, + STATE(2013), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63342] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1070), 1, + aux_sym_string_literal_token1, + ACTIONS(4526), 1, + sym_crate, + STATE(2204), 1, + sym_string_literal, + STATE(2014), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(4524), 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, - [74259] = 4, - ACTIONS(4618), 1, - anon_sym_COLON, - ACTIONS(4620), 1, + [63372] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 1, + anon_sym_DOT_DOT, + ACTIONS(3206), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2015), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3210), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [63400] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 1, + anon_sym_DOT_DOT, + ACTIONS(3198), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2016), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3202), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [63428] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4530), 1, + anon_sym_COLON, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + STATE(2017), 2, sym_line_comment, - ACTIONS(4616), 9, + sym_block_comment, + ACTIONS(4528), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161213,57 +164978,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74281] = 9, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4437), 1, + [63456] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4536), 1, + anon_sym_COLON, + ACTIONS(4538), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4622), 1, - anon_sym_for, - STATE(1908), 1, - sym_type_arguments, - STATE(1927), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2018), 2, sym_line_comment, - ACTIONS(3256), 4, + sym_block_comment, + ACTIONS(4534), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74313] = 9, - ACTIONS(4435), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [63484] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4624), 1, + ACTIONS(4540), 1, anon_sym_for, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2019), 2, sym_line_comment, - ACTIONS(3256), 4, + sym_block_comment, + ACTIONS(3156), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74345] = 2, - ACTIONS(3), 2, - sym_block_comment, + [63522] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2020), 2, sym_line_comment, - ACTIONS(888), 11, + sym_block_comment, + ACTIONS(892), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161275,15 +165047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74363] = 4, - ACTIONS(4628), 1, - anon_sym_COLON, - ACTIONS(4630), 1, + [63546] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4536), 1, + anon_sym_COLON, + STATE(2021), 2, sym_line_comment, - ACTIONS(4626), 9, + sym_block_comment, + ACTIONS(4534), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161293,40 +165069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74385] = 9, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4632), 1, - anon_sym_for, - STATE(1908), 1, - sym_type_arguments, - STATE(1927), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3256), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74417] = 5, - ACTIONS(1068), 1, + [63574] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1070), 1, aux_sym_string_literal_token1, - ACTIONS(4636), 1, + ACTIONS(4542), 1, sym_crate, - STATE(2144), 1, + STATE(2204), 1, sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, + STATE(2022), 2, sym_line_comment, - ACTIONS(4634), 8, + sym_block_comment, + ACTIONS(4524), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -161335,133 +165092,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [74441] = 9, - ACTIONS(4435), 1, + [63604] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4638), 1, + ACTIONS(4544), 1, anon_sym_for, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2023), 2, sym_line_comment, - ACTIONS(3256), 4, + sym_block_comment, + ACTIONS(3156), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74473] = 5, - ACTIONS(1068), 1, - aux_sym_string_literal_token1, - ACTIONS(4640), 1, - sym_crate, - STATE(2144), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4634), 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, - [74497] = 4, - ACTIONS(4644), 1, - anon_sym_COLON, - ACTIONS(4646), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4642), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [74519] = 4, - ACTIONS(3316), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3310), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(3314), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [74541] = 9, - ACTIONS(4435), 1, + [63642] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4648), 1, + ACTIONS(4546), 1, anon_sym_for, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2024), 2, sym_line_comment, - ACTIONS(3256), 4, + sym_block_comment, + ACTIONS(3156), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74573] = 7, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4650), 1, - sym_identifier, - STATE(190), 1, - sym_block, - STATE(3218), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [63680] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2025), 2, sym_line_comment, - ACTIONS(4652), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74601] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(884), 11, + ACTIONS(872), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161473,31 +165166,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74619] = 2, - ACTIONS(3), 2, - sym_block_comment, + [63704] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4538), 1, + anon_sym_COLON_COLON, + ACTIONS(4550), 1, + anon_sym_COLON, + STATE(2026), 2, sym_line_comment, - ACTIONS(874), 11, + sym_block_comment, + ACTIONS(4548), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74637] = 4, - ACTIONS(4620), 1, - anon_sym_COLON_COLON, - ACTIONS(4628), 1, + [63732] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4536), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4552), 1, + anon_sym_COLON_COLON, + STATE(2027), 2, sym_line_comment, - ACTIONS(4626), 9, + sym_block_comment, + ACTIONS(4534), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161507,15 +165210,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74659] = 4, - ACTIONS(4564), 1, + [63760] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4618), 1, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4554), 1, + anon_sym_for, + STATE(1929), 1, + sym_type_arguments, + STATE(1941), 1, + sym_parameters, + STATE(2028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3156), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [63798] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + ACTIONS(4558), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(2029), 2, sym_line_comment, - ACTIONS(4616), 9, + sym_block_comment, + ACTIONS(4556), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161525,100 +165259,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74681] = 5, - ACTIONS(1068), 1, - aux_sym_string_literal_token1, - ACTIONS(4654), 1, - sym_crate, - STATE(2144), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, + [63826] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2030), 2, sym_line_comment, - ACTIONS(4634), 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, - [74705] = 4, - ACTIONS(4646), 1, - anon_sym_COLON_COLON, - ACTIONS(4658), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4656), 9, + ACTIONS(868), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74727] = 9, - ACTIONS(4435), 1, + [63850] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4560), 1, + anon_sym_move, + STATE(181), 1, + sym_block, + STATE(3381), 1, + sym_label, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63884] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4660), 1, + ACTIONS(4562), 1, anon_sym_for, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2032), 2, sym_line_comment, - ACTIONS(3256), 4, + sym_block_comment, + ACTIONS(3156), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74759] = 9, - ACTIONS(4435), 1, + [63922] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4662), 1, + ACTIONS(4564), 1, anon_sym_for, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2033), 2, sym_line_comment, - ACTIONS(3256), 4, + sym_block_comment, + ACTIONS(3156), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74791] = 5, - ACTIONS(1068), 1, + [63960] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1070), 1, aux_sym_string_literal_token1, - ACTIONS(4664), 1, + ACTIONS(4566), 1, sym_crate, - STATE(2144), 1, + STATE(2204), 1, sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, + STATE(2034), 2, sym_line_comment, - ACTIONS(4634), 8, + sym_block_comment, + ACTIONS(4524), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -161627,16 +165381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [74815] = 4, - ACTIONS(3288), 1, + [63990] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3282), 2, + ACTIONS(3186), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3286), 8, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3190), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_COLON_COLON, @@ -161645,70 +165403,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [74837] = 9, - ACTIONS(4441), 1, + [64018] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 1, + anon_sym_DOT_DOT, + ACTIONS(3218), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4463), 1, - anon_sym_COLON, - ACTIONS(4465), 1, + STATE(2036), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3222), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_COLON_COLON, - ACTIONS(4467), 1, anon_sym_BANG, - ACTIONS(4471), 1, - anon_sym_DOT_DOT, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4469), 2, + anon_sym_PIPE, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [74869] = 4, - ACTIONS(4618), 1, - anon_sym_COLON, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + [64046] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2037), 2, sym_line_comment, - ACTIONS(4616), 9, + sym_block_comment, + ACTIONS(878), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74891] = 4, - ACTIONS(3308), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + [64070] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2038), 2, sym_line_comment, - ACTIONS(3302), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(3306), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [74913] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(868), 11, + ACTIONS(888), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161720,107 +165465,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74931] = 9, - ACTIONS(4435), 1, + [64094] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(4375), 1, + anon_sym_BANG, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4369), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [64132] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4345), 1, anon_sym_COLON_COLON, - ACTIONS(4439), 1, + ACTIONS(4347), 1, anon_sym_BANG, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4666), 1, + ACTIONS(4568), 1, anon_sym_for, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - STATE(1927), 1, + STATE(1941), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2040), 2, sym_line_comment, - ACTIONS(3256), 4, + sym_block_comment, + ACTIONS(3156), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [74963] = 2, - ACTIONS(3), 2, + [64170] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1070), 1, + aux_sym_string_literal_token1, + ACTIONS(4570), 1, + sym_crate, + STATE(2204), 1, + sym_string_literal, + STATE(2041), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4524), 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, + [64200] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4550), 1, + anon_sym_COLON, + ACTIONS(4552), 1, + anon_sym_COLON_COLON, + STATE(2042), 2, sym_line_comment, - ACTIONS(880), 11, + sym_block_comment, + ACTIONS(4548), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [64228] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4550), 1, anon_sym_COLON, + STATE(2043), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4548), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [74981] = 7, - ACTIONS(15), 1, + [64256] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4345), 1, + anon_sym_COLON_COLON, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4572), 1, + anon_sym_for, + STATE(1929), 1, + sym_type_arguments, + STATE(1941), 1, + sym_parameters, + STATE(2044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3156), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3398), 1, + anon_sym_PLUS, + anon_sym_where, + [64294] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4668), 1, - anon_sym_move, - STATE(181), 1, + ACTIONS(4574), 1, + sym_identifier, + STATE(185), 1, sym_block, - STATE(3218), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2045), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(4576), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [75009] = 4, - ACTIONS(4564), 1, - anon_sym_COLON_COLON, - ACTIONS(4628), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + [64328] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2046), 2, sym_line_comment, - ACTIONS(4626), 9, + sym_block_comment, + ACTIONS(4578), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75031] = 4, - ACTIONS(3328), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3322), 2, - anon_sym_LBRACE, + [64351] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(3326), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3332), 1, anon_sym_COLON_COLON, + ACTIONS(4580), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [75053] = 2, - ACTIONS(3), 2, + STATE(1080), 1, + sym_type_arguments, + STATE(2047), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64382] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4582), 1, + sym_identifier, + ACTIONS(4584), 1, + anon_sym_RBRACE, + ACTIONS(4586), 1, + anon_sym_COMMA, + ACTIONS(4588), 1, + sym_crate, + STATE(1490), 1, + sym_attribute_item, + STATE(2175), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2737), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2048), 2, + sym_line_comment, + sym_block_comment, + [64423] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, + sym_identifier, + ACTIONS(4592), 1, + anon_sym_RBRACE, + ACTIONS(4594), 1, + anon_sym_COMMA, + STATE(1490), 1, + sym_attribute_item, + STATE(2169), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2763), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2049), 2, + sym_line_comment, sym_block_comment, + [64464] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2050), 2, sym_line_comment, - ACTIONS(4670), 10, + sym_block_comment, + ACTIONS(4596), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161831,11 +165755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75070] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64487] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2051), 2, sym_line_comment, - ACTIONS(4672), 10, + sym_block_comment, + ACTIONS(4598), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161846,32 +165774,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75087] = 8, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4674), 1, - sym_identifier, - ACTIONS(4676), 1, + [64510] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2052), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4600), 10, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(4678), 1, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4680), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [64533] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2053), 2, sym_line_comment, - STATE(2444), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2720), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [75116] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4682), 10, + ACTIONS(4602), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161882,11 +165812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75133] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64556] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2054), 2, sym_line_comment, - ACTIONS(4684), 10, + sym_block_comment, + ACTIONS(4604), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161897,11 +165831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75150] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64579] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2055), 2, sym_line_comment, - ACTIONS(4686), 10, + sym_block_comment, + ACTIONS(4606), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161912,11 +165850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75167] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64602] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2056), 2, sym_line_comment, - ACTIONS(4688), 10, + sym_block_comment, + ACTIONS(4608), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161927,11 +165869,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75184] = 2, - ACTIONS(3), 2, + [64625] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4610), 1, + sym_identifier, + ACTIONS(4612), 1, + anon_sym_RBRACE, + ACTIONS(4614), 1, + anon_sym_COMMA, + ACTIONS(4616), 1, + anon_sym_DOT_DOT, + STATE(1490), 1, + sym_attribute_item, + STATE(2471), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2057), 2, + sym_line_comment, + sym_block_comment, + STATE(2691), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64662] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4375), 1, + anon_sym_BANG, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4446), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2058), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4369), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [64697] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4618), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(4624), 1, + anon_sym_DOT_DOT, + STATE(1933), 1, + sym_type_arguments, + ACTIONS(4622), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2059), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4369), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [64732] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2060), 2, sym_line_comment, - ACTIONS(4690), 10, + sym_block_comment, + ACTIONS(914), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161942,11 +165964,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75201] = 2, - ACTIONS(3), 2, + [64755] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, + anon_sym_COLON, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4626), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2061), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4351), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [64790] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2062), 2, sym_line_comment, - ACTIONS(4692), 10, + sym_block_comment, + ACTIONS(4628), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161957,34 +166008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75218] = 10, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_COMMA, - ACTIONS(4700), 1, - sym_crate, - STATE(2658), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, + [64813] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2063), 2, sym_line_comment, - STATE(2139), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [75251] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4702), 10, + ACTIONS(4630), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -161995,11 +166027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75268] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64836] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2064), 2, sym_line_comment, - ACTIONS(4704), 10, + sym_block_comment, + ACTIONS(4632), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162010,11 +166046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75285] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64859] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2065), 2, sym_line_comment, - ACTIONS(4626), 10, + sym_block_comment, + ACTIONS(4548), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162025,30 +166065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75302] = 6, - ACTIONS(3801), 1, - anon_sym_LT2, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - ACTIONS(4706), 1, - anon_sym_BANG, - STATE(1526), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + [64882] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2066), 2, sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75327] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4708), 10, + ACTIONS(4634), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162059,11 +166084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75344] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64905] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2067), 2, sym_line_comment, - ACTIONS(4710), 10, + sym_block_comment, + ACTIONS(4636), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162074,11 +166103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75361] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64928] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2068), 2, sym_line_comment, - ACTIONS(4712), 10, + sym_block_comment, + ACTIONS(4638), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162089,11 +166122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75378] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64951] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2069), 2, sym_line_comment, - ACTIONS(4714), 10, + sym_block_comment, + ACTIONS(4640), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162104,11 +166141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75395] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64974] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2070), 2, sym_line_comment, - ACTIONS(4716), 10, + sym_block_comment, + ACTIONS(4642), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162119,11 +166160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75412] = 2, - ACTIONS(3), 2, - sym_block_comment, + [64997] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2071), 2, sym_line_comment, - ACTIONS(4718), 10, + sym_block_comment, + ACTIONS(4644), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162134,11 +166179,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75429] = 2, - ACTIONS(3), 2, + [65020] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_COLON_COLON, + ACTIONS(4646), 1, + anon_sym_BANG, + STATE(1559), 1, + sym_type_arguments, + STATE(2072), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65051] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2073), 2, sym_line_comment, - ACTIONS(4720), 10, + sym_block_comment, + ACTIONS(4648), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162149,11 +166221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75446] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65074] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2074), 2, sym_line_comment, - ACTIONS(4616), 10, + sym_block_comment, + ACTIONS(4650), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162164,11 +166240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75463] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65097] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2075), 2, sym_line_comment, - ACTIONS(4722), 10, + sym_block_comment, + ACTIONS(4652), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162179,66 +166259,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75480] = 8, - ACTIONS(3022), 1, + [65120] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4674), 1, + ACTIONS(4582), 1, sym_identifier, - ACTIONS(4680), 1, - anon_sym_DOT_DOT, - ACTIONS(4724), 1, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4654), 1, anon_sym_RBRACE, - ACTIONS(4726), 1, + ACTIONS(4656), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2444), 2, + STATE(1490), 1, sym_attribute_item, + STATE(2203), 1, aux_sym_enum_variant_list_repeat1, - STATE(2741), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [75509] = 6, - ACTIONS(3266), 1, + STATE(2782), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2076), 2, + sym_line_comment, + sym_block_comment, + [65161] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(4728), 1, + ACTIONS(4375), 1, anon_sym_BANG, - STATE(1040), 1, + ACTIONS(4435), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2077), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(3254), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [75534] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4730), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [75551] = 2, - ACTIONS(3), 2, + [65192] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4345), 1, + anon_sym_COLON_COLON, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4658), 1, + anon_sym_EQ, + STATE(1941), 1, + sym_parameters, + STATE(2391), 1, + sym_type_arguments, + STATE(2078), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3156), 3, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + [65229] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2079), 2, sym_line_comment, - ACTIONS(4732), 10, + sym_block_comment, + ACTIONS(4660), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162249,11 +166355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75568] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65252] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2080), 2, sym_line_comment, - ACTIONS(938), 10, + sym_block_comment, + ACTIONS(4662), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162264,11 +166374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75585] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65275] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2081), 2, sym_line_comment, - ACTIONS(4734), 10, + sym_block_comment, + ACTIONS(4534), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162279,155 +166393,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75602] = 10, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - ACTIONS(4738), 1, - anon_sym_RBRACE, - ACTIONS(4740), 1, - anon_sym_COMMA, - STATE(2696), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2177), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [75635] = 10, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, + [65298] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4694), 1, + ACTIONS(4610), 1, sym_identifier, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4742), 1, + ACTIONS(4616), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 1, anon_sym_RBRACE, - ACTIONS(4744), 1, + ACTIONS(4666), 1, anon_sym_COMMA, - STATE(2722), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2175), 2, + STATE(1490), 1, sym_attribute_item, + STATE(2471), 1, aux_sym_enum_variant_list_repeat1, - [75668] = 7, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4746), 1, - anon_sym_LBRACE, - STATE(1906), 1, - sym_type_arguments, - STATE(1926), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3298), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [75695] = 10, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(4750), 1, - anon_sym_COMMA, - STATE(2861), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(2082), 2, sym_line_comment, - STATE(2179), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [75728] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4445), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [75745] = 6, - ACTIONS(1708), 1, + STATE(2925), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65335] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1600), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(2049), 1, + STATE(2060), 1, sym_block, - STATE(3440), 1, + STATE(3481), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2083), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(3254), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [75770] = 8, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4752), 1, - anon_sym_COLON_COLON, - ACTIONS(4754), 1, - anon_sym_BANG, - ACTIONS(4758), 1, - anon_sym_DOT_DOT, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + [65366] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2084), 2, sym_line_comment, - ACTIONS(4756), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [75799] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4760), 10, + ACTIONS(4668), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162438,32 +166461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75816] = 8, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4467), 1, - anon_sym_BANG, - ACTIONS(4471), 1, - anon_sym_DOT_DOT, - ACTIONS(4525), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + [65389] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2085), 2, sym_line_comment, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [75845] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4762), 10, + ACTIONS(4670), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162474,11 +166480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75862] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65412] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2086), 2, sym_line_comment, - ACTIONS(4764), 10, + sym_block_comment, + ACTIONS(4351), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162489,11 +166499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75879] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65435] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2087), 2, sym_line_comment, - ACTIONS(4766), 10, + sym_block_comment, + ACTIONS(4672), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162504,11 +166518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75896] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65458] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2088), 2, sym_line_comment, - ACTIONS(4768), 10, + sym_block_comment, + ACTIONS(4674), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162519,11 +166537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75913] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65481] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2089), 2, sym_line_comment, - ACTIONS(4770), 10, + sym_block_comment, + ACTIONS(4676), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162534,73 +166556,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [75930] = 8, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4447), 1, + [65504] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4451), 1, - anon_sym_COLON, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(4772), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [75959] = 6, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4467), 1, - anon_sym_BANG, - ACTIONS(4546), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, + ACTIONS(4678), 1, + anon_sym_LBRACE, + STATE(1928), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75984] = 9, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4774), 1, - anon_sym_EQ, - STATE(1927), 1, + STATE(1955), 1, sym_parameters, - STATE(2398), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2090), 2, sym_line_comment, - ACTIONS(3256), 3, + sym_block_comment, + ACTIONS(3214), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_GT, - [76015] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65537] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2091), 2, sym_line_comment, - ACTIONS(4776), 10, + sym_block_comment, + ACTIONS(4680), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162611,11 +166599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [76032] = 2, - ACTIONS(3), 2, - sym_block_comment, + [65560] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2092), 2, sym_line_comment, - ACTIONS(4778), 10, + sym_block_comment, + ACTIONS(4682), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -162626,650 +166618,769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [76049] = 7, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4780), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - STATE(1926), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + [65583] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, + sym_identifier, + ACTIONS(4684), 1, + anon_sym_RBRACE, + ACTIONS(4686), 1, + anon_sym_COMMA, + STATE(1490), 1, + sym_attribute_item, + STATE(2163), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2688), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2093), 2, sym_line_comment, - ACTIONS(3298), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76075] = 3, - ACTIONS(3316), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3314), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [76093] = 10, - ACTIONS(4782), 1, + [65624] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4688), 1, anon_sym_SEMI, - ACTIONS(4784), 1, + ACTIONS(4690), 1, anon_sym_LPAREN, - ACTIONS(4786), 1, + ACTIONS(4692), 1, anon_sym_LBRACE, - ACTIONS(4788), 1, + ACTIONS(4694), 1, anon_sym_LT, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - STATE(551), 1, + STATE(526), 1, sym_field_declaration_list, - STATE(2221), 1, + STATE(2215), 1, sym_type_parameters, - STATE(2782), 1, + STATE(2863), 1, sym_ordered_field_declaration_list, - STATE(3171), 1, + STATE(3038), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [76125] = 9, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - ACTIONS(4792), 1, - anon_sym_RBRACE, - STATE(3102), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(2094), 2, sym_line_comment, - STATE(2164), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [76155] = 5, - ACTIONS(4794), 1, - anon_sym_SEMI, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(501), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76177] = 7, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, + [65662] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4798), 1, - anon_sym_for, - STATE(1906), 1, + ACTIONS(4369), 1, + anon_sym_PIPE, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(4375), 1, + anon_sym_BANG, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4474), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, sym_type_arguments, - STATE(1926), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2095), 2, sym_line_comment, - ACTIONS(3298), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76203] = 9, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - ACTIONS(4800), 1, - anon_sym_RBRACE, - STATE(3102), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - STATE(2164), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [76233] = 7, - ACTIONS(4435), 1, + [65698] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4802), 1, + ACTIONS(4698), 1, anon_sym_for, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2096), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3214), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76259] = 5, - ACTIONS(3801), 1, - anon_sym_LT2, - ACTIONS(4804), 1, + [65730] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4379), 1, + anon_sym_DOT_DOT, + ACTIONS(4446), 1, anon_sym_COLON_COLON, - STATE(1526), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76281] = 5, - ACTIONS(4806), 1, + ACTIONS(4700), 1, + anon_sym_RBRACK, + ACTIONS(3214), 2, anon_sym_SEMI, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1428), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_PLUS, + ACTIONS(4369), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2097), 2, sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [76303] = 7, - ACTIONS(4435), 1, + sym_block_comment, + [65762] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4810), 1, + ACTIONS(4703), 1, anon_sym_for, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2098), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3214), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76329] = 7, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4674), 1, - sym_identifier, - ACTIONS(4680), 1, - anon_sym_DOT_DOT, - ACTIONS(4812), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2444), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2938), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [76355] = 7, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, + [65794] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3214), 1, + anon_sym_PLUS, + ACTIONS(4369), 1, + anon_sym_PIPE, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(4379), 1, anon_sym_DOT_DOT, - ACTIONS(4814), 1, + ACTIONS(4431), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, + ACTIONS(4377), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 3, - anon_sym_RBRACK, + ACTIONS(4700), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - [76381] = 9, - ACTIONS(63), 1, + STATE(2099), 2, + sym_line_comment, + sym_block_comment, + [65828] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4694), 1, + ACTIONS(4582), 1, sym_identifier, - ACTIONS(4700), 1, + ACTIONS(4588), 1, sym_crate, - ACTIONS(4816), 1, + ACTIONS(4705), 1, anon_sym_RBRACE, - STATE(3143), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2166), 2, + STATE(1490), 1, sym_attribute_item, + STATE(2193), 1, aux_sym_enum_variant_list_repeat1, - [76411] = 9, - ACTIONS(63), 1, + STATE(3130), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2100), 2, + sym_line_comment, + sym_block_comment, + [65866] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4694), 1, + ACTIONS(4582), 1, sym_identifier, - ACTIONS(4700), 1, + ACTIONS(4588), 1, sym_crate, - ACTIONS(4818), 1, + ACTIONS(4707), 1, anon_sym_RBRACE, - STATE(3143), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2166), 2, + STATE(1490), 1, sym_attribute_item, + STATE(2193), 1, aux_sym_enum_variant_list_repeat1, - [76441] = 10, - ACTIONS(4784), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4820), 1, - anon_sym_SEMI, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1303), 1, - sym_field_declaration_list, - STATE(2228), 1, - sym_type_parameters, - STATE(2791), 1, - sym_ordered_field_declaration_list, - STATE(3160), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(3130), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2101), 2, + sym_line_comment, sym_block_comment, + [65904] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4709), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + STATE(2102), 2, sym_line_comment, - [76473] = 9, - ACTIONS(63), 1, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65932] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4700), 1, + ACTIONS(4588), 1, sym_crate, - ACTIONS(4824), 1, + ACTIONS(4590), 1, + sym_identifier, + ACTIONS(4711), 1, anon_sym_RBRACE, - STATE(3143), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2187), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3164), 1, sym_field_declaration, - STATE(3431), 1, + STATE(3249), 1, sym_visibility_modifier, - ACTIONS(3), 2, + STATE(2103), 2, + sym_line_comment, sym_block_comment, + [65970] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4715), 1, + anon_sym_PLUS, + STATE(2104), 3, sym_line_comment, - STATE(2166), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [76503] = 10, - ACTIONS(4784), 1, - anon_sym_LPAREN, - ACTIONS(4786), 1, + sym_block_comment, + aux_sym_trait_bounds_repeat1, + ACTIONS(4713), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, anon_sym_where, - ACTIONS(4826), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_field_declaration_list, - STATE(2194), 1, - sym_type_parameters, - STATE(2749), 1, - sym_ordered_field_declaration_list, - STATE(3041), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [76535] = 9, - ACTIONS(3064), 1, + [65994] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4830), 1, + ACTIONS(4720), 1, anon_sym_GT, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4834), 1, + ACTIONS(4724), 1, sym_metavariable, - STATE(2601), 1, + STATE(2529), 1, sym_lifetime, - STATE(2870), 1, + STATE(2902), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2105), 2, sym_line_comment, - STATE(3034), 2, + sym_block_comment, + STATE(3024), 2, sym_const_parameter, sym_optional_type_parameter, - [76565] = 7, - ACTIONS(4471), 1, + [66030] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4610), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_DOT_DOT, + ACTIONS(4726), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2471), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2106), 2, + sym_line_comment, + sym_block_comment, + STATE(2966), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66064] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4369), 1, + anon_sym_PIPE, + ACTIONS(4371), 1, + anon_sym_COLON, + ACTIONS(4379), 1, anon_sym_DOT_DOT, - ACTIONS(4525), 1, + ACTIONS(4474), 1, anon_sym_COLON_COLON, - ACTIONS(4836), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4377), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2107), 2, sym_line_comment, - ACTIONS(3298), 2, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(3214), 3, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(4461), 2, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [76591] = 9, - ACTIONS(63), 1, + [66096] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, + ACTIONS(4582), 1, sym_identifier, - ACTIONS(4839), 1, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4728), 1, anon_sym_RBRACE, - STATE(3102), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2193), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3130), 1, sym_enum_variant, - STATE(3322), 1, + STATE(3302), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(2108), 2, sym_line_comment, - STATE(2164), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [76621] = 7, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4674), 1, - sym_identifier, - ACTIONS(4680), 1, + sym_block_comment, + [66134] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, anon_sym_DOT_DOT, - ACTIONS(4841), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(2109), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3190), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [66158] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4730), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(1955), 1, + sym_parameters, + STATE(2110), 2, sym_line_comment, - STATE(2444), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2938), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [76647] = 5, - ACTIONS(4796), 1, + sym_block_comment, + ACTIONS(3214), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4843), 1, + anon_sym_PLUS, + anon_sym_where, + [66190] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4732), 1, anon_sym_SEMI, - STATE(708), 1, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(519), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(2111), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66218] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 1, + anon_sym_DOT_DOT, + STATE(2112), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3202), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [66242] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LT2, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + STATE(1559), 1, + sym_type_arguments, + STATE(2113), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66270] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4738), 1, + anon_sym_SEMI, + STATE(652), 1, + sym_declaration_list, + STATE(2114), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(3254), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [76669] = 9, - ACTIONS(3064), 1, + [66298] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4834), 1, + ACTIONS(4724), 1, sym_metavariable, - ACTIONS(4845), 1, + ACTIONS(4740), 1, anon_sym_GT, - STATE(2601), 1, + STATE(2484), 1, sym_lifetime, - STATE(2870), 1, + STATE(2902), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2115), 2, sym_line_comment, - STATE(3034), 2, + sym_block_comment, + STATE(3024), 2, sym_const_parameter, sym_optional_type_parameter, - [76699] = 9, - ACTIONS(3064), 1, + [66334] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4834), 1, + ACTIONS(4724), 1, sym_metavariable, - ACTIONS(4847), 1, + ACTIONS(4742), 1, anon_sym_GT, - STATE(2439), 1, + STATE(2484), 1, sym_lifetime, - STATE(2870), 1, + STATE(2902), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2116), 2, sym_line_comment, - STATE(3034), 2, + sym_block_comment, + STATE(3024), 2, sym_const_parameter, sym_optional_type_parameter, - [76729] = 7, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4849), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - STATE(1926), 1, - sym_parameters, - ACTIONS(3), 2, + [66370] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4610), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_DOT_DOT, + ACTIONS(4744), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2471), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2117), 2, + sym_line_comment, + sym_block_comment, + STATE(2966), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66404] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4582), 1, + sym_identifier, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4746), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2193), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3130), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2118), 2, + sym_line_comment, + sym_block_comment, + [66442] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 1, + anon_sym_DOT_DOT, + STATE(2119), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3210), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [66466] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4610), 1, + sym_identifier, + ACTIONS(4616), 1, + anon_sym_DOT_DOT, + ACTIONS(4748), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2471), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2120), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + STATE(2966), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66500] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4750), 1, anon_sym_SEMI, + ACTIONS(4752), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76755] = 5, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(4851), 1, - anon_sym_SEMI, - STATE(1280), 1, + STATE(1438), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2121), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(3254), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [76777] = 4, - ACTIONS(4855), 1, - anon_sym_PLUS, - STATE(2115), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4853), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [76797] = 7, - ACTIONS(3022), 1, + [66528] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4674), 1, + ACTIONS(4610), 1, sym_identifier, - ACTIONS(4680), 1, + ACTIONS(4616), 1, anon_sym_DOT_DOT, - ACTIONS(4857), 1, + ACTIONS(4754), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2444), 2, + STATE(1490), 1, sym_attribute_item, + STATE(2471), 1, aux_sym_enum_variant_list_repeat1, - STATE(2938), 3, + STATE(2122), 2, + sym_line_comment, + sym_block_comment, + STATE(2966), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [76823] = 9, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4461), 1, - anon_sym_PIPE, - ACTIONS(4463), 1, - anon_sym_COLON, - ACTIONS(4467), 1, - anon_sym_BANG, - ACTIONS(4471), 1, - anon_sym_DOT_DOT, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [76853] = 7, - ACTIONS(3022), 1, + [66562] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4674), 1, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, sym_identifier, - ACTIONS(4680), 1, - anon_sym_DOT_DOT, - ACTIONS(4859), 1, + ACTIONS(4756), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2444), 2, + STATE(1490), 1, sym_attribute_item, + STATE(2187), 1, aux_sym_enum_variant_list_repeat1, - STATE(2938), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [76879] = 9, - ACTIONS(3064), 1, - anon_sym_SQUOTE, - ACTIONS(4828), 1, - sym_identifier, - ACTIONS(4832), 1, - anon_sym_const, - ACTIONS(4834), 1, - sym_metavariable, - ACTIONS(4861), 1, - anon_sym_GT, - STATE(2601), 1, - sym_lifetime, - STATE(2870), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(3164), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2123), 2, sym_line_comment, - STATE(3034), 2, - sym_const_parameter, - sym_optional_type_parameter, - [76909] = 3, - ACTIONS(3308), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, + [66600] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4582), 1, + sym_identifier, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4758), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2193), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3130), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2124), 2, sym_line_comment, - ACTIONS(3306), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [76927] = 3, - ACTIONS(3328), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, + [66638] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 1, + anon_sym_DOT_DOT, + STATE(2125), 2, sym_line_comment, - ACTIONS(3326), 8, + sym_block_comment, + ACTIONS(3222), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_COLON_COLON, @@ -163278,406 +167389,551 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [76945] = 9, - ACTIONS(3064), 1, + [66662] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4760), 1, + anon_sym_SEMI, + ACTIONS(4762), 1, + anon_sym_LBRACE, + STATE(1305), 1, + sym_field_declaration_list, + STATE(2222), 1, + sym_type_parameters, + STATE(2685), 1, + sym_ordered_field_declaration_list, + STATE(3208), 1, + sym_where_clause, + STATE(2126), 2, + sym_line_comment, + sym_block_comment, + [66700] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4834), 1, + ACTIONS(4724), 1, sym_metavariable, - ACTIONS(4863), 1, + ACTIONS(4764), 1, anon_sym_GT, - STATE(2601), 1, + STATE(2484), 1, sym_lifetime, - STATE(2870), 1, + STATE(2902), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2127), 2, sym_line_comment, - STATE(3034), 2, + sym_block_comment, + STATE(3024), 2, sym_const_parameter, sym_optional_type_parameter, - [76975] = 9, - ACTIONS(3064), 1, + [66736] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4834), 1, + ACTIONS(4724), 1, sym_metavariable, - ACTIONS(4865), 1, + ACTIONS(4766), 1, anon_sym_GT, - STATE(2601), 1, + STATE(2484), 1, sym_lifetime, - STATE(2870), 1, + STATE(2902), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2128), 2, sym_line_comment, - STATE(3034), 2, + sym_block_comment, + STATE(3024), 2, sym_const_parameter, sym_optional_type_parameter, - [77005] = 8, - ACTIONS(3298), 1, - anon_sym_PLUS, - ACTIONS(4461), 1, - anon_sym_PIPE, - ACTIONS(4463), 1, - anon_sym_COLON, - ACTIONS(4465), 1, - anon_sym_COLON_COLON, - ACTIONS(4471), 1, + [66772] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4500), 1, + anon_sym_LPAREN, + ACTIONS(4506), 1, + anon_sym_BANG, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4469), 2, + ACTIONS(4768), 1, + anon_sym_COLON_COLON, + ACTIONS(4510), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4836), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [77033] = 9, - ACTIONS(3064), 1, - anon_sym_SQUOTE, - ACTIONS(4828), 1, - sym_identifier, - ACTIONS(4832), 1, - anon_sym_const, - ACTIONS(4834), 1, - sym_metavariable, - ACTIONS(4867), 1, - anon_sym_GT, - STATE(2601), 1, - sym_lifetime, - STATE(2870), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(3034), 2, - sym_const_parameter, - sym_optional_type_parameter, - [77063] = 5, - ACTIONS(3266), 1, - anon_sym_LT2, - ACTIONS(4869), 1, - anon_sym_COLON_COLON, - STATE(1040), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2129), 2, sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [77085] = 9, - ACTIONS(3064), 1, - anon_sym_SQUOTE, - ACTIONS(4828), 1, - sym_identifier, - ACTIONS(4832), 1, - anon_sym_const, - ACTIONS(4834), 1, - sym_metavariable, - ACTIONS(4871), 1, - anon_sym_GT, - STATE(2601), 1, - sym_lifetime, - STATE(2870), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - STATE(3034), 2, - sym_const_parameter, - sym_optional_type_parameter, - [77115] = 9, - ACTIONS(63), 1, + ACTIONS(4351), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [66804] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4700), 1, + ACTIONS(4588), 1, sym_crate, - ACTIONS(4873), 1, + ACTIONS(4590), 1, + sym_identifier, + ACTIONS(4770), 1, anon_sym_RBRACE, - STATE(3143), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2187), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3164), 1, sym_field_declaration, - STATE(3431), 1, + STATE(3249), 1, sym_visibility_modifier, - ACTIONS(3), 2, + STATE(2130), 2, + sym_line_comment, sym_block_comment, + [66842] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4774), 1, + anon_sym_PLUS, + STATE(2104), 1, + aux_sym_trait_bounds_repeat1, + STATE(2131), 2, sym_line_comment, - STATE(2166), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [77145] = 9, - ACTIONS(63), 1, + sym_block_comment, + ACTIONS(4772), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [66868] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4700), 1, + ACTIONS(4588), 1, sym_crate, - ACTIONS(4875), 1, + ACTIONS(4590), 1, + sym_identifier, + ACTIONS(4776), 1, anon_sym_RBRACE, - STATE(3143), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2187), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3164), 1, sym_field_declaration, - STATE(3431), 1, + STATE(3249), 1, sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(2132), 2, sym_line_comment, - STATE(2166), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [77175] = 9, - ACTIONS(63), 1, + sym_block_comment, + [66906] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, + ACTIONS(4582), 1, sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4778), 1, anon_sym_RBRACE, - STATE(3102), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2193), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3130), 1, sym_enum_variant, - STATE(3322), 1, + STATE(3302), 1, sym_visibility_modifier, - ACTIONS(3), 2, + STATE(2133), 2, + sym_line_comment, sym_block_comment, + [66944] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4780), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(1955), 1, + sym_parameters, + STATE(2134), 2, sym_line_comment, - STATE(2164), 2, + sym_block_comment, + ACTIONS(3214), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66976] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, + sym_identifier, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(1490), 1, sym_attribute_item, + STATE(2187), 1, aux_sym_enum_variant_list_repeat1, - [77205] = 9, - ACTIONS(3064), 1, + STATE(3164), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2135), 2, + sym_line_comment, + sym_block_comment, + [67014] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4834), 1, + ACTIONS(4724), 1, sym_metavariable, - ACTIONS(4879), 1, + ACTIONS(4784), 1, anon_sym_GT, - STATE(2601), 1, + STATE(2484), 1, sym_lifetime, - STATE(2870), 1, + STATE(2902), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, + STATE(2136), 2, + sym_line_comment, sym_block_comment, + STATE(3024), 2, + sym_const_parameter, + sym_optional_type_parameter, + [67050] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4786), 1, + anon_sym_SEMI, + STATE(1289), 1, + sym_declaration_list, + STATE(2137), 2, sym_line_comment, - STATE(3034), 2, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67078] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, + anon_sym_SQUOTE, + ACTIONS(4718), 1, + sym_identifier, + ACTIONS(4722), 1, + anon_sym_const, + ACTIONS(4724), 1, + sym_metavariable, + ACTIONS(4788), 1, + anon_sym_GT, + STATE(2484), 1, + sym_lifetime, + STATE(2902), 1, + sym_constrained_type_parameter, + STATE(2138), 2, + sym_line_comment, + sym_block_comment, + STATE(3024), 2, sym_const_parameter, sym_optional_type_parameter, - [77235] = 7, - ACTIONS(4435), 1, + [67114] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4790), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2139), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4351), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [67146] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4881), 1, + ACTIONS(4792), 1, anon_sym_for, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2140), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3214), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [77261] = 4, - ACTIONS(4885), 1, - anon_sym_PLUS, - STATE(2115), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, + [67178] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_LT2, + ACTIONS(4794), 1, + anon_sym_COLON_COLON, + STATE(1080), 1, + sym_type_arguments, + STATE(2141), 2, sym_line_comment, - ACTIONS(4883), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [77281] = 3, - ACTIONS(3288), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3286), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [77299] = 9, - ACTIONS(63), 1, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67206] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4700), 1, + ACTIONS(4588), 1, sym_crate, - ACTIONS(4736), 1, + ACTIONS(4590), 1, sym_identifier, - ACTIONS(4888), 1, + ACTIONS(4796), 1, anon_sym_RBRACE, - STATE(3102), 1, - sym_enum_variant, - STATE(3322), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2187), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3164), 1, + sym_field_declaration, + STATE(3249), 1, sym_visibility_modifier, - ACTIONS(3), 2, + STATE(2142), 2, + sym_line_comment, + sym_block_comment, + [67244] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, + anon_sym_SQUOTE, + ACTIONS(4718), 1, + sym_identifier, + ACTIONS(4722), 1, + anon_sym_const, + ACTIONS(4724), 1, + sym_metavariable, + ACTIONS(4798), 1, + anon_sym_GT, + STATE(2484), 1, + sym_lifetime, + STATE(2902), 1, + sym_constrained_type_parameter, + STATE(2143), 2, + sym_line_comment, sym_block_comment, + STATE(3024), 2, + sym_const_parameter, + sym_optional_type_parameter, + [67280] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, + anon_sym_SQUOTE, + ACTIONS(4718), 1, + sym_identifier, + ACTIONS(4722), 1, + anon_sym_const, + ACTIONS(4724), 1, + sym_metavariable, + ACTIONS(4800), 1, + anon_sym_GT, + STATE(2484), 1, + sym_lifetime, + STATE(2902), 1, + sym_constrained_type_parameter, + STATE(2144), 2, sym_line_comment, - STATE(2164), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [77329] = 10, - ACTIONS(4784), 1, + sym_block_comment, + STATE(3024), 2, + sym_const_parameter, + sym_optional_type_parameter, + [67316] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4694), 1, anon_sym_LT, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4822), 1, - anon_sym_LBRACE, - ACTIONS(4890), 1, + ACTIONS(4802), 1, anon_sym_SEMI, - STATE(1173), 1, + STATE(517), 1, sym_field_declaration_list, - STATE(2193), 1, + STATE(2216), 1, sym_type_parameters, - STATE(2742), 1, + STATE(2777), 1, sym_ordered_field_declaration_list, - STATE(3122), 1, + STATE(3142), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2145), 2, sym_line_comment, - [77361] = 7, - ACTIONS(4435), 1, + sym_block_comment, + [67354] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4892), 1, + ACTIONS(4804), 1, anon_sym_for, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2146), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3214), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [77387] = 7, - ACTIONS(4600), 1, - anon_sym_LPAREN, - ACTIONS(4606), 1, - anon_sym_BANG, - ACTIONS(4612), 1, - anon_sym_DOT_DOT, - ACTIONS(4894), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4610), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77413] = 7, - ACTIONS(4461), 1, - anon_sym_PIPE, - ACTIONS(4463), 1, - anon_sym_COLON, - ACTIONS(4471), 1, - anon_sym_DOT_DOT, - ACTIONS(4566), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4469), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3298), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77439] = 7, - ACTIONS(4435), 1, + [67386] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4896), 1, + ACTIONS(4806), 1, anon_sym_for, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - STATE(1926), 1, + STATE(1955), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2147), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3214), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [77465] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4898), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [77487] = 4, - ACTIONS(4902), 1, + [67418] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4810), 1, anon_sym_PLUS, - STATE(2097), 1, + STATE(2131), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2148), 2, sym_line_comment, - ACTIONS(4900), 7, + sym_block_comment, + ACTIONS(4808), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -163685,15 +167941,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [77507] = 4, - ACTIONS(4904), 1, + [67444] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4812), 1, anon_sym_PLUS, - STATE(2097), 1, + STATE(2131), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2149), 2, sym_line_comment, - ACTIONS(4900), 7, + sym_block_comment, + ACTIONS(4808), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -163701,15 +167961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [77527] = 4, - ACTIONS(4855), 1, + [67470] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4774), 1, anon_sym_PLUS, - STATE(2097), 1, + STATE(2131), 1, aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2150), 2, sym_line_comment, - ACTIONS(4900), 7, + sym_block_comment, + ACTIONS(4808), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -163717,366 +167981,742 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [77547] = 9, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, + [67496] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4814), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(1955), 1, + sym_parameters, + STATE(2151), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3214), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67528] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4906), 1, - anon_sym_RBRACE, - STATE(3143), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4762), 1, + anon_sym_LBRACE, + ACTIONS(4816), 1, + anon_sym_SEMI, + STATE(1185), 1, + sym_field_declaration_list, + STATE(2251), 1, + sym_type_parameters, + STATE(2783), 1, + sym_ordered_field_declaration_list, + STATE(3103), 1, + sym_where_clause, + STATE(2152), 2, + sym_line_comment, sym_block_comment, + [67566] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4821), 1, + anon_sym_fn, + ACTIONS(4823), 1, + anon_sym_extern, + STATE(2346), 1, + sym_extern_modifier, + STATE(2153), 3, sym_line_comment, - STATE(2166), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [77577] = 9, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - ACTIONS(4908), 1, - anon_sym_RBRACE, - STATE(3102), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, sym_block_comment, + aux_sym_function_modifiers_repeat1, + ACTIONS(4818), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [67593] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(4828), 1, + anon_sym_LT, + STATE(1142), 1, + sym_declaration_list, + STATE(2337), 1, + sym_type_parameters, + STATE(2502), 1, + sym_trait_bounds, + STATE(3045), 1, + sym_where_clause, + STATE(2154), 2, sym_line_comment, - STATE(2164), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [77607] = 9, - ACTIONS(3398), 1, + sym_block_comment, + [67628] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 1, + anon_sym_BANG, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67653] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4910), 1, + ACTIONS(4830), 1, anon_sym_SEMI, - ACTIONS(4912), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4914), 1, - anon_sym_DASH_GT, - STATE(666), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + STATE(571), 1, sym_block, - STATE(2336), 1, + STATE(2382), 1, sym_where_clause, - STATE(3444), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2156), 2, sym_line_comment, - [77636] = 8, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4918), 1, - anon_sym_RBRACE, - ACTIONS(4920), 1, - anon_sym_COMMA, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(3), 2, sym_block_comment, + [67688] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4419), 1, + anon_sym_trait, + ACTIONS(4836), 1, + anon_sym_impl, + STATE(2157), 2, sym_line_comment, - STATE(2688), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [77663] = 9, - ACTIONS(3398), 1, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67713] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4926), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4838), 1, anon_sym_SEMI, - ACTIONS(4928), 1, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - STATE(1315), 1, + STATE(1340), 1, sym_block, - STATE(2352), 1, + STATE(2405), 1, sym_where_clause, - STATE(3447), 1, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2158), 2, sym_line_comment, - [77692] = 9, - ACTIONS(3398), 1, + sym_block_comment, + [67748] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4932), 1, + ACTIONS(4842), 1, anon_sym_SEMI, - ACTIONS(4934), 1, + ACTIONS(4844), 1, anon_sym_DASH_GT, - STATE(1333), 1, + STATE(1351), 1, sym_block, STATE(2353), 1, sym_where_clause, - STATE(3447), 1, + STATE(3488), 1, + sym_label, + STATE(2159), 2, + sym_line_comment, + sym_block_comment, + [67783] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4846), 1, + anon_sym_SEMI, + STATE(705), 1, + sym_block, + STATE(2440), 1, + sym_where_clause, + STATE(3485), 1, + sym_label, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + [67818] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4848), 1, + anon_sym_SEMI, + STATE(661), 1, + sym_block, + STATE(2438), 1, + sym_where_clause, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, + STATE(2161), 2, + sym_line_comment, sym_block_comment, + [67853] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(4828), 1, + anon_sym_LT, + STATE(1195), 1, + sym_declaration_list, + STATE(2282), 1, + sym_type_parameters, + STATE(2582), 1, + sym_trait_bounds, + STATE(3109), 1, + sym_where_clause, + STATE(2162), 2, sym_line_comment, - [77721] = 6, - ACTIONS(3022), 1, + sym_block_comment, + [67888] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4674), 1, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, sym_identifier, - ACTIONS(4680), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, + STATE(1449), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2939), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2163), 2, + sym_line_comment, sym_block_comment, + [67923] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(4850), 1, + anon_sym_SEMI, + STATE(1163), 1, + sym_block, + STATE(2436), 1, + sym_where_clause, + STATE(3488), 1, + sym_label, + STATE(2164), 2, sym_line_comment, - STATE(2444), 2, + sym_block_comment, + [67958] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, + sym_identifier, + STATE(1490), 1, sym_attribute_item, + STATE(2187), 1, aux_sym_enum_variant_list_repeat1, - STATE(2938), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [77744] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(3164), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2165), 2, sym_line_comment, - ACTIONS(4936), 8, + sym_block_comment, + [67993] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(4852), 1, anon_sym_SEMI, + ACTIONS(4854), 1, + anon_sym_DASH_GT, + STATE(1239), 1, + sym_block, + STATE(2441), 1, + sym_where_clause, + STATE(3488), 1, + sym_label, + STATE(2166), 2, + sym_line_comment, + sym_block_comment, + [68028] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4582), 1, + sym_identifier, + ACTIONS(4588), 1, + sym_crate, + STATE(1490), 1, + sym_attribute_item, + STATE(2193), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3130), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2167), 2, + sym_line_comment, + sym_block_comment, + [68063] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4856), 1, + anon_sym_fn, + ACTIONS(4858), 1, + anon_sym_extern, + STATE(2153), 1, + aux_sym_function_modifiers_repeat1, + STATE(2346), 1, + sym_extern_modifier, + STATE(2168), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4381), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [68092] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, + sym_identifier, + STATE(1449), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2849), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + [68127] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(4828), 1, + anon_sym_LT, + STATE(594), 1, + sym_declaration_list, + STATE(2267), 1, + sym_type_parameters, + STATE(2619), 1, + sym_trait_bounds, + STATE(3162), 1, + sym_where_clause, + STATE(2170), 2, + sym_line_comment, + sym_block_comment, + [68162] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, + ACTIONS(4696), 1, anon_sym_where, - [77759] = 9, - ACTIONS(3398), 1, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(4860), 1, + anon_sym_SEMI, + ACTIONS(4862), 1, + anon_sym_DASH_GT, + STATE(1225), 1, + sym_block, + STATE(2368), 1, + sym_where_clause, + STATE(3488), 1, + sym_label, + STATE(2171), 2, + sym_line_comment, + sym_block_comment, + [68197] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(4938), 1, + ACTIONS(4864), 1, anon_sym_SEMI, - STATE(1150), 1, + ACTIONS(4866), 1, + anon_sym_DASH_GT, + STATE(1257), 1, sym_block, - STATE(2395), 1, + STATE(2369), 1, sym_where_clause, - STATE(3447), 1, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, + STATE(2172), 2, + sym_line_comment, sym_block_comment, + [68232] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4870), 1, + anon_sym_RBRACE, + ACTIONS(4872), 1, + anon_sym_COMMA, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + STATE(2173), 2, sym_line_comment, - [77788] = 8, - ACTIONS(1144), 1, + sym_block_comment, + STATE(2731), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68265] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, anon_sym_DOT_DOT, - ACTIONS(4916), 1, + ACTIONS(4868), 1, sym_identifier, - ACTIONS(4922), 1, + ACTIONS(4874), 1, anon_sym_ref, - ACTIONS(4924), 1, + ACTIONS(4876), 1, sym_mutable_specifier, - ACTIONS(4940), 1, + ACTIONS(4878), 1, anon_sym_RBRACE, - ACTIONS(4942), 1, + ACTIONS(4880), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, + STATE(2174), 2, sym_line_comment, - STATE(2817), 2, + sym_block_comment, + STATE(2729), 2, sym_field_pattern, sym_remaining_field_pattern, - [77815] = 9, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(4946), 1, - anon_sym_LT, - STATE(549), 1, - sym_declaration_list, - STATE(2272), 1, - sym_type_parameters, - STATE(2488), 1, - sym_trait_bounds, - STATE(3175), 1, - sym_where_clause, - ACTIONS(3), 2, + [68298] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4582), 1, + sym_identifier, + ACTIONS(4588), 1, + sym_crate, + STATE(1449), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2829), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2175), 2, + sym_line_comment, sym_block_comment, + [68333] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1070), 1, + aux_sym_string_literal_token1, + STATE(2204), 1, + sym_string_literal, + STATE(2176), 2, sym_line_comment, - [77844] = 9, - ACTIONS(3398), 1, + sym_block_comment, + ACTIONS(4524), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68358] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4912), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(4948), 1, + ACTIONS(4882), 1, anon_sym_SEMI, - STATE(687), 1, + STATE(541), 1, sym_block, - STATE(2413), 1, + STATE(2418), 1, sym_where_clause, - STATE(3444), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2177), 2, sym_line_comment, - [77873] = 8, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, + sym_block_comment, + [68393] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4694), 1, + ACTIONS(4610), 1, sym_identifier, - ACTIONS(4700), 1, - sym_crate, - STATE(2913), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1432), 2, + ACTIONS(4616), 1, + anon_sym_DOT_DOT, + STATE(1490), 1, sym_attribute_item, + STATE(2471), 1, aux_sym_enum_variant_list_repeat1, - [77900] = 8, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(4445), 1, - anon_sym_PIPE, - ACTIONS(4447), 1, - anon_sym_LPAREN, - ACTIONS(4451), 1, - anon_sym_COLON, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(4950), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + STATE(2178), 2, + sym_line_comment, sym_block_comment, + STATE(2966), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68424] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, + anon_sym_SQUOTE, + ACTIONS(4722), 1, + anon_sym_const, + ACTIONS(4884), 1, + sym_identifier, + ACTIONS(4886), 1, + sym_metavariable, + STATE(2356), 1, + sym_lifetime, + STATE(2654), 1, + sym_constrained_type_parameter, + STATE(2179), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [77927] = 8, - ACTIONS(1144), 1, + sym_block_comment, + STATE(2682), 2, + sym_const_parameter, + sym_optional_type_parameter, + [68457] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2180), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [68478] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, anon_sym_DOT_DOT, - ACTIONS(4916), 1, + ACTIONS(4868), 1, sym_identifier, - ACTIONS(4922), 1, + ACTIONS(4874), 1, anon_sym_ref, - ACTIONS(4924), 1, + ACTIONS(4876), 1, sym_mutable_specifier, - ACTIONS(4952), 1, + ACTIONS(4888), 1, anon_sym_RBRACE, - ACTIONS(4954), 1, + ACTIONS(4890), 1, anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, + STATE(2181), 2, sym_line_comment, - STATE(2743), 2, + sym_block_comment, + STATE(2815), 2, sym_field_pattern, sym_remaining_field_pattern, - [77954] = 8, - ACTIONS(4956), 1, - anon_sym_LPAREN, - ACTIONS(4961), 1, - anon_sym_LBRACE, - ACTIONS(4964), 1, - anon_sym_LBRACK, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3407), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4959), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [77981] = 5, - ACTIONS(4970), 1, - anon_sym_fn, - ACTIONS(4972), 1, - anon_sym_extern, - ACTIONS(3), 2, - sym_block_comment, + [68511] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2182), 2, sym_line_comment, - STATE(2143), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(4967), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [78002] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4975), 8, + ACTIONS(4713), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [78017] = 9, - ACTIONS(4790), 1, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(4946), 1, - anon_sym_LT, - STATE(726), 1, - sym_declaration_list, - STATE(2317), 1, - sym_type_parameters, - STATE(2571), 1, - sym_trait_bounds, - STATE(3035), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + [68532] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2183), 2, sym_line_comment, - [78046] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4883), 8, + ACTIONS(4713), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -164085,122 +168725,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [78061] = 9, - ACTIONS(3398), 1, + [68553] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, anon_sym_SQUOTE, - ACTIONS(4790), 1, anon_sym_where, - ACTIONS(4912), 1, + [68574] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4930), 1, anon_sym_PLUS, - ACTIONS(4977), 1, - anon_sym_SEMI, - STATE(720), 1, - sym_block, - STATE(2415), 1, - sym_where_clause, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [78090] = 9, - ACTIONS(4790), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, anon_sym_where, - ACTIONS(4808), 1, + [68595] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, + ACTIONS(4826), 1, anon_sym_COLON, - ACTIONS(4946), 1, + ACTIONS(4828), 1, anon_sym_LT, - STATE(1185), 1, + STATE(620), 1, sym_declaration_list, - STATE(2291), 1, + STATE(2269), 1, sym_type_parameters, - STATE(2635), 1, + STATE(2457), 1, sym_trait_bounds, - STATE(3084), 1, + STATE(2982), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2186), 2, sym_line_comment, - [78119] = 2, - ACTIONS(3), 2, sym_block_comment, + [68630] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4588), 1, + sym_crate, + ACTIONS(4590), 1, + sym_identifier, + STATE(1449), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(3041), 1, + sym_field_declaration, + STATE(3249), 1, + sym_visibility_modifier, + STATE(2187), 2, sym_line_comment, - ACTIONS(4883), 8, - anon_sym_SEMI, + sym_block_comment, + [68665] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4897), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, + ACTIONS(4900), 1, + anon_sym_LBRACK, + STATE(3390), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + ACTIONS(4895), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(2188), 3, + sym_line_comment, + sym_block_comment, + aux_sym_macro_definition_repeat1, + [68696] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + ACTIONS(4903), 1, + anon_sym_RBRACE, + ACTIONS(4905), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [78134] = 9, - ACTIONS(3398), 1, + STATE(2189), 2, + sym_line_comment, + sym_block_comment, + STATE(2789), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68729] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(4351), 1, + anon_sym_PIPE, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, + anon_sym_COLON, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4907), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2190), 2, + sym_line_comment, + sym_block_comment, + [68762] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4979), 1, + ACTIONS(4909), 1, anon_sym_SEMI, - ACTIONS(4981), 1, + ACTIONS(4911), 1, anon_sym_DASH_GT, - STATE(1243), 1, + STATE(528), 1, sym_block, - STATE(2335), 1, + STATE(2423), 1, sym_where_clause, - STATE(3447), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2191), 2, sym_line_comment, - [78163] = 8, - ACTIONS(3064), 1, + sym_block_comment, + [68797] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4983), 1, + ACTIONS(4913), 1, sym_identifier, - ACTIONS(4985), 1, + ACTIONS(4915), 1, sym_metavariable, - STATE(2416), 1, + STATE(2277), 1, sym_lifetime, - STATE(2447), 1, + STATE(2531), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2192), 2, sym_line_comment, - STATE(2915), 2, + sym_block_comment, + STATE(2818), 2, sym_const_parameter, sym_optional_type_parameter, - [78190] = 8, - ACTIONS(3064), 1, + [68830] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(4582), 1, + sym_identifier, + ACTIONS(4588), 1, + sym_crate, + STATE(1449), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(3118), 1, + sym_enum_variant, + STATE(3302), 1, + sym_visibility_modifier, + STATE(2193), 2, + sym_line_comment, + sym_block_comment, + [68865] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4832), 1, - anon_sym_const, - ACTIONS(4983), 1, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4985), 1, + ACTIONS(4722), 1, + anon_sym_const, + ACTIONS(4724), 1, sym_metavariable, - STATE(2307), 1, + STATE(2484), 1, sym_lifetime, - STATE(2447), 1, + STATE(2902), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2194), 2, sym_line_comment, - STATE(2915), 2, + sym_block_comment, + STATE(3024), 2, sym_const_parameter, sym_optional_type_parameter, - [78217] = 2, - ACTIONS(3), 2, + [68898] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4917), 1, + anon_sym_SEMI, + STATE(745), 1, + sym_block, + STATE(2394), 1, + sym_where_clause, + STATE(3485), 1, + sym_label, + STATE(2195), 2, + sym_line_comment, + sym_block_comment, + [68933] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4919), 1, + anon_sym_SEMI, + STATE(520), 1, + sym_block, + STATE(2404), 1, + sym_where_clause, + STATE(3485), 1, + sym_label, + STATE(2196), 2, + sym_line_comment, sym_block_comment, + [68968] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2197), 2, sym_line_comment, - ACTIONS(4883), 8, + sym_block_comment, + ACTIONS(4921), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -164209,31 +169034,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [78232] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, + [68989] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_SEMI, - ACTIONS(4989), 1, - anon_sym_DASH_GT, - STATE(1225), 1, - sym_block, - STATE(2347), 1, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(4828), 1, + anon_sym_LT, + STATE(523), 1, + sym_declaration_list, + STATE(2311), 1, + sym_type_parameters, + STATE(2508), 1, + sym_trait_bounds, + STATE(3035), 1, sym_where_clause, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2198), 2, sym_line_comment, - [78261] = 2, - ACTIONS(3), 2, sym_block_comment, + [69024] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2199), 2, sym_line_comment, - ACTIONS(4883), 8, + sym_block_comment, + ACTIONS(4923), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -164242,19083 +169075,23903 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [78276] = 9, - ACTIONS(3398), 1, + [69045] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4912), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(4991), 1, + ACTIONS(4925), 1, anon_sym_SEMI, + ACTIONS(4927), 1, + anon_sym_DASH_GT, STATE(601), 1, sym_block, - STATE(2346), 1, + STATE(2415), 1, sym_where_clause, - STATE(3444), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2200), 2, sym_line_comment, - [78305] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4883), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + [69080] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, + ACTIONS(4696), 1, anon_sym_where, - [78320] = 8, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(4993), 1, - anon_sym_RBRACE, - ACTIONS(4995), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(4929), 1, + anon_sym_SEMI, + STATE(1266), 1, + sym_block, + STATE(2406), 1, + sym_where_clause, + STATE(3488), 1, + sym_label, + STATE(2201), 2, sym_line_comment, - STATE(2690), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [78347] = 9, - ACTIONS(3398), 1, + sym_block_comment, + [69115] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(4997), 1, + ACTIONS(4931), 1, anon_sym_SEMI, - STATE(1253), 1, + ACTIONS(4933), 1, + anon_sym_DASH_GT, + STATE(714), 1, sym_block, - STATE(2411), 1, + STATE(2417), 1, sym_where_clause, - STATE(3447), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2202), 2, sym_line_comment, - [78376] = 8, - ACTIONS(63), 1, + sym_block_comment, + [69150] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_pub, - ACTIONS(3022), 1, + ACTIONS(2918), 1, anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, + ACTIONS(4582), 1, sym_identifier, - STATE(3102), 1, + ACTIONS(4588), 1, + sym_crate, + STATE(1449), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2885), 1, sym_enum_variant, - STATE(3322), 1, + STATE(3302), 1, sym_visibility_modifier, - ACTIONS(3), 2, + STATE(2203), 2, + sym_line_comment, sym_block_comment, + [69185] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2204), 2, sym_line_comment, - STATE(2164), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [78403] = 9, - ACTIONS(3398), 1, + sym_block_comment, + ACTIONS(4935), 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, + [69206] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(4999), 1, + ACTIONS(4937), 1, anon_sym_SEMI, - STATE(1373), 1, + ACTIONS(4939), 1, + anon_sym_DASH_GT, + STATE(561), 1, sym_block, - STATE(2366), 1, + STATE(2358), 1, sym_where_clause, - STATE(3447), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, + STATE(2205), 2, + sym_line_comment, sym_block_comment, + [69241] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(4828), 1, + anon_sym_LT, + STATE(1304), 1, + sym_declaration_list, + STATE(2305), 1, + sym_type_parameters, + STATE(2665), 1, + sym_trait_bounds, + STATE(3204), 1, + sym_where_clause, + STATE(2206), 2, sym_line_comment, - [78432] = 9, - ACTIONS(3398), 1, + sym_block_comment, + [69276] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4912), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(5001), 1, + ACTIONS(4941), 1, anon_sym_SEMI, - ACTIONS(5003), 1, - anon_sym_DASH_GT, - STATE(685), 1, + STATE(1396), 1, sym_block, - STATE(2367), 1, + STATE(2361), 1, sym_where_clause, - STATE(3444), 1, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2207), 2, sym_line_comment, - [78461] = 9, - ACTIONS(3398), 1, + sym_block_comment, + [69311] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4912), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5005), 1, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(4943), 1, anon_sym_SEMI, - STATE(606), 1, + STATE(1381), 1, sym_block, - STATE(2377), 1, + STATE(2379), 1, sym_where_clause, - STATE(3444), 1, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2208), 2, sym_line_comment, - [78490] = 8, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - STATE(3042), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, sym_block_comment, + [69346] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(4945), 1, + anon_sym_SEMI, + ACTIONS(4947), 1, + anon_sym_DASH_GT, + STATE(1128), 1, + sym_block, + STATE(2378), 1, + sym_where_clause, + STATE(3488), 1, + sym_label, + STATE(2209), 2, sym_line_comment, - STATE(1432), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [78517] = 8, - ACTIONS(3064), 1, + sym_block_comment, + [69381] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2964), 1, anon_sym_SQUOTE, - ACTIONS(4828), 1, - sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4722), 1, anon_sym_const, - ACTIONS(4834), 1, + ACTIONS(4913), 1, + sym_identifier, + ACTIONS(4915), 1, sym_metavariable, - STATE(2601), 1, + STATE(2390), 1, sym_lifetime, - STATE(2870), 1, + STATE(2531), 1, sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(2210), 2, sym_line_comment, - STATE(3034), 2, + sym_block_comment, + STATE(2818), 2, sym_const_parameter, sym_optional_type_parameter, - [78544] = 8, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4700), 1, - sym_crate, - STATE(3017), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1432), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [78571] = 9, - ACTIONS(3398), 1, + [69414] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4912), 1, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(5007), 1, + ACTIONS(4949), 1, anon_sym_SEMI, - ACTIONS(5009), 1, + ACTIONS(4951), 1, anon_sym_DASH_GT, - STATE(694), 1, + STATE(1125), 1, sym_block, - STATE(2345), 1, + STATE(2403), 1, sym_where_clause, - STATE(3444), 1, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2211), 2, sym_line_comment, - [78600] = 9, - ACTIONS(3398), 1, + sym_block_comment, + [69449] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(4953), 1, anon_sym_SEMI, - ACTIONS(5013), 1, - anon_sym_DASH_GT, - STATE(1129), 1, - sym_block, - STATE(2387), 1, - sym_where_clause, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [78629] = 8, - ACTIONS(3064), 1, - anon_sym_SQUOTE, - ACTIONS(4832), 1, - anon_sym_const, - ACTIONS(5015), 1, - sym_identifier, - ACTIONS(5017), 1, - sym_metavariable, - STATE(2342), 1, - sym_lifetime, - STATE(2613), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, + STATE(1414), 1, + sym_block, + STATE(2360), 1, + sym_where_clause, + STATE(3488), 1, + sym_label, + STATE(2212), 2, sym_line_comment, - STATE(2711), 2, - sym_const_parameter, - sym_optional_type_parameter, - [78656] = 9, - ACTIONS(3398), 1, + sym_block_comment, + [69484] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(5019), 1, + ACTIONS(4955), 1, anon_sym_SEMI, - ACTIONS(5021), 1, + ACTIONS(4957), 1, anon_sym_DASH_GT, - STATE(1223), 1, + STATE(741), 1, sym_block, - STATE(2357), 1, + STATE(2366), 1, sym_where_clause, - STATE(3447), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2213), 2, sym_line_comment, - [78685] = 8, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4700), 1, - sym_crate, - STATE(3143), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - STATE(2166), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [78712] = 9, - ACTIONS(3398), 1, + [69519] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4912), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, + ACTIONS(4959), 1, anon_sym_SEMI, - ACTIONS(5025), 1, + ACTIONS(4961), 1, anon_sym_DASH_GT, - STATE(522), 1, + STATE(644), 1, sym_block, - STATE(2392), 1, + STATE(2387), 1, sym_where_clause, - STATE(3444), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2214), 2, sym_line_comment, - [78741] = 9, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [69554] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(4946), 1, - anon_sym_LT, - STATE(1302), 1, - sym_declaration_list, - STATE(2315), 1, - sym_type_parameters, - STATE(2624), 1, - sym_trait_bounds, - STATE(3182), 1, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4963), 1, + anon_sym_SEMI, + STATE(693), 1, + sym_field_declaration_list, + STATE(2694), 1, + sym_ordered_field_declaration_list, + STATE(3185), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2215), 2, + sym_line_comment, sym_block_comment, + [69586] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4965), 1, + anon_sym_SEMI, + STATE(720), 1, + sym_field_declaration_list, + STATE(2959), 1, + sym_ordered_field_declaration_list, + STATE(2975), 1, + sym_where_clause, + STATE(2216), 2, sym_line_comment, - [78770] = 4, - ACTIONS(1068), 1, - aux_sym_string_literal_token1, - STATE(2144), 1, - sym_string_literal, - ACTIONS(3), 2, sym_block_comment, + [69618] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4967), 1, + sym_identifier, + STATE(2217), 2, sym_line_comment, - ACTIONS(4634), 6, + sym_block_comment, + ACTIONS(4576), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [78789] = 8, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4694), 1, + [69640] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4969), 1, sym_identifier, - ACTIONS(4700), 1, - sym_crate, - STATE(2808), 1, - sym_field_declaration, - STATE(3431), 1, - sym_visibility_modifier, - ACTIONS(3), 2, + STATE(2218), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4576), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69662] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4971), 1, + anon_sym_trait, + STATE(2219), 2, sym_line_comment, - STATE(1432), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [78816] = 9, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(4946), 1, - anon_sym_LT, - STATE(536), 1, - sym_declaration_list, - STATE(2251), 1, - sym_type_parameters, - STATE(2570), 1, - sym_trait_bounds, - STATE(2969), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69684] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4975), 1, + anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4973), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2220), 2, sym_line_comment, - [78845] = 8, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - STATE(2788), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, sym_block_comment, + [69712] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4618), 1, + anon_sym_COLON_COLON, + ACTIONS(4624), 1, + anon_sym_DOT_DOT, + ACTIONS(4622), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2221), 2, sym_line_comment, - STATE(1432), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [78872] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(4369), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69738] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4928), 1, + ACTIONS(4762), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5027), 1, + ACTIONS(4979), 1, anon_sym_SEMI, - STATE(1313), 1, - sym_block, - STATE(2372), 1, + STATE(1206), 1, + sym_field_declaration_list, + STATE(2765), 1, + sym_ordered_field_declaration_list, + STATE(3121), 1, sym_where_clause, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, + STATE(2222), 2, + sym_line_comment, sym_block_comment, + [69770] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4983), 1, + anon_sym_RPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + STATE(2188), 1, + aux_sym_macro_definition_repeat1, + STATE(3082), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2223), 2, sym_line_comment, - [78901] = 8, - ACTIONS(63), 1, - anon_sym_pub, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(4700), 1, - sym_crate, - ACTIONS(4736), 1, - sym_identifier, - STATE(2858), 1, - sym_enum_variant, - STATE(3322), 1, - sym_visibility_modifier, - ACTIONS(3), 2, sym_block_comment, + [69802] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4989), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2224), 2, sym_line_comment, - STATE(1432), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [78928] = 5, - ACTIONS(5031), 1, - anon_sym_fn, - ACTIONS(5033), 1, - anon_sym_extern, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(3214), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [69828] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(4991), 1, + anon_sym_RBRACE, + STATE(2188), 1, + aux_sym_macro_definition_repeat1, + STATE(3079), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2225), 2, sym_line_comment, - STATE(2143), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(5029), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [78949] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4912), 1, + sym_block_comment, + [69860] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(5035), 1, - anon_sym_SEMI, - ACTIONS(5037), 1, - anon_sym_DASH_GT, - STATE(588), 1, - sym_block, - STATE(2385), 1, - sym_where_clause, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4995), 1, + anon_sym_STAR, + STATE(2742), 1, + sym_use_list, + STATE(3385), 1, + sym_type_arguments, + ACTIONS(4993), 2, + sym_identifier, + sym_super, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + [69890] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(4997), 1, + anon_sym_RPAREN, + STATE(2188), 1, + aux_sym_macro_definition_repeat1, + STATE(3016), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2227), 2, + sym_line_comment, sym_block_comment, + [69922] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(4999), 1, + anon_sym_RBRACE, + STATE(2188), 1, + aux_sym_macro_definition_repeat1, + STATE(3073), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2228), 2, sym_line_comment, - [78978] = 2, - ACTIONS(3), 2, sym_block_comment, + [69954] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + ACTIONS(5001), 1, + anon_sym_RBRACE, + STATE(2229), 2, sym_line_comment, - ACTIONS(5039), 8, - anon_sym_SEMI, + sym_block_comment, + STATE(3126), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69984] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + ACTIONS(5003), 1, + anon_sym_RBRACE, + STATE(2230), 2, + sym_line_comment, + sym_block_comment, + STATE(3126), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70014] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4762), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5007), 1, anon_sym_EQ, + ACTIONS(5005), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [78993] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4912), 1, + STATE(2231), 2, + sym_line_comment, + sym_block_comment, + STATE(2882), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [70042] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_SEMI, - ACTIONS(5043), 1, - anon_sym_DASH_GT, - STATE(512), 1, - sym_block, - STATE(2412), 1, - sym_where_clause, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4995), 1, + anon_sym_STAR, + STATE(2742), 1, + sym_use_list, + STATE(3411), 1, + sym_type_arguments, + ACTIONS(4993), 2, + sym_identifier, + sym_super, + STATE(2232), 2, + sym_line_comment, sym_block_comment, + [70072] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + ACTIONS(5009), 1, + anon_sym_RBRACE, + STATE(2233), 2, sym_line_comment, - [79022] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4912), 1, + sym_block_comment, + STATE(3126), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70102] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + ACTIONS(5011), 1, + anon_sym_LPAREN, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_SEMI, - STATE(625), 1, - sym_block, - STATE(2386), 1, - sym_where_clause, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(5015), 1, + anon_sym_LBRACK, + ACTIONS(5017), 1, + anon_sym_RBRACK, + ACTIONS(5019), 1, + anon_sym_EQ, + STATE(3453), 1, + sym_delim_token_tree, + STATE(2234), 2, + sym_line_comment, sym_block_comment, + [70134] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5021), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2235), 2, sym_line_comment, - [79051] = 4, - ACTIONS(4646), 1, + sym_block_comment, + ACTIONS(3214), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70160] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5021), 1, anon_sym_COLON_COLON, - ACTIONS(4754), 1, - anon_sym_BANG, - ACTIONS(3), 2, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5023), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2236), 2, + sym_line_comment, + sym_block_comment, + [70188] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5027), 1, + anon_sym_RBRACE, + STATE(2228), 1, + aux_sym_macro_definition_repeat1, + STATE(3049), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2237), 2, + sym_line_comment, + sym_block_comment, + [70220] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + ACTIONS(5029), 1, + anon_sym_RBRACE, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + STATE(3126), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70250] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5031), 1, + anon_sym_RBRACE, + STATE(2188), 1, + aux_sym_macro_definition_repeat1, + STATE(3089), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + [70282] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5033), 1, + anon_sym_RPAREN, + STATE(2188), 1, + aux_sym_macro_definition_repeat1, + STATE(3092), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2240), 2, + sym_line_comment, + sym_block_comment, + [70314] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5035), 1, + anon_sym_RPAREN, + STATE(2227), 1, + aux_sym_macro_definition_repeat1, + STATE(2968), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2241), 2, + sym_line_comment, + sym_block_comment, + [70346] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5037), 1, + anon_sym_RPAREN, + STATE(2188), 1, + aux_sym_macro_definition_repeat1, + STATE(3093), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2242), 2, + sym_line_comment, sym_block_comment, + [70378] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5039), 1, + sym_identifier, + STATE(2243), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(4576), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [79070] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4928), 1, + [70400] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4762), 1, + anon_sym_LBRACE, + ACTIONS(5043), 1, + anon_sym_EQ, + ACTIONS(5041), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2244), 2, + sym_line_comment, + sym_block_comment, + STATE(2745), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [70428] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(5045), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5023), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + [70456] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5045), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2246), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3214), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70482] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, ACTIONS(5047), 1, - anon_sym_SEMI, - ACTIONS(5049), 1, - anon_sym_DASH_GT, - STATE(1084), 1, - sym_block, - STATE(2414), 1, - sym_where_clause, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, + anon_sym_RBRACE, + STATE(2225), 1, + aux_sym_macro_definition_repeat1, + STATE(2976), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2247), 2, + sym_line_comment, sym_block_comment, + [70514] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_RPAREN, + STATE(2223), 1, + aux_sym_macro_definition_repeat1, + STATE(2979), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2248), 2, sym_line_comment, - [79099] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4928), 1, + sym_block_comment, + [70546] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, + ACTIONS(4987), 1, + anon_sym_LBRACK, ACTIONS(5051), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_block, - STATE(2417), 1, - sym_where_clause, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_RBRACE, + STATE(2239), 1, + aux_sym_macro_definition_repeat1, + STATE(3174), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2249), 2, sym_line_comment, - [79128] = 9, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(4946), 1, - anon_sym_LT, - STATE(1120), 1, - sym_declaration_list, - STATE(2243), 1, - sym_type_parameters, - STATE(2611), 1, - sym_trait_bounds, - STATE(3085), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + [70578] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(2261), 1, + aux_sym_macro_definition_repeat1, + STATE(3177), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2250), 2, sym_line_comment, - [79157] = 9, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4790), 1, + sym_block_comment, + [70610] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4912), 1, + ACTIONS(4762), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5053), 1, + ACTIONS(5055), 1, anon_sym_SEMI, - STATE(752), 1, - sym_block, - STATE(2365), 1, + STATE(1137), 1, + sym_field_declaration_list, + STATE(2865), 1, + sym_ordered_field_declaration_list, + STATE(3048), 1, sym_where_clause, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2251), 2, sym_line_comment, - [79186] = 4, - ACTIONS(4513), 1, - anon_sym_trait, - ACTIONS(5055), 1, - anon_sym_impl, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [79205] = 3, + [70642] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4552), 1, + anon_sym_COLON_COLON, + ACTIONS(5011), 1, + anon_sym_LPAREN, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + anon_sym_LBRACK, ACTIONS(5057), 1, - sym_identifier, - ACTIONS(3), 2, + anon_sym_RBRACK, + ACTIONS(5059), 1, + anon_sym_EQ, + STATE(3452), 1, + sym_delim_token_tree, + STATE(2252), 2, + sym_line_comment, sym_block_comment, + [70674] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4985), 1, + anon_sym_LBRACE, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5061), 1, + anon_sym_RPAREN, + STATE(2240), 1, + aux_sym_macro_definition_repeat1, + STATE(3133), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2253), 2, sym_line_comment, - ACTIONS(4652), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [79221] = 3, - ACTIONS(5059), 1, - anon_sym_trait, - ACTIONS(3), 2, sym_block_comment, + [70706] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5063), 1, + sym_identifier, + STATE(2254), 2, sym_line_comment, - ACTIONS(3344), 6, + sym_block_comment, + ACTIONS(4576), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [79237] = 8, - ACTIONS(4784), 1, + [70728] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, anon_sym_LPAREN, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4822), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, - anon_sym_SEMI, - STATE(1116), 1, - sym_field_declaration_list, - STATE(2824), 1, - sym_ordered_field_declaration_list, - STATE(3094), 1, - sym_where_clause, - ACTIONS(3), 2, + ACTIONS(4987), 1, + anon_sym_LBRACK, + ACTIONS(5065), 1, + anon_sym_RPAREN, + STATE(2242), 1, + aux_sym_macro_definition_repeat1, + STATE(3134), 1, + sym_macro_rule, + STATE(3500), 1, + sym_token_tree_pattern, + STATE(2255), 2, + sym_line_comment, sym_block_comment, + [70760] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + ACTIONS(5067), 1, + anon_sym_RBRACE, + STATE(2256), 2, sym_line_comment, - [79263] = 8, - ACTIONS(4784), 1, + sym_block_comment, + STATE(3126), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70790] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4538), 1, + anon_sym_COLON_COLON, + ACTIONS(5011), 1, anon_sym_LPAREN, - ACTIONS(4786), 1, + ACTIONS(5013), 1, anon_sym_LBRACE, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5063), 1, - anon_sym_SEMI, - STATE(538), 1, - sym_field_declaration_list, - STATE(2903), 1, - sym_ordered_field_declaration_list, - STATE(2960), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5015), 1, + anon_sym_LBRACK, + ACTIONS(5057), 1, + anon_sym_RBRACK, + ACTIONS(5059), 1, + anon_sym_EQ, + STATE(3452), 1, + sym_delim_token_tree, + STATE(2257), 2, sym_line_comment, - [79289] = 7, - ACTIONS(1144), 1, + sym_block_comment, + [70822] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, anon_sym_DOT_DOT, - ACTIONS(4916), 1, + ACTIONS(4868), 1, sym_identifier, - ACTIONS(4922), 1, + ACTIONS(4874), 1, anon_sym_ref, - ACTIONS(4924), 1, + ACTIONS(4876), 1, sym_mutable_specifier, - ACTIONS(5065), 1, + ACTIONS(5069), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, + STATE(2258), 2, sym_line_comment, - STATE(3089), 2, + sym_block_comment, + STATE(3126), 2, sym_field_pattern, sym_remaining_field_pattern, - [79313] = 7, - ACTIONS(1144), 1, + [70852] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, anon_sym_DOT_DOT, - ACTIONS(4916), 1, + ACTIONS(4868), 1, sym_identifier, - ACTIONS(4922), 1, + ACTIONS(4874), 1, anon_sym_ref, - ACTIONS(4924), 1, + ACTIONS(4876), 1, sym_mutable_specifier, - ACTIONS(5067), 1, + ACTIONS(5071), 1, anon_sym_RBRACE, - ACTIONS(3), 2, + STATE(2259), 2, + sym_line_comment, sym_block_comment, + STATE(3126), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70882] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + ACTIONS(5073), 1, + anon_sym_RBRACE, + STATE(2260), 2, sym_line_comment, - STATE(3089), 2, + sym_block_comment, + STATE(3126), 2, sym_field_pattern, sym_remaining_field_pattern, - [79337] = 8, - ACTIONS(5069), 1, + [70912] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4981), 1, anon_sym_LPAREN, - ACTIONS(5071), 1, - anon_sym_RPAREN, - ACTIONS(5073), 1, + ACTIONS(4985), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, + ACTIONS(4987), 1, anon_sym_LBRACK, - STATE(2142), 1, + ACTIONS(5075), 1, + anon_sym_RBRACE, + STATE(2188), 1, aux_sym_macro_definition_repeat1, - STATE(3156), 1, + STATE(3091), 1, sym_macro_rule, - STATE(3461), 1, + STATE(3500), 1, sym_token_tree_pattern, - ACTIONS(3), 2, + STATE(2261), 2, + sym_line_comment, sym_block_comment, + [70944] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5077), 1, + anon_sym_trait, + STATE(2262), 2, sym_line_comment, - [79363] = 6, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70966] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(5011), 1, + anon_sym_LPAREN, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + anon_sym_LBRACK, + ACTIONS(5057), 1, + anon_sym_RBRACK, + ACTIONS(5059), 1, + anon_sym_EQ, + STATE(3452), 1, + sym_delim_token_tree, + STATE(2263), 2, + sym_line_comment, + sym_block_comment, + [70998] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(5079), 1, + anon_sym_SEMI, + STATE(1221), 1, + sym_declaration_list, + STATE(2750), 1, + sym_where_clause, + STATE(2264), 2, + sym_line_comment, + sym_block_comment, + [71027] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3927), 1, + anon_sym_COLON_COLON, + ACTIONS(5081), 1, + anon_sym_COMMA, + ACTIONS(5083), 1, + anon_sym_GT, + STATE(2736), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3214), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + [71054] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3002), 1, + anon_sym_PLUS, + ACTIONS(4826), 1, anon_sym_COLON, ACTIONS(5081), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_COMMA, + ACTIONS(5083), 1, + anon_sym_GT, + STATE(2736), 1, + aux_sym_type_parameters_repeat1, + STATE(2800), 1, + sym_trait_bounds, + STATE(2266), 2, + sym_line_comment, sym_block_comment, + [71083] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(749), 1, + sym_declaration_list, + STATE(2447), 1, + sym_trait_bounds, + STATE(2977), 1, + sym_where_clause, + STATE(2267), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5077), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [79385] = 7, - ACTIONS(4299), 1, + sym_block_comment, + [71112] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(4441), 1, - anon_sym_LT2, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(5085), 1, - anon_sym_STAR, - STATE(2710), 1, - sym_use_list, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_SEMI, + STATE(1374), 1, + sym_declaration_list, + STATE(2957), 1, + sym_where_clause, + STATE(2268), 2, sym_line_comment, - ACTIONS(5083), 2, - sym_identifier, - sym_super, - [79409] = 5, - ACTIONS(4752), 1, - anon_sym_COLON_COLON, - ACTIONS(4758), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, + [71141] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(595), 1, + sym_declaration_list, + STATE(2567), 1, + sym_trait_bounds, + STATE(3192), 1, + sym_where_clause, + STATE(2269), 2, sym_line_comment, - ACTIONS(4756), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4461), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79429] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + sym_block_comment, + [71170] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(5087), 1, - anon_sym_RBRACE, - STATE(2236), 1, - aux_sym_macro_definition_repeat1, - STATE(2967), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_SEMI, + STATE(1113), 1, + sym_declaration_list, + STATE(2837), 1, + sym_where_clause, + STATE(2270), 2, sym_line_comment, - [79455] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + sym_block_comment, + [71199] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(5089), 1, - anon_sym_RBRACE, - STATE(2237), 1, - aux_sym_macro_definition_repeat1, - STATE(2975), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_SEMI, + STATE(740), 1, + sym_declaration_list, + STATE(2716), 1, + sym_where_clause, + STATE(2271), 2, sym_line_comment, - [79481] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5091), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [71228] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4762), 1, + anon_sym_LBRACE, + STATE(1184), 1, + sym_field_declaration_list, + STATE(2569), 1, + sym_type_parameters, + STATE(3099), 1, + sym_where_clause, + STATE(2272), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3298), 3, + sym_block_comment, + [71257] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5091), 1, anon_sym_SEMI, - anon_sym_RBRACK, + STATE(1108), 1, + sym_declaration_list, + STATE(2840), 1, + sym_where_clause, + STATE(2273), 2, + sym_line_comment, + sym_block_comment, + [71286] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, anon_sym_PLUS, - [79501] = 8, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, ACTIONS(5093), 1, - anon_sym_LPAREN, - ACTIONS(5095), 1, - anon_sym_LBRACE, - ACTIONS(5097), 1, - anon_sym_LBRACK, - ACTIONS(5099), 1, - anon_sym_RBRACK, - ACTIONS(5101), 1, - anon_sym_EQ, - STATE(3271), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_SEMI, + STATE(1183), 1, + sym_declaration_list, + STATE(2901), 1, + sym_where_clause, + STATE(2274), 2, sym_line_comment, - [79527] = 6, - ACTIONS(4784), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, - anon_sym_LBRACE, - ACTIONS(5105), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [71315] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4698), 1, + anon_sym_for, + STATE(2275), 2, sym_line_comment, - ACTIONS(5103), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2854), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [79549] = 7, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5085), 1, - anon_sym_STAR, - STATE(2710), 1, - sym_use_list, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5083), 2, - sym_identifier, - sym_super, - [79573] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + ACTIONS(3214), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_RPAREN, - STATE(2217), 1, - aux_sym_macro_definition_repeat1, - STATE(3128), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [79599] = 8, - ACTIONS(4564), 1, + anon_sym_PLUS, + anon_sym_where, + [71338] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, anon_sym_COLON_COLON, - ACTIONS(5093), 1, - anon_sym_LPAREN, + ACTIONS(4814), 1, + anon_sym_for, + STATE(2276), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3214), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71361] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, + anon_sym_COLON, ACTIONS(5095), 1, + anon_sym_COMMA, + ACTIONS(5097), 1, + anon_sym_GT, + STATE(2736), 1, + aux_sym_type_parameters_repeat1, + STATE(2800), 1, + sym_trait_bounds, + STATE(2839), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2277), 2, + sym_line_comment, + sym_block_comment, + [71390] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(548), 1, + sym_enum_variant_list, + STATE(2597), 1, + sym_type_parameters, + STATE(3135), 1, + sym_where_clause, + STATE(2278), 2, + sym_line_comment, + sym_block_comment, + [71419] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(5097), 1, - anon_sym_LBRACK, - ACTIONS(5099), 1, - anon_sym_RBRACK, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(5101), 1, - anon_sym_EQ, - STATE(3271), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_SEMI, + STATE(1101), 1, + sym_declaration_list, + STATE(2854), 1, + sym_where_clause, + STATE(2279), 2, sym_line_comment, - [79625] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5109), 1, - anon_sym_RPAREN, - STATE(2215), 1, - aux_sym_macro_definition_repeat1, - STATE(3127), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [79651] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + [71448] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5111), 1, - anon_sym_RPAREN, - STATE(2197), 1, - aux_sym_macro_definition_repeat1, - STATE(2972), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(5103), 1, + anon_sym_if, + STATE(3489), 1, + sym_label, + STATE(1736), 2, + sym_if_expression, + sym_block, + STATE(2280), 2, sym_line_comment, - [79677] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5113), 1, - anon_sym_RBRACE, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3146), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, sym_block_comment, + [71475] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4806), 1, + anon_sym_for, + STATE(2281), 2, sym_line_comment, - [79703] = 7, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(5115), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(3214), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71498] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(1122), 1, + sym_declaration_list, + STATE(2515), 1, + sym_trait_bounds, + STATE(3054), 1, + sym_where_clause, + STATE(2282), 2, sym_line_comment, - STATE(3089), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [79727] = 5, - ACTIONS(4459), 1, + sym_block_comment, + [71527] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, anon_sym_DOT_DOT, - ACTIONS(5117), 1, + ACTIONS(5045), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, + ACTIONS(4363), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3298), 3, + ACTIONS(5105), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [79747] = 6, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5117), 1, - anon_sym_COLON_COLON, - ACTIONS(5121), 1, - anon_sym_COLON, - ACTIONS(3), 2, + STATE(2283), 2, + sym_line_comment, sym_block_comment, + [71552] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2284), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5119), 2, + sym_block_comment, + ACTIONS(3334), 4, anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH_GT, anon_sym_COMMA, - [79769] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + [71573] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5123), 1, - anon_sym_RPAREN, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3086), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5107), 1, + anon_sym_SEMI, + STATE(1179), 1, + sym_declaration_list, + STATE(2900), 1, + sym_where_clause, + STATE(2285), 2, sym_line_comment, - [79795] = 3, - ACTIONS(5125), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4652), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [79811] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + [71602] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5127), 1, - anon_sym_RPAREN, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3087), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5109), 1, + anon_sym_SEMI, + STATE(1168), 1, + sym_declaration_list, + STATE(2897), 1, + sym_where_clause, + STATE(2286), 2, sym_line_comment, - [79837] = 8, - ACTIONS(4646), 1, - anon_sym_COLON_COLON, - ACTIONS(5093), 1, - anon_sym_LPAREN, - ACTIONS(5095), 1, - anon_sym_LBRACE, - ACTIONS(5097), 1, - anon_sym_LBRACK, - ACTIONS(5129), 1, - anon_sym_RBRACK, - ACTIONS(5131), 1, - anon_sym_EQ, - STATE(3283), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, + [71631] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4804), 1, + anon_sym_for, + STATE(2287), 2, sym_line_comment, - [79863] = 7, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(5133), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - STATE(3089), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [79887] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + ACTIONS(3214), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5135), 1, - anon_sym_RBRACE, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3148), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_PLUS, + anon_sym_where, + [71654] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5111), 1, + anon_sym_LBRACE, + STATE(1191), 1, + sym_enum_variant_list, + STATE(2577), 1, + sym_type_parameters, + STATE(3104), 1, + sym_where_clause, + STATE(2288), 2, sym_line_comment, - [79913] = 8, - ACTIONS(4784), 1, - anon_sym_LPAREN, - ACTIONS(4786), 1, + sym_block_comment, + [71683] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, anon_sym_LBRACE, - ACTIONS(4790), 1, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(5137), 1, - anon_sym_SEMI, - STATE(759), 1, + STATE(609), 1, sym_field_declaration_list, - STATE(2664), 1, - sym_ordered_field_declaration_list, - STATE(2982), 1, + STATE(2562), 1, + sym_type_parameters, + STATE(3102), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2289), 2, sym_line_comment, - [79939] = 7, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(5139), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [71712] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(5113), 1, + anon_sym_if, + STATE(3490), 1, + sym_label, + STATE(466), 2, + sym_if_expression, + sym_block, + STATE(2290), 2, sym_line_comment, - STATE(3089), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [79963] = 7, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(5141), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - STATE(3089), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [79987] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + [71739] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5143), 1, - anon_sym_RBRACE, - STATE(2211), 1, - aux_sym_macro_definition_repeat1, - STATE(3058), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5115), 1, + anon_sym_SEMI, + STATE(532), 1, + sym_declaration_list, + STATE(2686), 1, + sym_where_clause, + STATE(2291), 2, sym_line_comment, - [80013] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5145), 1, - anon_sym_RPAREN, - STATE(2231), 1, - aux_sym_macro_definition_repeat1, - STATE(3015), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, sym_block_comment, + [71768] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4780), 1, + anon_sym_for, + STATE(2292), 2, sym_line_comment, - [80039] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5147), 1, - anon_sym_RBRACE, - STATE(2220), 1, - aux_sym_macro_definition_repeat1, - STATE(2945), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [80065] = 8, - ACTIONS(4620), 1, - anon_sym_COLON_COLON, - ACTIONS(5093), 1, - anon_sym_LPAREN, - ACTIONS(5095), 1, + ACTIONS(3214), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5097), 1, - anon_sym_LBRACK, - ACTIONS(5099), 1, - anon_sym_RBRACK, - ACTIONS(5101), 1, - anon_sym_EQ, - STATE(3271), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_PLUS, + anon_sym_where, + [71791] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4730), 1, + anon_sym_for, + STATE(2293), 2, sym_line_comment, - [80091] = 8, - ACTIONS(4784), 1, - anon_sym_LPAREN, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(3214), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71814] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4822), 1, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5117), 1, anon_sym_SEMI, - STATE(1197), 1, - sym_field_declaration_list, - STATE(2724), 1, - sym_ordered_field_declaration_list, - STATE(3055), 1, + STATE(1376), 1, + sym_declaration_list, + STATE(2958), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2294), 2, sym_line_comment, - [80117] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [71843] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5119), 1, + anon_sym_SEMI, + STATE(529), 1, + sym_declaration_list, + STATE(2687), 1, + sym_where_clause, + STATE(2295), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3298), 3, - anon_sym_RPAREN, + sym_block_comment, + [71872] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, anon_sym_PLUS, - anon_sym_COMMA, - [80137] = 6, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, ACTIONS(5121), 1, - anon_sym_COLON, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_SEMI, + STATE(1165), 1, + sym_declaration_list, + STATE(2896), 1, + sym_where_clause, + STATE(2296), 2, + sym_line_comment, sym_block_comment, + [71901] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4792), 1, + anon_sym_for, + STATE(2297), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5119), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [80159] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5153), 1, - anon_sym_RPAREN, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3134), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(3214), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71924] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4762), 1, + anon_sym_LBRACE, + STATE(1302), 1, + sym_field_declaration_list, + STATE(2670), 1, + sym_type_parameters, + STATE(3199), 1, + sym_where_clause, + STATE(2298), 2, sym_line_comment, - [80185] = 7, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(5155), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [71953] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5123), 1, + anon_sym_SEMI, + STATE(1196), 1, + sym_declaration_list, + STATE(2774), 1, + sym_where_clause, + STATE(2299), 2, sym_line_comment, - STATE(3089), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [80209] = 6, - ACTIONS(4784), 1, - anon_sym_LPAREN, - ACTIONS(4822), 1, + sym_block_comment, + [71982] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, anon_sym_LBRACE, - ACTIONS(5159), 1, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_where, + STATE(516), 1, + sym_field_declaration_list, + STATE(2495), 1, + sym_type_parameters, + STATE(3025), 1, + sym_where_clause, + STATE(2300), 2, + sym_line_comment, + sym_block_comment, + [72011] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(4828), 1, + anon_sym_LT, + ACTIONS(5125), 1, + anon_sym_SEMI, + ACTIONS(5127), 1, anon_sym_EQ, - ACTIONS(3), 2, + STATE(2505), 1, + sym_type_parameters, + STATE(3414), 1, + sym_trait_bounds, + STATE(2301), 2, + sym_line_comment, sym_block_comment, + [72040] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5129), 1, + anon_sym_SEMI, + STATE(621), 1, + sym_declaration_list, + STATE(2952), 1, + sym_where_clause, + STATE(2302), 2, sym_line_comment, - ACTIONS(5157), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2820), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [80231] = 7, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(5161), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [72069] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5131), 1, + anon_sym_SEMI, + STATE(1324), 1, + sym_declaration_list, + STATE(2941), 1, + sym_where_clause, + STATE(2303), 2, sym_line_comment, - STATE(3089), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [80255] = 3, - ACTIONS(5163), 1, - anon_sym_trait, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3344), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [80271] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, + [72098] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5165), 1, - anon_sym_RBRACE, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3167), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5133), 1, + anon_sym_SEMI, + STATE(612), 1, + sym_declaration_list, + STATE(2948), 1, + sym_where_clause, + STATE(2304), 2, sym_line_comment, - [80297] = 8, - ACTIONS(5069), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_LBRACK, - ACTIONS(5167), 1, - anon_sym_RBRACE, - STATE(2142), 1, - aux_sym_macro_definition_repeat1, - STATE(3179), 1, - sym_macro_rule, - STATE(3461), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, sym_block_comment, + [72127] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(1202), 1, + sym_declaration_list, + STATE(2587), 1, + sym_trait_bounds, + STATE(3119), 1, + sym_where_clause, + STATE(2305), 2, sym_line_comment, - [80323] = 3, - ACTIONS(5169), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [72156] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4520), 1, + anon_sym_DOT_DOT, + STATE(2306), 2, sym_line_comment, - ACTIONS(4652), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [80339] = 3, - ACTIONS(5171), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4652), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [80355] = 4, - ACTIONS(4531), 1, + ACTIONS(4518), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [72177] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, anon_sym_COLON_COLON, - ACTIONS(4802), 1, + ACTIONS(4703), 1, anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, + STATE(2307), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3214), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [80372] = 7, - ACTIONS(4790), 1, + [72200] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4796), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5173), 1, + ACTIONS(5135), 1, anon_sym_SEMI, - STATE(644), 1, + STATE(568), 1, sym_declaration_list, - STATE(2682), 1, + STATE(2853), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2308), 2, sym_line_comment, - [80395] = 4, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3478), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4684), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5175), 2, + [72229] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5045), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4973), 2, anon_sym_RPAREN, anon_sym_COMMA, - [80412] = 7, - ACTIONS(4790), 1, + STATE(2309), 2, + sym_line_comment, + sym_block_comment, + [72254] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(5137), 1, + sym_identifier, + ACTIONS(5139), 1, + anon_sym_ref, + ACTIONS(5141), 1, + sym_mutable_specifier, + ACTIONS(5143), 1, + anon_sym_move, + STATE(149), 1, + sym_closure_parameters, + STATE(2310), 2, + sym_line_comment, + sym_block_comment, + [72283] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, + ACTIONS(4826), 1, anon_sym_COLON, - STATE(1241), 1, + STATE(673), 1, sym_declaration_list, - STATE(2597), 1, + STATE(2666), 1, sym_trait_bounds, - STATE(3021), 1, + STATE(3180), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2311), 2, + sym_line_comment, sym_block_comment, + [72312] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4512), 1, + anon_sym_DOT_DOT, + ACTIONS(4510), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2312), 2, sym_line_comment, - [80435] = 7, - ACTIONS(4788), 1, + sym_block_comment, + ACTIONS(4351), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72335] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5145), 1, + anon_sym_SEMI, + STATE(625), 1, + sym_declaration_list, + STATE(2680), 1, + sym_where_clause, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + [72364] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, anon_sym_LT, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4822), 1, + ACTIONS(5099), 1, anon_sym_LBRACE, - STATE(1298), 1, - sym_field_declaration_list, - STATE(2629), 1, + STATE(575), 1, + sym_enum_variant_list, + STATE(2566), 1, sym_type_parameters, - STATE(3186), 1, + STATE(3116), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2314), 2, sym_line_comment, - [80458] = 4, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4798), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [72393] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(5147), 1, + anon_sym_if, + STATE(3381), 1, + sym_label, + STATE(232), 2, + sym_if_expression, + sym_block, + STATE(2315), 2, sym_line_comment, - ACTIONS(3298), 4, - anon_sym_SEMI, + sym_block_comment, + [72420] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, anon_sym_LBRACE, + ACTIONS(4834), 1, anon_sym_PLUS, - anon_sym_where, - [80475] = 7, - ACTIONS(4574), 1, + ACTIONS(5149), 1, + anon_sym_SEMI, + STATE(717), 1, + sym_declaration_list, + STATE(2852), 1, + sym_where_clause, + STATE(2316), 2, + sym_line_comment, + sym_block_comment, + [72449] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4482), 1, anon_sym_EQ, - ACTIONS(4576), 1, + ACTIONS(4484), 1, anon_sym_COMMA, - ACTIONS(4578), 1, + ACTIONS(4486), 1, anon_sym_GT, - ACTIONS(4944), 1, + ACTIONS(4826), 1, anon_sym_COLON, - STATE(2843), 1, + STATE(2738), 1, aux_sym_type_parameters_repeat1, - STATE(2918), 1, + STATE(2753), 1, sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, + STATE(2317), 2, sym_line_comment, - [80498] = 7, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(4946), 1, - anon_sym_LT, - ACTIONS(5178), 1, - anon_sym_SEMI, - ACTIONS(5180), 1, - anon_sym_EQ, - STATE(2627), 1, - sym_type_parameters, - STATE(3316), 1, - sym_trait_bounds, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [80521] = 7, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, + [72478] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(706), 1, - sym_enum_variant_list, - STATE(2633), 1, - sym_type_parameters, - STATE(3111), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5151), 1, + anon_sym_SEMI, + STATE(710), 1, + sym_declaration_list, + STATE(2857), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2318), 2, + sym_line_comment, sym_block_comment, + [72507] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3322), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4636), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5153), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2319), 2, sym_line_comment, - [80544] = 7, - ACTIONS(4790), 1, + sym_block_comment, + [72530] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5184), 1, + ACTIONS(5156), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(1318), 1, sym_declaration_list, - STATE(2860), 1, + STATE(2683), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2320), 2, sym_line_comment, - [80567] = 7, - ACTIONS(4786), 1, - anon_sym_LBRACE, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, + sym_block_comment, + [72559] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - STATE(693), 1, - sym_field_declaration_list, - STATE(2630), 1, - sym_type_parameters, - STATE(3147), 1, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5158), 1, + anon_sym_SEMI, + STATE(1330), 1, + sym_declaration_list, + STATE(2946), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2321), 2, sym_line_comment, - [80590] = 7, - ACTIONS(4790), 1, + sym_block_comment, + [72588] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4796), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_COLON, - STATE(689), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5160), 1, + anon_sym_SEMI, + STATE(764), 1, sym_declaration_list, - STATE(2458), 1, - sym_trait_bounds, - STATE(3114), 1, + STATE(2954), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2322), 2, + sym_line_comment, sym_block_comment, + [72617] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5162), 1, + anon_sym_SEMI, + STATE(1326), 1, + sym_declaration_list, + STATE(2942), 1, + sym_where_clause, + STATE(2323), 2, sym_line_comment, - [80613] = 7, - ACTIONS(4790), 1, + sym_block_comment, + [72646] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5186), 1, + ACTIONS(5164), 1, anon_sym_SEMI, - STATE(1327), 1, + STATE(630), 1, sym_declaration_list, - STATE(2818), 1, + STATE(2709), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2324), 2, + sym_line_comment, sym_block_comment, + [72675] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1138), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 1, + sym_identifier, + ACTIONS(4874), 1, + anon_sym_ref, + ACTIONS(4876), 1, + sym_mutable_specifier, + STATE(2325), 2, sym_line_comment, - [80636] = 7, - ACTIONS(4788), 1, + sym_block_comment, + STATE(3126), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72702] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, anon_sym_LT, - ACTIONS(4790), 1, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(5188), 1, + ACTIONS(5111), 1, anon_sym_LBRACE, - STATE(1343), 1, + STATE(1331), 1, sym_enum_variant_list, - STATE(2609), 1, + STATE(2650), 1, sym_type_parameters, - STATE(3062), 1, + STATE(3220), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2326), 2, + sym_line_comment, sym_block_comment, + [72731] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4636), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2327), 2, sym_line_comment, - [80659] = 4, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4810), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(3322), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH_GT, + anon_sym_COMMA, + [72752] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5021), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5105), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2328), 2, sym_line_comment, - ACTIONS(3298), 4, - anon_sym_SEMI, + sym_block_comment, + [72777] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, + ACTIONS(4834), 1, anon_sym_PLUS, + ACTIONS(5166), 1, + anon_sym_SEMI, + STATE(1293), 1, + sym_declaration_list, + STATE(2935), 1, + sym_where_clause, + STATE(2329), 2, + sym_line_comment, + sym_block_comment, + [72806] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - [80676] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5190), 1, + ACTIONS(5168), 1, anon_sym_SEMI, - STATE(1161), 1, + STATE(1328), 1, sym_declaration_list, - STATE(2859), 1, + STATE(2945), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2330), 2, + sym_line_comment, sym_block_comment, + [72835] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5170), 1, + anon_sym_RBRACK, + ACTIONS(4650), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2331), 2, sym_line_comment, - [80699] = 7, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(3334), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [72858] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(4828), 1, + anon_sym_LT, + ACTIONS(5173), 1, + anon_sym_SEMI, + ACTIONS(5175), 1, + anon_sym_EQ, + STATE(2668), 1, + sym_type_parameters, + STATE(3244), 1, + sym_trait_bounds, + STATE(2332), 2, + sym_line_comment, + sym_block_comment, + [72887] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(5177), 1, + anon_sym_if, + STATE(3440), 1, + sym_label, + STATE(1116), 2, + sym_if_expression, + sym_block, + STATE(2333), 2, + sym_line_comment, + sym_block_comment, + [72914] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4796), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5192), 1, + ACTIONS(5179), 1, anon_sym_SEMI, - STATE(711), 1, + STATE(694), 1, sym_declaration_list, - STATE(2865), 1, + STATE(2911), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2334), 2, sym_line_comment, - [80722] = 4, - ACTIONS(4531), 1, + sym_block_comment, + [72943] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5021), 1, anon_sym_COLON_COLON, - ACTIONS(4849), 1, - anon_sym_for, - ACTIONS(3), 2, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4973), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2335), 2, + sym_line_comment, sym_block_comment, + [72968] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1490), 1, + anon_sym_DOT_DOT, + STATE(2336), 2, sym_line_comment, - ACTIONS(3298), 4, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(1492), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [72989] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(1255), 1, + sym_declaration_list, + STATE(2473), 1, + sym_trait_bounds, + STATE(3008), 1, + sym_where_clause, + STATE(2337), 2, + sym_line_comment, + sym_block_comment, + [73018] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - [80739] = 3, - ACTIONS(4598), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5181), 1, + anon_sym_SEMI, + STATE(629), 1, + sym_declaration_list, + STATE(2870), 1, + sym_where_clause, + STATE(2338), 2, + sym_line_comment, sym_block_comment, + [73047] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1518), 1, + anon_sym_DOT_DOT, + STATE(2339), 2, sym_line_comment, - ACTIONS(4596), 5, + sym_block_comment, + ACTIONS(1520), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [80754] = 6, - ACTIONS(389), 1, + [73068] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5153), 1, + anon_sym_RBRACK, + ACTIONS(4636), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2340), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3322), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [73091] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(5194), 1, - anon_sym_if, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5183), 1, + anon_sym_SEMI, + STATE(626), 1, + sym_declaration_list, + STATE(2877), 1, + sym_where_clause, + STATE(2341), 2, + sym_line_comment, sym_block_comment, + [73120] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5185), 1, + anon_sym_SEMI, + STATE(616), 1, + sym_declaration_list, + STATE(2879), 1, + sym_where_clause, + STATE(2342), 2, sym_line_comment, - STATE(1658), 2, - sym_if_expression, - sym_block, - [80775] = 7, - ACTIONS(4790), 1, + sym_block_comment, + [73149] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5196), 1, + ACTIONS(5187), 1, anon_sym_SEMI, - STATE(1156), 1, + STATE(597), 1, sym_declaration_list, - STATE(2856), 1, + STATE(2704), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2343), 2, + sym_line_comment, sym_block_comment, + [73178] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5189), 1, + anon_sym_SEMI, + STATE(572), 1, + sym_declaration_list, + STATE(2888), 1, + sym_where_clause, + STATE(2344), 2, sym_line_comment, - [80798] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [73207] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1464), 1, + anon_sym_DOT_DOT, + STATE(2345), 2, sym_line_comment, - ACTIONS(4457), 2, + sym_block_comment, + ACTIONS(1466), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [80817] = 3, - ACTIONS(3), 2, - sym_block_comment, + [73228] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2346), 2, sym_line_comment, - ACTIONS(4692), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3428), 4, - anon_sym_RPAREN, + sym_block_comment, + ACTIONS(3254), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73247] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3334), 2, anon_sym_PLUS, anon_sym_DASH_GT, + ACTIONS(4650), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5170), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [80832] = 7, - ACTIONS(4790), 1, + STATE(2347), 2, + sym_line_comment, + sym_block_comment, + [73270] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5200), 1, + ACTIONS(5191), 1, anon_sym_SEMI, - STATE(1152), 1, + STATE(701), 1, sym_declaration_list, - STATE(2855), 1, + STATE(2913), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2348), 2, + sym_line_comment, sym_block_comment, + [73299] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4482), 1, + anon_sym_EQ, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(5193), 1, + anon_sym_COMMA, + ACTIONS(5195), 1, + anon_sym_GT, + STATE(2746), 1, + aux_sym_type_parameters_repeat1, + STATE(2753), 1, + sym_trait_bounds, + STATE(2349), 2, sym_line_comment, - [80855] = 7, - ACTIONS(4790), 1, + sym_block_comment, + [73328] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5202), 1, + ACTIONS(5197), 1, anon_sym_SEMI, - STATE(1262), 1, + STATE(1286), 1, sym_declaration_list, - STATE(2893), 1, + STATE(2934), 1, sym_where_clause, - ACTIONS(3), 2, + STATE(2350), 2, + sym_line_comment, sym_block_comment, + [73357] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4516), 1, + anon_sym_DOT_DOT, + STATE(2351), 2, sym_line_comment, - [80878] = 4, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4896), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4514), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [73378] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2352), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3705), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [80895] = 7, - ACTIONS(4790), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - ACTIONS(4808), 1, + [73396] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5204), 1, + ACTIONS(5199), 1, anon_sym_SEMI, - STATE(1268), 1, - sym_declaration_list, - STATE(2894), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [80918] = 6, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(5206), 1, - anon_sym_if, - STATE(3449), 1, + STATE(1393), 1, + sym_block, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2353), 2, sym_line_comment, - STATE(479), 2, - sym_if_expression, - sym_block, - [80939] = 4, - ACTIONS(4612), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4610), 2, + [73422] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4975), 1, + anon_sym_COLON, + ACTIONS(4977), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80956] = 7, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5182), 1, - anon_sym_LBRACE, - STATE(591), 1, - sym_enum_variant_list, - STATE(2605), 1, - sym_type_parameters, - STATE(3059), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2354), 2, sym_line_comment, - [80979] = 7, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(5208), 1, - sym_identifier, - ACTIONS(5210), 1, - anon_sym_ref, - ACTIONS(5212), 1, - sym_mutable_specifier, - ACTIONS(5214), 1, - anon_sym_move, - STATE(149), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [73446] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_move, + STATE(469), 1, + sym_block, + STATE(3490), 1, + sym_label, + STATE(2355), 2, sym_line_comment, - [81002] = 3, - ACTIONS(1600), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1602), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [81017] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, + [73472] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, anon_sym_COLON, - STATE(741), 1, - sym_declaration_list, - STATE(2619), 1, + ACTIONS(5203), 1, + anon_sym_COMMA, + ACTIONS(5205), 1, + anon_sym_GT, + STATE(2748), 1, + aux_sym_type_parameters_repeat1, + STATE(2800), 1, sym_trait_bounds, - STATE(2993), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(2356), 2, + sym_line_comment, sym_block_comment, + [73498] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(5207), 1, + anon_sym_move, + STATE(1613), 1, + sym_block, + STATE(3489), 1, + sym_label, + STATE(2357), 2, sym_line_comment, - [81040] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + sym_block_comment, + [73524] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5216), 1, + ACTIONS(5209), 1, anon_sym_SEMI, - STATE(613), 1, - sym_declaration_list, - STATE(2815), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(543), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2358), 2, + sym_line_comment, sym_block_comment, + [73550] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2359), 2, sym_line_comment, - [81063] = 7, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(3697), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - ACTIONS(4796), 1, + [73568] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5218), 1, + ACTIONS(5211), 1, anon_sym_SEMI, - STATE(609), 1, - sym_declaration_list, - STATE(2660), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(1421), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2360), 2, sym_line_comment, - [81086] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + sym_block_comment, + [73594] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5220), 1, + ACTIONS(5213), 1, anon_sym_SEMI, - STATE(594), 1, - sym_declaration_list, - STATE(2661), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(1416), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2361), 2, + sym_line_comment, sym_block_comment, + [73620] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5215), 1, + anon_sym_RPAREN, + ACTIONS(5217), 1, + anon_sym_COMMA, + STATE(2832), 1, + aux_sym_parameters_repeat1, + ACTIONS(4351), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2362), 2, sym_line_comment, - [81109] = 3, - ACTIONS(1620), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, + [73644] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2363), 2, sym_line_comment, - ACTIONS(1622), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [81124] = 7, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(3701), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - ACTIONS(4796), 1, + [73662] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5222), 1, - anon_sym_SEMI, - STATE(616), 1, - sym_declaration_list, - STATE(2814), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(1287), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2364), 2, + sym_line_comment, sym_block_comment, + [73688] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2365), 2, sym_line_comment, - [81147] = 7, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(5219), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(4808), 1, + [73706] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5224), 1, + ACTIONS(5221), 1, anon_sym_SEMI, - STATE(1296), 1, - sym_declaration_list, - STATE(2900), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(564), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2366), 2, + sym_line_comment, sym_block_comment, + [73732] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + STATE(1046), 1, + sym_parameters, + STATE(1929), 1, + sym_type_arguments, + STATE(2367), 2, sym_line_comment, - [81170] = 6, - ACTIONS(1144), 1, - anon_sym_DOT_DOT, - ACTIONS(4916), 1, - sym_identifier, - ACTIONS(4922), 1, - anon_sym_ref, - ACTIONS(4924), 1, - sym_mutable_specifier, - ACTIONS(3), 2, sym_block_comment, + [73758] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(5223), 1, + anon_sym_SEMI, + STATE(1121), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2368), 2, sym_line_comment, - STATE(3089), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [81191] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + sym_block_comment, + [73784] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5226), 1, + ACTIONS(5225), 1, anon_sym_SEMI, - STATE(753), 1, - sym_declaration_list, - STATE(2700), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(1353), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2369), 2, + sym_line_comment, sym_block_comment, + [73810] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2370), 2, sym_line_comment, - [81214] = 7, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(5227), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(4796), 1, + [73828] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5228), 1, - anon_sym_SEMI, - STATE(750), 1, - sym_declaration_list, - STATE(2699), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(1123), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2371), 2, + sym_line_comment, sym_block_comment, + [73854] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5229), 1, + anon_sym_COMMA, + STATE(2409), 1, + aux_sym_where_clause_repeat1, + STATE(2372), 2, sym_line_comment, - [81237] = 7, - ACTIONS(4786), 1, + sym_block_comment, + ACTIONS(3360), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, - anon_sym_where, - STATE(545), 1, - sym_field_declaration_list, - STATE(2479), 1, - sym_type_parameters, - STATE(2935), 1, - sym_where_clause, - ACTIONS(3), 2, + anon_sym_SQUOTE, + [73876] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1146), 1, + anon_sym_RPAREN, + ACTIONS(5231), 1, + anon_sym_COMMA, + STATE(2887), 1, + aux_sym_parameters_repeat1, + ACTIONS(4351), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2373), 2, + sym_line_comment, sym_block_comment, + [73900] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(5233), 1, + anon_sym_move, + STATE(1443), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2374), 2, sym_line_comment, - [81260] = 7, - ACTIONS(4944), 1, + sym_block_comment, + [73926] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4351), 2, anon_sym_COLON, - ACTIONS(4946), 1, - anon_sym_LT, - ACTIONS(5230), 1, + anon_sym_PIPE, + STATE(2375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3214), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73946] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5235), 5, anon_sym_SEMI, - ACTIONS(5232), 1, + anon_sym_RBRACE, anon_sym_EQ, - STATE(2485), 1, - sym_type_parameters, - STATE(3213), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COMMA, + anon_sym_where, + [73964] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2377), 2, sym_line_comment, - [81283] = 7, - ACTIONS(4790), 1, + sym_block_comment, + ACTIONS(5237), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(4808), 1, + [73982] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5234), 1, + ACTIONS(5239), 1, anon_sym_SEMI, - STATE(1305), 1, - sym_declaration_list, - STATE(2901), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(1241), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2378), 2, + sym_line_comment, sym_block_comment, + [74008] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(5241), 1, + anon_sym_SEMI, + STATE(1412), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2379), 2, sym_line_comment, - [81306] = 7, - ACTIONS(4790), 1, + sym_block_comment, + [74034] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5243), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, + [74052] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2381), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3154), 5, + anon_sym_COLON, anon_sym_PLUS, - ACTIONS(5236), 1, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [74070] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(5245), 1, anon_sym_SEMI, - STATE(1308), 1, - sym_declaration_list, - STATE(2904), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(624), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2382), 2, sym_line_comment, - [81329] = 4, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4780), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [74096] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2383), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(5247), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [81346] = 7, - ACTIONS(4790), 1, + [74114] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5249), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(4796), 1, + [74132] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5238), 1, + STATE(1594), 1, + sym_block, + STATE(3489), 1, + sym_label, + STATE(2385), 2, + sym_line_comment, + sym_block_comment, + [74158] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5251), 1, anon_sym_SEMI, - STATE(573), 1, - sym_declaration_list, - STATE(2822), 1, - sym_where_clause, - ACTIONS(3), 2, + ACTIONS(5253), 1, + anon_sym_COLON, + ACTIONS(5255), 1, + anon_sym_EQ, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5259), 1, + anon_sym_else, + STATE(2386), 2, + sym_line_comment, sym_block_comment, + [74184] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(5261), 1, + anon_sym_SEMI, + STATE(677), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2387), 2, sym_line_comment, - [81369] = 3, - ACTIONS(1562), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, + [74210] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + STATE(1929), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2388), 2, sym_line_comment, - ACTIONS(1564), 5, - anon_sym_EQ_GT, + sym_block_comment, + [74236] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5263), 1, + anon_sym_RPAREN, + ACTIONS(5266), 1, + anon_sym_COMMA, + STATE(2832), 1, + aux_sym_parameters_repeat1, + ACTIONS(4351), 2, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [81384] = 7, - ACTIONS(3102), 1, - anon_sym_PLUS, - ACTIONS(4944), 1, + STATE(2389), 2, + sym_line_comment, + sym_block_comment, + [74260] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, anon_sym_COLON, - ACTIONS(5240), 1, + ACTIONS(5081), 1, anon_sym_COMMA, - ACTIONS(5242), 1, + ACTIONS(5083), 1, anon_sym_GT, - STATE(2920), 1, - sym_trait_bounds, - STATE(2928), 1, + STATE(2736), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2800), 1, + sym_trait_bounds, + STATE(2390), 2, sym_line_comment, - [81407] = 4, - ACTIONS(5244), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [74286] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5269), 1, + anon_sym_EQ, + STATE(2391), 2, sym_line_comment, - ACTIONS(4692), 2, + sym_block_comment, + ACTIONS(3398), 4, + anon_sym_PLUS, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_GT, + [74306] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4578), 1, anon_sym_PIPE, - ACTIONS(3428), 3, + ACTIONS(5271), 1, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [81424] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, + ACTIONS(5273), 1, anon_sym_COLON, - STATE(1087), 1, - sym_declaration_list, - STATE(2615), 1, - sym_trait_bounds, - STATE(3118), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5275), 1, + anon_sym_EQ, + ACTIONS(5277), 1, + anon_sym_else, + STATE(2392), 2, sym_line_comment, - [81447] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5247), 1, - anon_sym_SEMI, - STATE(1093), 1, - sym_declaration_list, - STATE(2813), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + [74332] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4602), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2393), 2, sym_line_comment, - [81470] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5249), 1, - anon_sym_SEMI, - STATE(1310), 1, - sym_declaration_list, - STATE(2905), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(3600), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [74352] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(5279), 1, + anon_sym_SEMI, + STATE(545), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2394), 2, sym_line_comment, - [81493] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4684), 2, + [74378] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3214), 1, + anon_sym_PLUS, + ACTIONS(4351), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3478), 4, + ACTIONS(5281), 2, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, anon_sym_COMMA, - [81508] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5117), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + [74400] = 8, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5286), 1, + aux_sym_line_comment_token1, + ACTIONS(5288), 1, + aux_sym_line_comment_token3, + ACTIONS(5290), 1, + sym__inner_line_doc_comment, + ACTIONS(5292), 1, + sym__outer_line_doc_comment, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + STATE(3347), 1, + sym__line_doc_comment, + STATE(2396), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [81527] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(5251), 1, - anon_sym_if, - STATE(3218), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [74426] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2397), 2, sym_line_comment, - STATE(299), 2, - sym_if_expression, - sym_block, - [81548] = 6, - ACTIONS(4023), 1, - anon_sym_COLON_COLON, - ACTIONS(5240), 1, + sym_block_comment, + ACTIONS(5296), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(5242), 1, - anon_sym_GT, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + anon_sym_where, + [74444] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2398), 2, + sym_line_comment, sym_block_comment, + ACTIONS(5298), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [74462] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2399), 2, sym_line_comment, - ACTIONS(3298), 2, - anon_sym_PLUS, - anon_sym_as, - [81569] = 3, - ACTIONS(4582), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(3691), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [74480] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2400), 2, sym_line_comment, - ACTIONS(4580), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [81584] = 4, - ACTIONS(5175), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(5300), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [74498] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2401), 2, sym_line_comment, - ACTIONS(4684), 2, + sym_block_comment, + ACTIONS(5302), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3478), 3, + anon_sym_where, + [74516] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5304), 1, + anon_sym_RBRACK, + ACTIONS(3600), 2, anon_sym_SEMI, anon_sym_PLUS, - anon_sym_DASH_GT, - [81601] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + ACTIONS(4602), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2402), 2, + sym_line_comment, + sym_block_comment, + [74538] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5253), 1, + ACTIONS(5307), 1, anon_sym_SEMI, - STATE(1107), 1, - sym_declaration_list, - STATE(2799), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(1160), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2403), 2, sym_line_comment, - [81624] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [74564] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5255), 1, + ACTIONS(5309), 1, anon_sym_SEMI, - STATE(1112), 1, - sym_declaration_list, - STATE(2796), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(730), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2404), 2, sym_line_comment, - [81647] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + sym_block_comment, + [74590] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5257), 1, + ACTIONS(5311), 1, anon_sym_SEMI, - STATE(582), 1, - sym_declaration_list, - STATE(2875), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(1383), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2405), 2, sym_line_comment, - [81670] = 6, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, + sym_block_comment, + [74616] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(5259), 1, - anon_sym_if, - STATE(3399), 1, + ACTIONS(4840), 1, + anon_sym_LBRACE, + ACTIONS(5313), 1, + anon_sym_SEMI, + STATE(1357), 1, + sym_block, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2406), 2, sym_line_comment, - STATE(1117), 2, - sym_if_expression, - sym_block, - [81691] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5151), 1, + sym_block_comment, + [74642] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(4480), 1, + anon_sym_COLON, + STATE(1929), 1, + sym_type_arguments, + STATE(2490), 1, + sym_trait_bounds, + STATE(2407), 2, + sym_line_comment, sym_block_comment, + [74668] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5317), 1, + anon_sym_COMMA, + STATE(2372), 1, + aux_sym_where_clause_repeat1, + STATE(2408), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5077), 2, - anon_sym_RPAREN, + sym_block_comment, + ACTIONS(5315), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [74690] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5321), 1, anon_sym_COMMA, - [81710] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5117), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + ACTIONS(5319), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2409), 3, + sym_line_comment, sym_block_comment, + aux_sym_where_clause_repeat1, + [74710] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5324), 1, + anon_sym_RPAREN, + ACTIONS(5326), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_parameters_repeat1, + ACTIONS(4351), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2410), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5077), 2, + sym_block_comment, + [74734] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1185), 1, anon_sym_RPAREN, + ACTIONS(5328), 1, anon_sym_COMMA, - [81729] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5261), 1, - anon_sym_SEMI, - STATE(572), 1, - sym_declaration_list, - STATE(2883), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(2775), 1, + aux_sym_parameters_repeat1, + ACTIONS(4351), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2411), 2, + sym_line_comment, sym_block_comment, + [74758] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4165), 1, + anon_sym_LBRACE, + ACTIONS(4995), 1, + anon_sym_STAR, + STATE(2742), 1, + sym_use_list, + ACTIONS(4993), 2, + sym_identifier, + sym_super, + STATE(2412), 2, sym_line_comment, - [81752] = 7, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(5263), 1, - anon_sym_COMMA, - ACTIONS(5265), 1, - anon_sym_GT, - STATE(2835), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2920), 1, - sym_trait_bounds, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [74782] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2413), 2, sym_line_comment, - [81775] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + sym_block_comment, + ACTIONS(4895), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5267), 1, + anon_sym_RBRACE, + anon_sym_LBRACK, + [74800] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5330), 1, anon_sym_SEMI, - STATE(621), 1, - sym_declaration_list, - STATE(2809), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5332), 1, + anon_sym_COLON, + ACTIONS(5334), 1, + anon_sym_EQ, + ACTIONS(5336), 1, + anon_sym_else, + STATE(2414), 2, sym_line_comment, - [81798] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [74826] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5269), 1, + ACTIONS(5338), 1, anon_sym_SEMI, - STATE(1365), 1, - sym_declaration_list, - STATE(2917), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(510), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2415), 2, sym_line_comment, - [81821] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [74852] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5271), 1, - anon_sym_SEMI, - STATE(1217), 1, - sym_declaration_list, - STATE(2709), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(1317), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2416), 2, sym_line_comment, - [81844] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + sym_block_comment, + [74878] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5273), 1, + ACTIONS(5340), 1, anon_sym_SEMI, - STATE(622), 1, - sym_declaration_list, - STATE(2805), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(617), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2417), 2, sym_line_comment, - [81867] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + sym_block_comment, + [74904] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5275), 1, + ACTIONS(5342), 1, anon_sym_SEMI, - STATE(727), 1, - sym_declaration_list, - STATE(2697), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(663), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2418), 2, sym_line_comment, - [81890] = 4, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3428), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4692), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5244), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [81907] = 4, - ACTIONS(4531), 1, + [74930] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4977), 1, anon_sym_COLON_COLON, - ACTIONS(4892), 1, - anon_sym_for, - ACTIONS(3), 2, + ACTIONS(5025), 1, + anon_sym_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2419), 2, + sym_line_comment, sym_block_comment, + [74954] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2420), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3676), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [81924] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, anon_sym_COLON, - STATE(1192), 1, - sym_declaration_list, - STATE(2637), 1, - sym_trait_bounds, - STATE(3063), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [81947] = 7, - ACTIONS(4790), 1, + anon_sym_EQ, anon_sym_where, - ACTIONS(4808), 1, + [74972] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4165), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5277), 1, - anon_sym_SEMI, - STATE(1186), 1, - sym_declaration_list, - STATE(2733), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5346), 1, + anon_sym_STAR, + STATE(2734), 1, + sym_use_list, + ACTIONS(5344), 2, + sym_identifier, + sym_super, + STATE(2421), 2, sym_line_comment, - [81970] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_COLON, - STATE(514), 1, - sym_declaration_list, - STATE(2586), 1, - sym_trait_bounds, - STATE(2949), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [81993] = 7, - ACTIONS(4574), 1, - anon_sym_EQ, - ACTIONS(4944), 1, + [74996] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4578), 1, + anon_sym_PIPE, + ACTIONS(5348), 1, + anon_sym_SEMI, + ACTIONS(5350), 1, anon_sym_COLON, - ACTIONS(5279), 1, - anon_sym_COMMA, - ACTIONS(5281), 1, - anon_sym_GT, - STATE(2705), 1, - aux_sym_type_parameters_repeat1, - STATE(2918), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5352), 1, + anon_sym_EQ, + ACTIONS(5354), 1, + anon_sym_else, + STATE(2422), 2, sym_line_comment, - [82016] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [75022] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5283), 1, + ACTIONS(5356), 1, anon_sym_SEMI, - STATE(1363), 1, - sym_declaration_list, - STATE(2916), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(685), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2423), 2, sym_line_comment, - [82039] = 7, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5188), 1, - anon_sym_LBRACE, - STATE(1180), 1, - sym_enum_variant_list, - STATE(2634), 1, - sym_type_parameters, - STATE(3113), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + [75048] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5281), 1, + anon_sym_RBRACK, + ACTIONS(3214), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4351), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2424), 2, sym_line_comment, - [82062] = 4, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4881), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [75070] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2425), 2, sym_line_comment, - ACTIONS(3298), 4, + sym_block_comment, + ACTIONS(3709), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [82079] = 7, - ACTIONS(4790), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5285), 1, - anon_sym_SEMI, - STATE(521), 1, - sym_declaration_list, - STATE(2925), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + [75088] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5360), 1, + anon_sym_COLON_COLON, + ACTIONS(5362), 1, + anon_sym_as, + STATE(2426), 2, sym_line_comment, - [82102] = 7, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1172), 1, - sym_field_declaration_list, - STATE(2632), 1, - sym_type_parameters, - STATE(3133), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [82125] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5287), 1, + ACTIONS(5358), 3, anon_sym_SEMI, - STATE(634), 1, - sym_declaration_list, - STATE(2680), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_RBRACE, + anon_sym_COMMA, + [75110] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5366), 1, + anon_sym_COLON_COLON, + ACTIONS(5368), 1, + anon_sym_as, + STATE(2427), 2, sym_line_comment, - [82148] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5289), 1, - anon_sym_SEMI, - STATE(646), 1, - sym_declaration_list, - STATE(2683), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [82171] = 7, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5291), 1, + ACTIONS(5364), 3, anon_sym_SEMI, - STATE(642), 1, - sym_declaration_list, - STATE(2681), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [82194] = 5, - ACTIONS(5293), 1, - anon_sym_RPAREN, - ACTIONS(5295), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2801), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + [75132] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5368), 1, + anon_sym_as, + ACTIONS(5370), 1, + anon_sym_COLON_COLON, + STATE(2428), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - [82212] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5297), 5, + ACTIONS(5364), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [82224] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5079), 1, - anon_sym_COLON, - ACTIONS(5081), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [82242] = 6, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, + [75154] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5368), 1, + anon_sym_as, + ACTIONS(5372), 1, anon_sym_COLON_COLON, - ACTIONS(4572), 1, - anon_sym_COLON, - STATE(1908), 1, - sym_type_arguments, - STATE(2602), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, + STATE(2429), 2, sym_line_comment, - [82262] = 5, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(5085), 1, - anon_sym_STAR, - STATE(2710), 1, - sym_use_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5083), 2, - sym_identifier, - sym_super, - [82280] = 6, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4930), 1, - anon_sym_PLUS, - STATE(1626), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(5364), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [75176] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5374), 1, + anon_sym_RPAREN, + ACTIONS(5376), 1, + anon_sym_COLON, + ACTIONS(5378), 1, + anon_sym_COMMA, + STATE(2778), 1, + aux_sym_slice_pattern_repeat1, + STATE(2430), 2, + sym_line_comment, sym_block_comment, + [75202] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1197), 1, + anon_sym_RPAREN, + ACTIONS(5380), 1, + anon_sym_COMMA, + STATE(2805), 1, + aux_sym_parameters_repeat1, + ACTIONS(4351), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2431), 2, sym_line_comment, - [82300] = 2, - ACTIONS(3), 2, sym_block_comment, + [75226] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2432), 2, sym_line_comment, - ACTIONS(5299), 5, + sym_block_comment, + ACTIONS(5382), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [82312] = 4, - ACTIONS(5303), 1, + [75244] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5384), 1, + anon_sym_RPAREN, + ACTIONS(5386), 1, anon_sym_COMMA, - STATE(2389), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, + STATE(2819), 1, + aux_sym_parameters_repeat1, + ACTIONS(4351), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2433), 2, + sym_line_comment, sym_block_comment, + [75268] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2434), 2, sym_line_comment, - ACTIONS(5301), 3, + sym_block_comment, + ACTIONS(5388), 5, anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75286] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, + ACTIONS(3396), 1, anon_sym_SQUOTE, - [82328] = 6, - ACTIONS(3398), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + STATE(1621), 1, + sym_block, + STATE(3489), 1, + sym_label, + STATE(2435), 2, + sym_line_comment, + sym_block_comment, + [75312] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4928), 1, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(5305), 1, + ACTIONS(5390), 1, anon_sym_SEMI, - STATE(1336), 1, + STATE(1268), 1, sym_block, - STATE(3447), 1, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, + STATE(2436), 2, + sym_line_comment, sym_block_comment, + [75338] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3600), 1, + anon_sym_PLUS, + ACTIONS(4602), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5304), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2437), 2, sym_line_comment, - [82348] = 6, - ACTIONS(3398), 1, + sym_block_comment, + [75360] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4912), 1, + ACTIONS(4832), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5392), 1, anon_sym_SEMI, - STATE(627), 1, + STATE(646), 1, sym_block, - STATE(3444), 1, + STATE(3485), 1, sym_label, - ACTIONS(3), 2, + STATE(2438), 2, + sym_line_comment, sym_block_comment, + [75386] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4834), 1, + anon_sym_PLUS, + STATE(1647), 1, + sym_block, + STATE(3489), 1, + sym_label, + STATE(2439), 2, sym_line_comment, - [82368] = 5, - ACTIONS(5309), 1, - anon_sym_RPAREN, - ACTIONS(5311), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [75412] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4832), 1, + anon_sym_LBRACE, + ACTIONS(5394), 1, + anon_sym_SEMI, + STATE(760), 1, + sym_block, + STATE(3485), 1, + sym_label, + STATE(2440), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - [82386] = 5, - ACTIONS(4299), 1, + sym_block_comment, + [75438] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(5315), 1, - anon_sym_STAR, - STATE(2704), 1, - sym_use_list, - ACTIONS(3), 2, + ACTIONS(5396), 1, + anon_sym_SEMI, + STATE(1338), 1, + sym_block, + STATE(3488), 1, + sym_label, + STATE(2441), 2, + sym_line_comment, + sym_block_comment, + [75464] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + STATE(1579), 1, + sym_parameters, + STATE(1929), 1, + sym_type_arguments, + STATE(2442), 2, + sym_line_comment, sym_block_comment, + [75490] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4482), 1, + anon_sym_EQ, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(2753), 1, + sym_trait_bounds, + ACTIONS(5398), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2443), 2, sym_line_comment, - ACTIONS(5313), 2, - sym_identifier, - sym_super, - [82404] = 2, - ACTIONS(3), 2, sym_block_comment, + [75514] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2444), 2, sym_line_comment, - ACTIONS(5317), 5, + sym_block_comment, + ACTIONS(5400), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [82416] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3254), 5, + [75532] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1378), 1, anon_sym_COLON, + STATE(2445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3154), 3, anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - anon_sym_as, - [82428] = 6, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4930), 1, - anon_sym_PLUS, - STATE(1131), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, + [75551] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5402), 1, + anon_sym_COLON_COLON, + STATE(2446), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4556), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [75570] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(600), 1, + sym_declaration_list, + STATE(3152), 1, + sym_where_clause, + STATE(2447), 2, sym_line_comment, - [82448] = 6, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(5319), 1, + sym_block_comment, + [75593] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5404), 1, anon_sym_COMMA, - ACTIONS(5321), 1, - anon_sym_GT, - STATE(2707), 1, - aux_sym_type_parameters_repeat1, - STATE(2920), 1, - sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(4035), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2448), 3, + sym_line_comment, sym_block_comment, + aux_sym_arguments_repeat1, + [75612] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5407), 1, + anon_sym_STAR_SLASH, + ACTIONS(5409), 1, + sym__outer_block_doc_comment, + ACTIONS(5411), 1, + sym__inner_block_doc_comment, + STATE(3343), 1, + sym__block_doc_comment, + STATE(2449), 2, sym_line_comment, - [82468] = 6, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4930), 1, + sym_block_comment, + [75635] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4834), 1, anon_sym_PLUS, - STATE(1322), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(5413), 1, + anon_sym_SEMI, + STATE(3307), 1, + sym_where_clause, + STATE(2450), 2, + sym_line_comment, sym_block_comment, + [75658] = 5, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(5415), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2451), 2, sym_line_comment, - [82488] = 3, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(5417), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [75677] = 5, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(5419), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2452), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3298), 3, - anon_sym_RPAREN, + sym_block_comment, + ACTIONS(5421), 3, anon_sym_PLUS, - anon_sym_COMMA, - [82502] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, + anon_sym_STAR, + anon_sym_QMARK, + [75696] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(5323), 1, - anon_sym_SEMI, - STATE(516), 1, - sym_block, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [82522] = 6, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4912), 1, - anon_sym_LBRACE, - ACTIONS(5325), 1, - anon_sym_SEMI, - STATE(560), 1, + STATE(1614), 1, sym_block, - STATE(3444), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2453), 2, sym_line_comment, - [82542] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, + sym_block_comment, + [75719] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - anon_sym_SEMI, - STATE(1122), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1617), 1, sym_block, - STATE(3447), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2454), 2, sym_line_comment, - [82562] = 6, - ACTIONS(4732), 1, - anon_sym_PIPE, - ACTIONS(5329), 1, - anon_sym_SEMI, - ACTIONS(5331), 1, - anon_sym_COLON, - ACTIONS(5333), 1, - anon_sym_EQ, - ACTIONS(5335), 1, - anon_sym_else, - ACTIONS(3), 2, sym_block_comment, + [75742] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5423), 1, + anon_sym_DQUOTE, + STATE(2482), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2455), 2, sym_line_comment, - [82582] = 6, - ACTIONS(327), 1, + sym_block_comment, + [75763] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4930), 1, - anon_sym_PLUS, - STATE(1254), 1, + STATE(307), 1, sym_block, - STATE(3399), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, + STATE(2456), 2, + sym_line_comment, sym_block_comment, + [75786] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(593), 1, + sym_declaration_list, + STATE(3122), 1, + sym_where_clause, + STATE(2457), 2, sym_line_comment, - [82602] = 6, - ACTIONS(3258), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, + sym_block_comment, + [75809] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4443), 1, + ACTIONS(4367), 1, anon_sym_COLON_COLON, - STATE(1044), 1, - sym_parameters, - STATE(1908), 1, + ACTIONS(5427), 1, + anon_sym_for, + STATE(1929), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2458), 2, sym_line_comment, - [82622] = 5, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5081), 1, + sym_block_comment, + [75832] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, anon_sym_COLON_COLON, - ACTIONS(5121), 1, - anon_sym_COLON, - ACTIONS(3), 2, + ACTIONS(5429), 1, + anon_sym_for, + STATE(1929), 1, + sym_type_arguments, + STATE(2459), 2, + sym_line_comment, sym_block_comment, + [75855] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5431), 1, + anon_sym_SEMI, + STATE(3283), 1, + sym_where_clause, + STATE(2460), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [82640] = 6, - ACTIONS(3398), 1, + sym_block_comment, + [75878] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4928), 1, + ACTIONS(4840), 1, anon_sym_LBRACE, - ACTIONS(5337), 1, - anon_sym_SEMI, - STATE(1076), 1, + STATE(2904), 1, sym_block, - STATE(3447), 1, + STATE(3488), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2461), 2, sym_line_comment, - [82660] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, + sym_block_comment, + [75901] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(5339), 1, - anon_sym_SEMI, - STATE(1381), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(470), 1, sym_block, - STATE(3447), 1, + STATE(3490), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2462), 2, sym_line_comment, - [82680] = 2, - ACTIONS(3), 2, sym_block_comment, + [75924] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5433), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_for, + ACTIONS(5437), 1, + anon_sym_loop, + ACTIONS(5439), 1, + anon_sym_while, + STATE(2463), 2, sym_line_comment, - ACTIONS(5341), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [82692] = 5, - ACTIONS(5343), 1, + sym_block_comment, + [75947] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5441), 1, anon_sym_RPAREN, - ACTIONS(5346), 1, + ACTIONS(5443), 1, anon_sym_COMMA, - STATE(2801), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + STATE(2728), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2464), 2, + sym_line_comment, sym_block_comment, + [75970] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + ACTIONS(5445), 1, + anon_sym_for, + STATE(1929), 1, + sym_type_arguments, + STATE(2465), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - [82710] = 6, - ACTIONS(327), 1, + sym_block_comment, + [75993] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LT2, + ACTIONS(3933), 1, + anon_sym_COLON_COLON, + ACTIONS(4646), 1, + anon_sym_BANG, + STATE(1559), 1, + sym_type_arguments, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + [76016] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(5349), 1, - anon_sym_move, - STATE(1422), 1, + STATE(1640), 1, sym_block, - STATE(3399), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2467), 2, sym_line_comment, - [82730] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, + sym_block_comment, + [76039] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(5351), 1, - anon_sym_SEMI, - STATE(1260), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(3252), 1, sym_block, - STATE(3447), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, + STATE(2468), 2, + sym_line_comment, + sym_block_comment, + [76062] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + ACTIONS(5447), 1, + anon_sym_for, + STATE(1929), 1, + sym_type_arguments, + STATE(2469), 2, + sym_line_comment, sym_block_comment, + [76085] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_LT, + STATE(2213), 1, + sym_parameters, + STATE(3136), 1, + sym_type_parameters, + STATE(2470), 2, sym_line_comment, - [82750] = 2, - ACTIONS(3), 2, sym_block_comment, + [76108] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2918), 1, + anon_sym_POUND, + ACTIONS(5449), 1, + sym_identifier, + STATE(1449), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2471), 2, sym_line_comment, - ACTIONS(5353), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [82762] = 6, - ACTIONS(389), 1, + sym_block_comment, + [76131] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4930), 1, - anon_sym_PLUS, - STATE(1612), 1, + STATE(3247), 1, sym_block, - STATE(3448), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2472), 2, sym_line_comment, - [82782] = 4, - ACTIONS(3298), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [76154] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1346), 1, + sym_declaration_list, + STATE(2987), 1, + sym_where_clause, + STATE(2473), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5355), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [82798] = 2, - ACTIONS(3), 2, sym_block_comment, + [76177] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5451), 1, + anon_sym_LPAREN, + ACTIONS(5453), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + anon_sym_LBRACK, + STATE(1951), 1, + sym_delim_token_tree, + STATE(2474), 2, sym_line_comment, - ACTIONS(5358), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [82810] = 2, - ACTIONS(3), 2, sym_block_comment, + [76200] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5457), 1, + anon_sym_DQUOTE, + ACTIONS(5459), 2, + sym__string_content, + sym_escape_sequence, + STATE(2475), 3, sym_line_comment, - ACTIONS(3793), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [82822] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3768), 5, - anon_sym_SEMI, + aux_sym_string_literal_repeat1, + [76219] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [82834] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5360), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [82846] = 6, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(4912), 1, + STATE(3440), 1, + sym_label, + STATE(3505), 1, + sym_block, + STATE(2476), 2, + sym_line_comment, + sym_block_comment, + [76242] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, - anon_sym_SEMI, - STATE(506), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1528), 1, sym_block, - STATE(3444), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, + STATE(2477), 2, + sym_line_comment, sym_block_comment, + [76265] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5462), 1, + anon_sym_SEMI, + STATE(3486), 1, + sym_where_clause, + STATE(2478), 2, sym_line_comment, - [82866] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(5364), 1, + sym_block_comment, + [76288] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5464), 1, anon_sym_SEMI, - STATE(1393), 1, - sym_block, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(5466), 1, + anon_sym_EQ, + ACTIONS(5468), 1, + anon_sym_else, + STATE(2479), 2, + sym_line_comment, sym_block_comment, + [76311] = 5, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(5470), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2480), 2, sym_line_comment, - [82886] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, + sym_block_comment, + ACTIONS(5472), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [76330] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(5366), 1, - anon_sym_SEMI, - STATE(586), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1642), 1, sym_block, - STATE(3444), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, + STATE(2481), 2, + sym_line_comment, sym_block_comment, + [76353] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5474), 1, + anon_sym_DQUOTE, + STATE(2475), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2482), 2, sym_line_comment, - [82906] = 6, - ACTIONS(5368), 1, - anon_sym_SEMI, - ACTIONS(5370), 1, + sym_block_comment, + [76374] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LT2, + ACTIONS(5476), 1, + sym_identifier, + ACTIONS(5478), 1, + sym_super, + STATE(1520), 1, + sym_type_arguments, + STATE(2483), 2, + sym_line_comment, + sym_block_comment, + [76397] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, anon_sym_COLON, - ACTIONS(5372), 1, - anon_sym_EQ, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5376), 1, - anon_sym_else, - ACTIONS(3), 2, + STATE(2800), 1, + sym_trait_bounds, + ACTIONS(5480), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2484), 2, + sym_line_comment, sym_block_comment, + [76418] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5451), 1, + anon_sym_LPAREN, + ACTIONS(5453), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + anon_sym_LBRACK, + STATE(1938), 1, + sym_delim_token_tree, + STATE(2485), 2, sym_line_comment, - [82926] = 2, - ACTIONS(3), 2, sym_block_comment, + [76441] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + STATE(3411), 1, + sym_type_arguments, + ACTIONS(5482), 2, + sym_identifier, + sym_super, + STATE(2486), 2, sym_line_comment, - ACTIONS(5378), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [82938] = 2, - ACTIONS(3), 2, sym_block_comment, + [76462] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LT2, + ACTIONS(5476), 1, + sym_identifier, + ACTIONS(5478), 1, + sym_super, + STATE(1512), 1, + sym_type_arguments, + STATE(2487), 2, + sym_line_comment, + sym_block_comment, + [76485] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + ACTIONS(4554), 1, + anon_sym_for, + STATE(1929), 1, + sym_type_arguments, + STATE(2488), 2, + sym_line_comment, + sym_block_comment, + [76508] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + STATE(3385), 1, + sym_type_arguments, + ACTIONS(5482), 2, + sym_identifier, + sym_super, + STATE(2489), 2, sym_line_comment, - ACTIONS(5380), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [82950] = 2, - ACTIONS(3), 2, sym_block_comment, + [76529] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2490), 2, sym_line_comment, - ACTIONS(3779), 5, + sym_block_comment, + ACTIONS(5484), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [82962] = 6, - ACTIONS(3398), 1, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, - anon_sym_SEMI, - STATE(1397), 1, - sym_block, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [76546] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2491), 2, sym_line_comment, - [82982] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5384), 5, + ACTIONS(5486), 4, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_where, - [82994] = 5, - ACTIONS(4574), 1, - anon_sym_EQ, - ACTIONS(4944), 1, - anon_sym_COLON, - STATE(2918), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_SQUOTE, + [76563] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5488), 1, + anon_sym_RPAREN, + ACTIONS(5490), 1, + anon_sym_COMMA, + STATE(2866), 1, + aux_sym_tuple_type_repeat1, + STATE(2492), 2, sym_line_comment, - ACTIONS(5386), 2, + sym_block_comment, + [76586] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5492), 1, anon_sym_COMMA, + ACTIONS(5494), 1, anon_sym_GT, - [83012] = 2, - ACTIONS(3), 2, + STATE(2831), 1, + aux_sym_type_arguments_repeat1, + STATE(2493), 2, + sym_line_comment, sym_block_comment, + [76609] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3002), 1, + anon_sym_PLUS, + ACTIONS(5492), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_GT, + STATE(2831), 1, + aux_sym_type_arguments_repeat1, + STATE(2494), 2, sym_line_comment, - ACTIONS(3772), 5, - anon_sym_SEMI, + sym_block_comment, + [76632] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(4696), 1, anon_sym_where, - [83024] = 6, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, + STATE(647), 1, + sym_field_declaration_list, + STATE(3176), 1, + sym_where_clause, + STATE(2495), 2, + sym_line_comment, + sym_block_comment, + [76655] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - STATE(1908), 1, + ACTIONS(4993), 1, + sym_super, + ACTIONS(5496), 1, + sym_identifier, + STATE(3411), 1, sym_type_arguments, - STATE(1912), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2496), 2, sym_line_comment, - [83044] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, - anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_SEMI, - STATE(764), 1, - sym_block, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [83064] = 5, - ACTIONS(1128), 1, + [76678] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5498), 1, anon_sym_RPAREN, - ACTIONS(5390), 1, + ACTIONS(5500), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2909), 1, + aux_sym_tuple_type_repeat1, + STATE(2497), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - [83082] = 4, - ACTIONS(5394), 1, - anon_sym_COMMA, - STATE(2379), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, sym_block_comment, + [76701] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_LT2, + ACTIONS(4993), 1, + sym_super, + ACTIONS(5502), 1, + sym_identifier, + STATE(1432), 1, + sym_type_arguments, + STATE(2498), 2, sym_line_comment, - ACTIONS(5392), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [83098] = 4, - ACTIONS(5399), 1, - anon_sym_COLON_COLON, - ACTIONS(5401), 1, - anon_sym_as, - ACTIONS(3), 2, sym_block_comment, + [76724] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LT2, + STATE(1576), 1, + sym_parameters, + STATE(1928), 1, + sym_type_arguments, + STATE(2499), 2, sym_line_comment, - ACTIONS(5397), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83114] = 4, - ACTIONS(5405), 1, - anon_sym_COLON_COLON, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(3), 2, sym_block_comment, + [76747] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4993), 1, + sym_super, + ACTIONS(5496), 1, + sym_identifier, + STATE(3385), 1, + sym_type_arguments, + STATE(2500), 2, sym_line_comment, - ACTIONS(5403), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83130] = 4, - ACTIONS(5409), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3712), 2, - anon_sym_SEMI, + [76770] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(4766), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [83146] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4959), 5, - anon_sym_LPAREN, + ACTIONS(5215), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [83158] = 4, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(5412), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5403), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5217), 1, anon_sym_COMMA, - [83174] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, - anon_sym_LBRACE, - ACTIONS(5414), 1, - anon_sym_SEMI, - STATE(597), 1, - sym_block, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2832), 1, + aux_sym_parameters_repeat1, + STATE(2501), 2, sym_line_comment, - [83194] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, - anon_sym_LBRACE, - ACTIONS(5416), 1, - anon_sym_SEMI, - STATE(690), 1, - sym_block, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [83214] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, + [76793] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(5418), 1, - anon_sym_SEMI, - STATE(1147), 1, - sym_block, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [83234] = 4, - ACTIONS(5407), 1, - anon_sym_as, - ACTIONS(5420), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(1253), 1, + sym_declaration_list, + STATE(3009), 1, + sym_where_clause, + STATE(2502), 2, sym_line_comment, - ACTIONS(5403), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83250] = 4, - ACTIONS(5422), 1, - anon_sym_COMMA, - STATE(2379), 1, - aux_sym_where_clause_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3464), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [83266] = 6, - ACTIONS(389), 1, + [76816] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(5424), 1, - anon_sym_move, - STATE(1590), 1, + STATE(1679), 1, sym_block, - STATE(3448), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2503), 2, sym_line_comment, - [83286] = 4, - ACTIONS(5355), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3298), 2, - anon_sym_SEMI, + [76839] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(4445), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [83302] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, - anon_sym_LBRACE, - ACTIONS(5426), 1, + ACTIONS(5504), 1, anon_sym_SEMI, - STATE(705), 1, - sym_block, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(3461), 1, + sym_where_clause, + STATE(2504), 2, sym_line_comment, - [83322] = 6, - ACTIONS(4732), 1, - anon_sym_PIPE, - ACTIONS(5428), 1, - anon_sym_SEMI, - ACTIONS(5430), 1, + sym_block_comment, + [76862] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, anon_sym_COLON, - ACTIONS(5432), 1, + ACTIONS(5506), 1, + anon_sym_SEMI, + ACTIONS(5508), 1, anon_sym_EQ, - ACTIONS(5434), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, + STATE(3269), 1, + sym_trait_bounds, + STATE(2505), 2, sym_line_comment, - [83342] = 6, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_RPAREN, - ACTIONS(5438), 1, - anon_sym_COLON, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2848), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [83362] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, + [76885] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5442), 1, - anon_sym_SEMI, - STATE(1256), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(204), 1, sym_block, - STATE(3447), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2506), 2, sym_line_comment, - [83382] = 4, - ACTIONS(3712), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [76908] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5510), 1, + anon_sym_LBRACE, + ACTIONS(5512), 1, + anon_sym_for, + ACTIONS(5514), 1, + anon_sym_loop, + ACTIONS(5516), 1, + anon_sym_while, + STATE(2507), 2, sym_line_comment, - ACTIONS(4766), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5409), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [83398] = 5, - ACTIONS(1154), 1, - anon_sym_RPAREN, - ACTIONS(5444), 1, - anon_sym_COMMA, - STATE(2863), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [76931] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_declaration_list, + STATE(3181), 1, + sym_where_clause, + STATE(2508), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - [83416] = 3, - ACTIONS(5446), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3406), 4, + [76954] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, + ACTIONS(5518), 1, anon_sym_COMMA, - anon_sym_COLON_COLON, + ACTIONS(5520), 1, anon_sym_GT, - [83430] = 5, - ACTIONS(5448), 1, - anon_sym_RPAREN, - ACTIONS(5450), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2836), 1, + aux_sym_type_arguments_repeat1, + STATE(2509), 2, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - [83448] = 6, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - STATE(1540), 1, - sym_parameters, - STATE(1908), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [76977] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(4989), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2510), 2, sym_line_comment, - [83468] = 2, - ACTIONS(3), 2, sym_block_comment, + [76998] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3002), 1, + anon_sym_PLUS, + ACTIONS(5518), 1, + anon_sym_COMMA, + ACTIONS(5520), 1, + anon_sym_GT, + STATE(2836), 1, + aux_sym_type_arguments_repeat1, + STATE(2511), 2, sym_line_comment, - ACTIONS(3789), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [83480] = 2, - ACTIONS(3), 2, sym_block_comment, + [77021] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + STATE(2512), 2, sym_line_comment, - ACTIONS(5452), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [83492] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4766), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3712), 3, + ACTIONS(5522), 3, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [83506] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3785), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [83518] = 6, - ACTIONS(5374), 1, anon_sym_PIPE, - ACTIONS(5454), 1, - anon_sym_SEMI, - ACTIONS(5456), 1, - anon_sym_COLON, - ACTIONS(5458), 1, - anon_sym_EQ, - ACTIONS(5460), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [83538] = 5, - ACTIONS(1152), 1, - anon_sym_RPAREN, - ACTIONS(5462), 1, + [77040] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5526), 1, anon_sym_COMMA, - STATE(2844), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5524), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2513), 3, sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, - anon_sym_PIPE, - [83556] = 6, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4930), 1, - anon_sym_PLUS, - STATE(1576), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + aux_sym_slice_pattern_repeat1, + [77059] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + STATE(2514), 2, sym_line_comment, - [83576] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5464), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(5524), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, + [77078] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - [83588] = 6, - ACTIONS(910), 1, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1236), 1, + sym_declaration_list, + STATE(3015), 1, + sym_where_clause, + STATE(2515), 2, + sym_line_comment, + sym_block_comment, + [77101] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - ACTIONS(5466), 1, - anon_sym_move, - STATE(473), 1, - sym_block, - STATE(3449), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(3459), 1, + sym_block, + STATE(2516), 2, sym_line_comment, - [83608] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5468), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, + [77124] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - [83620] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(5470), 1, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5529), 1, anon_sym_SEMI, - STATE(1341), 1, - sym_block, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(3449), 1, + sym_where_clause, + STATE(2517), 2, sym_line_comment, - [83640] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, + sym_block_comment, + [77147] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(3274), 1, sym_block, - STATE(3444), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2518), 2, sym_line_comment, - [83660] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, + sym_block_comment, + [77170] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5531), 1, anon_sym_LBRACE, - ACTIONS(5474), 1, - anon_sym_SEMI, - STATE(635), 1, - sym_block, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(5533), 1, + anon_sym_for, + ACTIONS(5535), 1, + anon_sym_loop, + ACTIONS(5537), 1, + anon_sym_while, + STATE(2519), 2, + sym_line_comment, sym_block_comment, + [77193] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5384), 1, + anon_sym_RPAREN, + ACTIONS(5386), 1, + anon_sym_COMMA, + STATE(2819), 1, + aux_sym_parameters_repeat1, + STATE(2520), 2, sym_line_comment, - [83680] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, + sym_block_comment, + [77216] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(5476), 1, - anon_sym_SEMI, - STATE(1226), 1, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1734), 1, sym_block, - STATE(3447), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, + STATE(2521), 2, + sym_line_comment, sym_block_comment, + [77239] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5539), 1, + anon_sym_SEMI, + ACTIONS(5541), 1, + anon_sym_EQ, + ACTIONS(5543), 1, + anon_sym_else, + STATE(2522), 2, sym_line_comment, - [83700] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4912), 1, + sym_block_comment, + [77262] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, anon_sym_LBRACE, - ACTIONS(5478), 1, - anon_sym_SEMI, - STATE(585), 1, - sym_block, - STATE(3444), 1, - sym_label, - ACTIONS(3), 2, + ACTIONS(5549), 1, + anon_sym_LBRACK, + STATE(177), 1, + sym_delim_token_tree, + STATE(2523), 2, + sym_line_comment, sym_block_comment, + [77285] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5021), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2524), 2, sym_line_comment, - [83720] = 6, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(5240), 1, + sym_block_comment, + [77306] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1185), 1, + anon_sym_RPAREN, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5328), 1, anon_sym_COMMA, - ACTIONS(5242), 1, - anon_sym_GT, - STATE(2920), 1, - sym_trait_bounds, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + STATE(2775), 1, + aux_sym_parameters_repeat1, + STATE(2525), 2, + sym_line_comment, sym_block_comment, + [77329] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1146), 1, + anon_sym_RPAREN, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5231), 1, + anon_sym_COMMA, + STATE(2887), 1, + aux_sym_parameters_repeat1, + STATE(2526), 2, sym_line_comment, - [83740] = 6, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, - anon_sym_LBRACE, - ACTIONS(5480), 1, - anon_sym_SEMI, - STATE(1402), 1, - sym_block, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [77352] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5374), 1, + anon_sym_RPAREN, + ACTIONS(5378), 1, + anon_sym_COMMA, + STATE(2778), 1, + aux_sym_slice_pattern_repeat1, + STATE(2527), 2, sym_line_comment, - [83760] = 2, - ACTIONS(3), 2, sym_block_comment, + [77375] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5551), 1, + anon_sym_DQUOTE, + STATE(2537), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2528), 2, sym_line_comment, - ACTIONS(5482), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + sym_block_comment, + [77396] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(2800), 1, + sym_trait_bounds, + ACTIONS(5553), 2, anon_sym_COMMA, - anon_sym_where, - [83772] = 5, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, - anon_sym_LT2, - STATE(1532), 1, - sym_parameters, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, + anon_sym_GT, + STATE(2529), 2, + sym_line_comment, sym_block_comment, + [77417] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(3344), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2530), 2, sym_line_comment, - [83789] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5484), 2, - sym_identifier, - sym_super, - [83804] = 4, + [77440] = 7, ACTIONS(3), 1, - sym_block_comment, - ACTIONS(5486), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(5490), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5081), 1, + anon_sym_COMMA, + ACTIONS(5083), 1, + anon_sym_GT, + ACTIONS(5556), 1, + anon_sym_EQ, + STATE(2736), 1, + aux_sym_type_parameters_repeat1, + STATE(2531), 2, sym_line_comment, - ACTIONS(5488), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83819] = 4, - ACTIONS(3), 1, sym_block_comment, - ACTIONS(5490), 1, - sym_line_comment, - ACTIONS(5492), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(5494), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83834] = 5, - ACTIONS(4441), 1, + [77463] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - ACTIONS(5496), 1, - anon_sym_for, - STATE(1908), 1, + ACTIONS(4993), 1, + sym_super, + ACTIONS(5502), 1, + sym_identifier, + STATE(1425), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2532), 2, sym_line_comment, - [83851] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - ACTIONS(5498), 1, - anon_sym_for, - STATE(1908), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [77486] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4351), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5558), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2533), 2, sym_line_comment, - [83868] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - ACTIONS(5500), 1, - anon_sym_for, - STATE(1908), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [77505] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1197), 1, + anon_sym_RPAREN, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5380), 1, + anon_sym_COMMA, + STATE(2805), 1, + aux_sym_parameters_repeat1, + STATE(2534), 2, sym_line_comment, - [83885] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(230), 1, - sym_block, - STATE(3218), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [77528] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + STATE(2535), 2, sym_line_comment, - [83902] = 5, - ACTIONS(327), 1, + sym_block_comment, + ACTIONS(5560), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [77547] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3399), 1, + STATE(3440), 1, sym_label, - STATE(3459), 1, + STATE(3487), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, + STATE(2536), 2, sym_line_comment, - [83919] = 4, - ACTIONS(3), 1, sym_block_comment, - ACTIONS(5490), 1, + [77570] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5562), 1, + anon_sym_DQUOTE, + STATE(2475), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2537), 2, sym_line_comment, - ACTIONS(5502), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(5504), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83934] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - ACTIONS(4622), 1, - anon_sym_for, - STATE(1908), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [77591] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5564), 1, + anon_sym_LPAREN, + ACTIONS(5566), 1, + anon_sym_LBRACE, + ACTIONS(5568), 1, + anon_sym_LBRACK, + STATE(2869), 1, + sym_token_tree, + STATE(2538), 2, sym_line_comment, - [83951] = 5, - ACTIONS(15), 1, + sym_block_comment, + [77614] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(173), 1, + STATE(1446), 1, sym_block, - STATE(3218), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [83968] = 5, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - anon_sym_for, - ACTIONS(5510), 1, - anon_sym_loop, - ACTIONS(5512), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, + STATE(2539), 2, sym_line_comment, - [83985] = 4, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5091), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [84000] = 5, - ACTIONS(327), 1, + [77637] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3399), 1, - sym_label, - STATE(3418), 1, + STATE(468), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, + STATE(3490), 1, + sym_label, + STATE(2540), 2, sym_line_comment, - [84017] = 5, - ACTIONS(15), 1, + sym_block_comment, + [77660] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(204), 1, + STATE(1441), 1, sym_block, - STATE(3218), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2541), 2, sym_line_comment, - [84034] = 4, - ACTIONS(5514), 1, + sym_block_comment, + [77683] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5570), 1, anon_sym_DQUOTE, - STATE(2526), 1, + STATE(2593), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5516), 2, + ACTIONS(5425), 2, sym__string_content, sym_escape_sequence, - [84049] = 5, - ACTIONS(5518), 1, - anon_sym_LBRACE, - ACTIONS(5520), 1, - anon_sym_for, - ACTIONS(5522), 1, - anon_sym_loop, - ACTIONS(5524), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, + STATE(2542), 2, sym_line_comment, - [84066] = 4, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5117), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [84081] = 5, - ACTIONS(327), 1, + [77704] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3399), 1, - sym_label, - STATE(3435), 1, + STATE(474), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, + STATE(3490), 1, + sym_label, + STATE(2543), 2, sym_line_comment, - [84098] = 4, - ACTIONS(4944), 1, - anon_sym_COLON, - STATE(2920), 1, - sym_trait_bounds, - ACTIONS(3), 2, sym_block_comment, + [77727] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5572), 1, + anon_sym_DQUOTE, + STATE(2579), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2544), 2, sym_line_comment, - ACTIONS(5526), 2, - anon_sym_COMMA, - anon_sym_GT, - [84113] = 5, - ACTIONS(327), 1, + sym_block_comment, + [77748] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3399), 1, + STATE(3440), 1, sym_label, - STATE(3424), 1, + STATE(3476), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, + STATE(2545), 2, sym_line_comment, - [84130] = 5, - ACTIONS(327), 1, + sym_block_comment, + [77771] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3399), 1, - sym_label, - STATE(3401), 1, + STATE(1719), 1, sym_block, - ACTIONS(3), 2, - sym_block_comment, + STATE(3489), 1, + sym_label, + STATE(2546), 2, sym_line_comment, - [84147] = 5, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, - anon_sym_LT, - STATE(2183), 1, - sym_parameters, - STATE(3110), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84164] = 5, - ACTIONS(327), 1, + [77794] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1600), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3397), 1, + STATE(2060), 1, sym_block, - STATE(3399), 1, + STATE(3481), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2547), 2, sym_line_comment, - [84181] = 4, - ACTIONS(3022), 1, - anon_sym_POUND, - ACTIONS(5529), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - STATE(1432), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [84196] = 5, - ACTIONS(327), 1, + [77817] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1423), 1, + STATE(179), 1, sym_block, - STATE(3399), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2548), 2, sym_line_comment, - [84213] = 5, - ACTIONS(327), 1, + sym_block_comment, + [77840] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(391), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1425), 1, + STATE(1615), 1, sym_block, - STATE(3399), 1, + STATE(3489), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2549), 2, sym_line_comment, - [84230] = 5, - ACTIONS(5240), 1, - anon_sym_COMMA, - ACTIONS(5242), 1, - anon_sym_GT, - ACTIONS(5531), 1, - anon_sym_EQ, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84247] = 5, - ACTIONS(327), 1, + [77863] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3336), 1, + STATE(1145), 1, sym_block, - STATE(3399), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, + STATE(2550), 2, + sym_line_comment, sym_block_comment, + [77886] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(3440), 1, + sym_label, + STATE(3503), 1, + sym_block, + STATE(2551), 2, sym_line_comment, - [84264] = 5, - ACTIONS(327), 1, + sym_block_comment, + [77909] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3333), 1, + STATE(3368), 1, sym_block, - STATE(3399), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2552), 2, sym_line_comment, - [84281] = 4, - ACTIONS(5533), 1, - anon_sym_DQUOTE, - STATE(2450), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, + [77932] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(3440), 1, + sym_label, + STATE(3443), 1, + sym_block, + STATE(2553), 2, sym_line_comment, - ACTIONS(5535), 2, - sym__string_content, - sym_escape_sequence, - [84296] = 4, - ACTIONS(5538), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [77955] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + ACTIONS(4546), 1, + anon_sym_for, + STATE(1929), 1, + sym_type_arguments, + STATE(2554), 2, sym_line_comment, - ACTIONS(4119), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [84311] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4445), 2, + [77978] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4351), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5541), 2, + ACTIONS(5574), 2, anon_sym_RPAREN, anon_sym_COMMA, - [84324] = 5, - ACTIONS(4435), 1, + STATE(2555), 2, + sym_line_comment, + sym_block_comment, + [77997] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1444), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2556), 2, + sym_line_comment, + sym_block_comment, + [78020] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4694), 1, anon_sym_LT, - STATE(2150), 1, + STATE(2214), 1, sym_parameters, - STATE(3057), 1, + STATE(3014), 1, sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2557), 2, sym_line_comment, - [84341] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4467), 1, - anon_sym_BANG, - ACTIONS(4546), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84358] = 5, - ACTIONS(327), 1, + [78043] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3247), 1, + STATE(1445), 1, sym_block, - STATE(3399), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2558), 2, sym_line_comment, - [84375] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5543), 2, - sym_identifier, - sym_super, - [84390] = 4, + [78066] = 7, ACTIONS(3), 1, - sym_block_comment, - ACTIONS(5490), 1, - sym_line_comment, - ACTIONS(5545), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(5547), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84405] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(610), 1, - sym_declaration_list, - STATE(3001), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [84422] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(198), 1, + sym_block, + STATE(3381), 1, + sym_label, + STATE(2559), 2, sym_line_comment, - ACTIONS(5543), 2, - sym_identifier, - sym_super, - [84437] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5549), 1, - anon_sym_SEMI, - STATE(3402), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84454] = 5, - ACTIONS(4435), 1, + [78089] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4788), 1, + ACTIONS(4694), 1, anon_sym_LT, - STATE(2186), 1, + STATE(2172), 1, sym_parameters, - STATE(3095), 1, + STATE(3077), 1, sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2560), 2, sym_line_comment, - [84471] = 5, - ACTIONS(327), 1, + sym_block_comment, + [78112] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3353), 1, + STATE(479), 1, sym_block, - STATE(3399), 1, + STATE(3490), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2561), 2, sym_line_comment, - [84488] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5551), 1, - anon_sym_COMMA, - ACTIONS(5553), 1, - anon_sym_GT, - STATE(2798), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [78135] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4696), 1, + anon_sym_where, + STATE(706), 1, + sym_field_declaration_list, + STATE(2964), 1, + sym_where_clause, + STATE(2562), 2, sym_line_comment, - [84505] = 5, - ACTIONS(3102), 1, - anon_sym_PLUS, - ACTIONS(5551), 1, - anon_sym_COMMA, - ACTIONS(5553), 1, - anon_sym_GT, - STATE(2798), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [78158] = 5, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(5576), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2563), 2, sym_line_comment, - [84522] = 5, - ACTIONS(327), 1, + sym_block_comment, + ACTIONS(5578), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [78177] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(3326), 1, + STATE(3354), 1, sym_block, - STATE(3399), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2564), 2, sym_line_comment, - [84539] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5083), 2, - sym_identifier, - sym_super, - [84554] = 4, - ACTIONS(4441), 1, + [78200] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_LT2, - STATE(3201), 1, + ACTIONS(3332), 1, + anon_sym_COLON_COLON, + ACTIONS(4580), 1, + anon_sym_BANG, + STATE(1080), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2565), 2, sym_line_comment, - ACTIONS(5083), 2, - sym_identifier, - sym_super, - [84569] = 4, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5081), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78223] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_enum_variant_list, + STATE(3149), 1, + sym_where_clause, + STATE(2566), 2, sym_line_comment, - ACTIONS(4457), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [84584] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5555), 1, - anon_sym_RPAREN, - ACTIONS(5557), 1, - anon_sym_COMMA, - STATE(2687), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, sym_block_comment, + [78246] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_declaration_list, + STATE(3017), 1, + sym_where_clause, + STATE(2567), 2, sym_line_comment, - [84601] = 5, - ACTIONS(5438), 1, - anon_sym_COLON, - ACTIONS(5559), 1, - anon_sym_COMMA, - ACTIONS(5561), 1, - anon_sym_PIPE, - STATE(2657), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [78269] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5580), 1, + anon_sym_SEMI, + STATE(3448), 1, + sym_where_clause, + STATE(2568), 2, sym_line_comment, - [84618] = 5, - ACTIONS(5563), 1, - anon_sym_LBRACE, - ACTIONS(5565), 1, - anon_sym_for, - ACTIONS(5567), 1, - anon_sym_loop, - ACTIONS(5569), 1, - anon_sym_while, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84635] = 5, - ACTIONS(15), 1, + [78292] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4762), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(298), 1, - sym_block, - STATE(3218), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(1141), 1, + sym_field_declaration_list, + STATE(3047), 1, + sym_where_clause, + STATE(2569), 2, sym_line_comment, - [84652] = 3, - ACTIONS(5571), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5573), 3, - sym_self, - sym_super, - sym_crate, - [84665] = 5, - ACTIONS(5575), 1, + [78315] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5582), 1, anon_sym_LPAREN, - ACTIONS(5577), 1, + ACTIONS(5584), 1, anon_sym_LBRACE, - ACTIONS(5579), 1, + ACTIONS(5586), 1, anon_sym_LBRACK, - STATE(294), 1, + STATE(1030), 1, sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [84682] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5293), 1, - anon_sym_RPAREN, - ACTIONS(5295), 1, - anon_sym_COMMA, - STATE(2801), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2570), 2, sym_line_comment, - [84699] = 5, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, - anon_sym_LT, - STATE(2154), 1, - sym_parameters, - STATE(3141), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84716] = 4, - ACTIONS(4459), 1, + [78338] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(5151), 1, + ACTIONS(5588), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4457), 2, + ACTIONS(4510), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [84731] = 5, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, - anon_sym_LT, - STATE(2162), 1, - sym_parameters, - STATE(3049), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(2571), 2, sym_line_comment, - [84748] = 5, - ACTIONS(4786), 1, + sym_block_comment, + [78359] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(4790), 1, - anon_sym_where, - STATE(733), 1, - sym_field_declaration_list, - STATE(2998), 1, - sym_where_clause, - ACTIONS(3), 2, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1335), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2572), 2, + sym_line_comment, sym_block_comment, + [78382] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(459), 1, + sym_block, + STATE(3490), 1, + sym_label, + STATE(2573), 2, sym_line_comment, - [84765] = 3, - ACTIONS(5581), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78405] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5011), 1, + anon_sym_LPAREN, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + anon_sym_LBRACK, + STATE(1332), 1, + sym_delim_token_tree, + STATE(2574), 2, sym_line_comment, - ACTIONS(4642), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84778] = 3, - ACTIONS(5583), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78428] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4375), 1, + anon_sym_BANG, + ACTIONS(4435), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + STATE(2575), 2, sym_line_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84791] = 5, - ACTIONS(15), 1, + sym_block_comment, + [78451] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(136), 1, + STATE(487), 1, sym_block, - STATE(3218), 1, + STATE(3490), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2576), 2, sym_line_comment, - [84808] = 3, - ACTIONS(5585), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78474] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5111), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_enum_variant_list, + STATE(3050), 1, + sym_where_clause, + STATE(2577), 2, sym_line_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84821] = 3, - ACTIONS(5587), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78497] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1087), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2578), 2, sym_line_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84834] = 5, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(5589), 1, - anon_sym_SEMI, - ACTIONS(5591), 1, - anon_sym_EQ, - STATE(3408), 1, - sym_trait_bounds, - ACTIONS(3), 2, sym_block_comment, + [78520] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5590), 1, + anon_sym_DQUOTE, + STATE(2475), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2579), 2, sym_line_comment, - [84851] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5083), 1, - sym_super, - ACTIONS(5593), 1, - sym_identifier, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [78541] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5582), 1, + anon_sym_LPAREN, + ACTIONS(5584), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_LBRACK, + STATE(1031), 1, + sym_delim_token_tree, + STATE(2580), 2, sym_line_comment, - [84868] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5083), 1, - sym_super, - ACTIONS(5593), 1, - sym_identifier, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [78564] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_LT, + STATE(2209), 1, + sym_parameters, + STATE(3100), 1, + sym_type_parameters, + STATE(2581), 2, sym_line_comment, - [84885] = 5, - ACTIONS(4790), 1, + sym_block_comment, + [78587] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4796), 1, + ACTIONS(4752), 1, anon_sym_LBRACE, - STATE(747), 1, + STATE(1120), 1, sym_declaration_list, - STATE(2988), 1, + STATE(3055), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2582), 2, sym_line_comment, - [84902] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5593), 1, - sym_identifier, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84919] = 5, - ACTIONS(4441), 1, + [78610] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5543), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5593), 1, + ACTIONS(5592), 1, sym_identifier, - STATE(3210), 1, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2583), 2, sym_line_comment, - [84936] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5595), 1, - sym_identifier, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [78633] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(225), 1, + sym_block, + STATE(3381), 1, + sym_label, + STATE(2584), 2, sym_line_comment, - [84953] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5595), 1, - sym_identifier, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [84970] = 5, - ACTIONS(4441), 1, + [78656] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5543), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5597), 1, + ACTIONS(5592), 1, sym_identifier, - STATE(3201), 1, + STATE(3385), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2585), 2, sym_line_comment, - [84987] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5597), 1, - sym_identifier, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [78679] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5594), 1, + anon_sym_SEMI, + STATE(3365), 1, + sym_where_clause, + STATE(2586), 2, sym_line_comment, - [85004] = 3, - ACTIONS(5581), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78702] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1096), 1, + sym_declaration_list, + STATE(3062), 1, + sym_where_clause, + STATE(2587), 2, sym_line_comment, - ACTIONS(4656), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85017] = 3, - ACTIONS(5583), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78725] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(1928), 1, + sym_type_arguments, + STATE(2491), 1, + sym_trait_bounds, + STATE(2588), 2, sym_line_comment, - ACTIONS(4616), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85030] = 3, - ACTIONS(5585), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4616), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85043] = 5, - ACTIONS(327), 1, + [78748] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1424), 1, + STATE(3301), 1, sym_block, - STATE(3399), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2589), 2, sym_line_comment, - [85060] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5083), 1, - sym_super, - ACTIONS(5599), 1, - sym_identifier, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [78771] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(1299), 1, + sym_block, + STATE(3440), 1, + sym_label, + STATE(2590), 2, sym_line_comment, - [85077] = 5, - ACTIONS(327), 1, + sym_block_comment, + [78794] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1426), 1, + STATE(480), 1, sym_block, - STATE(3399), 1, + STATE(3490), 1, sym_label, - ACTIONS(3), 2, + STATE(2591), 2, + sym_line_comment, sym_block_comment, + [78817] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2592), 2, sym_line_comment, - [85094] = 4, - ACTIONS(5601), 1, + sym_block_comment, + ACTIONS(4189), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_SQUOTE, + anon_sym_AMP_AMP, + [78834] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5596), 1, anon_sym_DQUOTE, - STATE(2552), 1, + STATE(2475), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5603), 2, + ACTIONS(5425), 2, sym__string_content, sym_escape_sequence, - [85109] = 5, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5436), 1, - anon_sym_RPAREN, - ACTIONS(5440), 1, - anon_sym_COMMA, - STATE(2848), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, + STATE(2593), 2, + sym_line_comment, sym_block_comment, + [78855] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4165), 1, + anon_sym_LBRACE, + STATE(2919), 1, + sym_use_list, + ACTIONS(5598), 2, + sym_identifier, + sym_super, + STATE(2594), 2, sym_line_comment, - [85126] = 5, - ACTIONS(4441), 1, + sym_block_comment, + [78876] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(5083), 1, + ACTIONS(4993), 1, sym_super, - ACTIONS(5599), 1, + ACTIONS(5600), 1, sym_identifier, - STATE(3210), 1, + STATE(1558), 1, sym_type_arguments, - ACTIONS(3), 2, + STATE(2595), 2, + sym_line_comment, sym_block_comment, + [78899] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5011), 1, + anon_sym_LPAREN, + ACTIONS(5013), 1, + anon_sym_LBRACE, + ACTIONS(5015), 1, + anon_sym_LBRACK, + STATE(1294), 1, + sym_delim_token_tree, + STATE(2596), 2, sym_line_comment, - [85143] = 3, - ACTIONS(5587), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [78922] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_enum_variant_list, + STATE(2969), 1, + sym_where_clause, + STATE(2597), 2, sym_line_comment, - ACTIONS(4616), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85156] = 3, - ACTIONS(5605), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [78945] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5602), 1, + anon_sym_COLON, + STATE(2598), 2, sym_line_comment, - ACTIONS(5607), 3, - sym_self, - sym_super, - sym_crate, - [85169] = 5, - ACTIONS(1708), 1, + sym_block_comment, + ACTIONS(4578), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [78964] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(2049), 1, + STATE(467), 1, sym_block, - STATE(3440), 1, + STATE(3490), 1, sym_label, - ACTIONS(3), 2, + STATE(2599), 2, + sym_line_comment, + sym_block_comment, + [78987] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + STATE(3385), 1, + sym_type_arguments, + ACTIONS(4993), 2, + sym_identifier, + sym_super, + STATE(2600), 2, + sym_line_comment, sym_block_comment, + [79008] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5604), 1, + anon_sym_RPAREN, + ACTIONS(5606), 1, + anon_sym_COMMA, + STATE(2860), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2601), 2, sym_line_comment, - [85186] = 5, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(3341), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [79031] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5608), 1, + anon_sym_DQUOTE, + STATE(2607), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2602), 2, sym_line_comment, - [85203] = 5, - ACTIONS(389), 1, + sym_block_comment, + [79052] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(930), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1593), 1, + STATE(484), 1, sym_block, - STATE(3448), 1, + STATE(3490), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2603), 2, sym_line_comment, - [85220] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5484), 1, - sym_super, - ACTIONS(5609), 1, - sym_identifier, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [79075] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5610), 1, + anon_sym_SEMI, + ACTIONS(5612), 1, + anon_sym_EQ, + ACTIONS(5614), 1, + anon_sym_else, + STATE(2604), 2, sym_line_comment, - [85237] = 5, - ACTIONS(4441), 1, + sym_block_comment, + [79098] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(5484), 1, + ACTIONS(4993), 1, sym_super, - ACTIONS(5609), 1, + ACTIONS(5600), 1, sym_identifier, - STATE(3210), 1, + STATE(1573), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2605), 2, sym_line_comment, - [85254] = 4, - ACTIONS(5611), 1, - anon_sym_DQUOTE, - STATE(2450), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, + [79121] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5616), 1, + anon_sym_LPAREN, + ACTIONS(5618), 1, + anon_sym_LBRACE, + ACTIONS(5620), 1, + anon_sym_LBRACK, + STATE(1626), 1, + sym_delim_token_tree, + STATE(2606), 2, sym_line_comment, - ACTIONS(5613), 2, - sym__string_content, - sym_escape_sequence, - [85269] = 4, - ACTIONS(5615), 1, + sym_block_comment, + [79144] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5622), 1, anon_sym_DQUOTE, - STATE(2511), 1, + STATE(2475), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5617), 2, + ACTIONS(5425), 2, sym__string_content, sym_escape_sequence, - [85284] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(2607), 2, sym_line_comment, - ACTIONS(5392), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [85295] = 5, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(3288), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [85312] = 4, - ACTIONS(4299), 1, + [79165] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5616), 1, + anon_sym_LPAREN, + ACTIONS(5618), 1, anon_sym_LBRACE, - STATE(2748), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5620), 1, + anon_sym_LBRACK, + STATE(1619), 1, + sym_delim_token_tree, + STATE(2608), 2, sym_line_comment, - ACTIONS(5619), 2, - sym_identifier, + sym_block_comment, + [79188] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(5482), 1, sym_super, - [85327] = 5, - ACTIONS(4441), 1, + ACTIONS(5496), 1, + sym_identifier, + STATE(3411), 1, + sym_type_arguments, + STATE(2609), 2, + sym_line_comment, + sym_block_comment, + [79211] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5543), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5621), 1, + ACTIONS(5624), 1, sym_identifier, - STATE(3201), 1, + STATE(3411), 1, + sym_type_arguments, + STATE(2610), 2, + sym_line_comment, + sym_block_comment, + [79234] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4367), 1, + anon_sym_COLON_COLON, + ACTIONS(5626), 1, + anon_sym_for, + STATE(1929), 1, sym_type_arguments, - ACTIONS(3), 2, + STATE(2611), 2, + sym_line_comment, sym_block_comment, + [79257] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5628), 1, + anon_sym_LBRACE, + ACTIONS(5630), 1, + anon_sym_for, + ACTIONS(5632), 1, + anon_sym_loop, + ACTIONS(5634), 1, + anon_sym_while, + STATE(2612), 2, sym_line_comment, - [85344] = 5, - ACTIONS(4441), 1, + sym_block_comment, + [79280] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5543), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5621), 1, + ACTIONS(5624), 1, sym_identifier, - STATE(3210), 1, + STATE(3385), 1, sym_type_arguments, - ACTIONS(3), 2, + STATE(2613), 2, + sym_line_comment, sym_block_comment, + [79303] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5636), 1, + anon_sym_RPAREN, + ACTIONS(5638), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_slice_pattern_repeat1, + STATE(2614), 2, sym_line_comment, - [85361] = 5, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACE, - ACTIONS(5627), 1, - anon_sym_LBRACK, - STATE(1628), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, + [79326] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5640), 1, + anon_sym_in, + STATE(2615), 2, sym_line_comment, - [85378] = 4, - ACTIONS(5629), 1, - anon_sym_DQUOTE, - STATE(2450), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(5642), 3, + sym_self, + sym_super, + sym_crate, + [79345] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5324), 1, + anon_sym_RPAREN, + ACTIONS(5326), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_parameters_repeat1, + STATE(2616), 2, sym_line_comment, - ACTIONS(5613), 2, - sym__string_content, - sym_escape_sequence, - [85393] = 5, - ACTIONS(5623), 1, - anon_sym_LPAREN, - ACTIONS(5625), 1, - anon_sym_LBRACE, - ACTIONS(5627), 1, - anon_sym_LBRACK, - STATE(1580), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, + [79368] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5644), 1, + anon_sym_in, + STATE(2617), 2, sym_line_comment, - [85410] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(203), 1, - sym_block, - STATE(3218), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(5646), 3, + sym_self, + sym_super, + sym_crate, + [79387] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5648), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + STATE(2710), 1, + aux_sym_tuple_type_repeat1, + STATE(2618), 2, sym_line_comment, - [85427] = 5, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(476), 1, - sym_block, - STATE(3449), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [79410] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(751), 1, + sym_declaration_list, + STATE(2984), 1, + sym_where_clause, + STATE(2619), 2, sym_line_comment, - [85444] = 4, - ACTIONS(5631), 1, - anon_sym_DQUOTE, - STATE(2519), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, + [79433] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5652), 1, + anon_sym_COLON_COLON, + STATE(2620), 2, sym_line_comment, - ACTIONS(5633), 2, - sym__string_content, - sym_escape_sequence, - [85459] = 5, - ACTIONS(3266), 1, + sym_block_comment, + ACTIONS(4548), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79452] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(4728), 1, - anon_sym_BANG, - STATE(1040), 1, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(4993), 2, + sym_identifier, + sym_super, + STATE(2621), 2, sym_line_comment, - [85476] = 5, - ACTIONS(910), 1, + sym_block_comment, + [79473] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(457), 1, + STATE(3405), 1, sym_block, - STATE(3449), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, + STATE(2622), 2, + sym_line_comment, sym_block_comment, + [79496] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5654), 1, + anon_sym_SEMI, + ACTIONS(5656), 1, + anon_sym_EQ, + ACTIONS(5658), 1, + anon_sym_else, + STATE(2623), 2, sym_line_comment, - [85493] = 4, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - STATE(2450), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, + [79519] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_LT, + STATE(2171), 1, + sym_parameters, + STATE(3154), 1, + sym_type_parameters, + STATE(2624), 2, sym_line_comment, - ACTIONS(5613), 2, - sym__string_content, - sym_escape_sequence, - [85508] = 3, - ACTIONS(4930), 1, + sym_block_comment, + [79542] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3002), 1, anon_sym_PLUS, - ACTIONS(3), 2, + ACTIONS(5660), 1, + anon_sym_COMMA, + ACTIONS(5662), 1, + anon_sym_GT, + STATE(2811), 1, + aux_sym_type_arguments_repeat1, + STATE(2625), 2, + sym_line_comment, sym_block_comment, + [79565] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_DOT_DOT, + ACTIONS(5045), 1, + anon_sym_COLON_COLON, + ACTIONS(4363), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2626), 2, sym_line_comment, - ACTIONS(5637), 3, - anon_sym_RPAREN, + sym_block_comment, + [79586] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5660), 1, anon_sym_COMMA, - anon_sym_PIPE, - [85521] = 5, - ACTIONS(3266), 1, + ACTIONS(5662), 1, + anon_sym_GT, + STATE(2811), 1, + aux_sym_type_arguments_repeat1, + STATE(2627), 2, + sym_line_comment, + sym_block_comment, + [79609] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5083), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5639), 1, + ACTIONS(5664), 1, sym_identifier, - STATE(1409), 1, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2628), 2, sym_line_comment, - [85538] = 5, - ACTIONS(5575), 1, - anon_sym_LPAREN, - ACTIONS(5577), 1, - anon_sym_LBRACE, - ACTIONS(5579), 1, - anon_sym_LBRACK, - STATE(196), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [85555] = 4, - ACTIONS(4612), 1, + [79632] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, anon_sym_DOT_DOT, - ACTIONS(5641), 1, + ACTIONS(4977), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4610), 2, + ACTIONS(4363), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [85570] = 5, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1353), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2629), 2, sym_line_comment, - [85587] = 5, - ACTIONS(910), 1, + sym_block_comment, + [79653] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(468), 1, + STATE(3392), 1, sym_block, - STATE(3449), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2630), 2, sym_line_comment, - [85604] = 5, - ACTIONS(5093), 1, - anon_sym_LPAREN, - ACTIONS(5095), 1, - anon_sym_LBRACE, - ACTIONS(5097), 1, - anon_sym_LBRACK, - STATE(1344), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, + [79676] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5666), 1, + anon_sym_COLON_COLON, + STATE(2631), 2, sym_line_comment, - [85621] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5599), 1, - sym_identifier, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4548), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79695] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5668), 1, + anon_sym_DQUOTE, + STATE(2643), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5425), 2, + sym__string_content, + sym_escape_sequence, + STATE(2632), 2, sym_line_comment, - [85638] = 5, - ACTIONS(4441), 1, + sym_block_comment, + [79716] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5599), 1, - sym_identifier, - STATE(3210), 1, + STATE(1051), 1, + sym_parameters, + STATE(1928), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2633), 2, sym_line_comment, - [85655] = 5, - ACTIONS(5643), 1, - anon_sym_LPAREN, - ACTIONS(5645), 1, - anon_sym_LBRACE, - ACTIONS(5647), 1, - anon_sym_LBRACK, - STATE(1016), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [85672] = 5, - ACTIONS(327), 1, + [79739] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1037), 1, + STATE(3391), 1, sym_block, - STATE(3399), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, + STATE(2634), 2, + sym_line_comment, + sym_block_comment, + [79762] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + STATE(3385), 1, + sym_type_arguments, + ACTIONS(5670), 2, + sym_identifier, + sym_super, + STATE(2635), 2, + sym_line_comment, sym_block_comment, + [79783] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(5482), 1, + sym_super, + ACTIONS(5664), 1, + sym_identifier, + STATE(3385), 1, + sym_type_arguments, + STATE(2636), 2, sym_line_comment, - [85689] = 4, - ACTIONS(5649), 1, - anon_sym_DQUOTE, - STATE(2450), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, + [79806] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + STATE(3411), 1, + sym_type_arguments, + ACTIONS(5670), 2, + sym_identifier, + sym_super, + STATE(2637), 2, sym_line_comment, - ACTIONS(5613), 2, - sym__string_content, - sym_escape_sequence, - [85704] = 5, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(462), 1, - sym_block, - STATE(3449), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [79827] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5672), 1, + anon_sym_COLON_COLON, + STATE(2638), 2, sym_line_comment, - [85721] = 5, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(451), 1, - sym_block, - STATE(3449), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4548), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79846] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5674), 1, + anon_sym_RPAREN, + ACTIONS(5676), 1, + anon_sym_COMMA, + STATE(2723), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2639), 2, sym_line_comment, - [85738] = 5, - ACTIONS(5643), 1, - anon_sym_LPAREN, - ACTIONS(5645), 1, - anon_sym_LBRACE, - ACTIONS(5647), 1, - anon_sym_LBRACK, - STATE(1007), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, + [79869] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5376), 1, + anon_sym_COLON, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(5680), 1, + anon_sym_PIPE, + STATE(2740), 1, + aux_sym_closure_parameters_repeat1, + STATE(2640), 2, sym_line_comment, - [85755] = 5, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(467), 1, - sym_block, - STATE(3449), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [79892] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5682), 1, + anon_sym_RBRACK, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(2725), 1, + aux_sym_slice_pattern_repeat1, + STATE(2641), 2, sym_line_comment, - [85772] = 5, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1705), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [79915] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5686), 1, + anon_sym_RBRACK, + ACTIONS(5688), 1, + anon_sym_COMMA, + STATE(2841), 1, + aux_sym_slice_pattern_repeat1, + STATE(2642), 2, sym_line_comment, - [85789] = 4, - ACTIONS(5651), 1, + sym_block_comment, + [79938] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5690), 1, anon_sym_DQUOTE, - STATE(2538), 1, + STATE(2475), 1, aux_sym_string_literal_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5653), 2, + ACTIONS(5425), 2, sym__string_content, sym_escape_sequence, - [85804] = 5, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3449), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2643), 2, sym_line_comment, - [85821] = 5, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(478), 1, - sym_block, - STATE(3449), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [79959] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5402), 1, + anon_sym_COLON_COLON, + STATE(2644), 2, sym_line_comment, - [85838] = 5, - ACTIONS(1154), 1, - anon_sym_RPAREN, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, - anon_sym_COMMA, - STATE(2863), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4528), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [79978] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5672), 1, + anon_sym_COLON_COLON, + STATE(2645), 2, sym_line_comment, - [85855] = 3, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4445), 2, - anon_sym_COLON, + ACTIONS(4534), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(5655), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [85868] = 5, - ACTIONS(327), 1, + anon_sym_if, + [79997] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1293), 1, + STATE(316), 1, sym_block, - STATE(3399), 1, + STATE(3381), 1, sym_label, - ACTIONS(3), 2, + STATE(2646), 2, + sym_line_comment, sym_block_comment, + [80020] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5692), 1, + anon_sym_RPAREN, + ACTIONS(5694), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2647), 2, sym_line_comment, - [85885] = 5, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1662), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [80043] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_LBRACE, + ACTIONS(5549), 1, + anon_sym_LBRACK, + STATE(311), 1, + sym_delim_token_tree, + STATE(2648), 2, sym_line_comment, - [85902] = 5, - ACTIONS(3266), 1, + sym_block_comment, + [80066] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5083), 1, + ACTIONS(4993), 1, sym_super, - ACTIONS(5639), 1, + ACTIONS(5696), 1, sym_identifier, - STATE(1417), 1, + STATE(3385), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2649), 2, sym_line_comment, - [85919] = 4, - ACTIONS(5657), 1, - anon_sym_DQUOTE, - STATE(2450), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5613), 2, - sym__string_content, - sym_escape_sequence, - [85934] = 5, - ACTIONS(5659), 1, + [80089] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5111), 1, anon_sym_LBRACE, - ACTIONS(5661), 1, - anon_sym_for, - ACTIONS(5663), 1, - anon_sym_loop, - ACTIONS(5665), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, + STATE(1229), 1, + sym_enum_variant_list, + STATE(3141), 1, + sym_where_clause, + STATE(2650), 2, sym_line_comment, - [85951] = 5, - ACTIONS(3266), 1, + sym_block_comment, + [80112] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5083), 1, + ACTIONS(4993), 1, sym_super, - ACTIONS(5667), 1, + ACTIONS(5696), 1, sym_identifier, - STATE(1537), 1, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2651), 2, sym_line_comment, - [85968] = 5, - ACTIONS(5093), 1, - anon_sym_LPAREN, - ACTIONS(5095), 1, - anon_sym_LBRACE, - ACTIONS(5097), 1, - anon_sym_LBRACK, - STATE(1286), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, + [80135] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(5482), 1, + sym_super, + ACTIONS(5696), 1, + sym_identifier, + STATE(3385), 1, + sym_type_arguments, + STATE(2652), 2, sym_line_comment, - [85985] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5448), 1, - anon_sym_RPAREN, - ACTIONS(5450), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [80158] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(5670), 1, + sym_super, + ACTIONS(5698), 1, + sym_identifier, + STATE(3385), 1, + sym_type_arguments, + STATE(2653), 2, sym_line_comment, - [86002] = 5, - ACTIONS(3102), 1, - anon_sym_PLUS, - ACTIONS(5669), 1, - anon_sym_COMMA, - ACTIONS(5671), 1, - anon_sym_GT, - STATE(2877), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86019] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5669), 1, + [80181] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5203), 1, anon_sym_COMMA, - ACTIONS(5671), 1, + ACTIONS(5205), 1, anon_sym_GT, - STATE(2877), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5556), 1, + anon_sym_EQ, + STATE(2748), 1, + aux_sym_type_parameters_repeat1, + STATE(2654), 2, sym_line_comment, - [86036] = 5, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1644), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86053] = 5, - ACTIONS(4441), 1, + [80204] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5083), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5673), 1, + ACTIONS(5696), 1, sym_identifier, - STATE(3201), 1, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, + STATE(2655), 2, + sym_line_comment, sym_block_comment, + [80227] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5666), 1, + anon_sym_COLON_COLON, + STATE(2656), 2, sym_line_comment, - [86070] = 5, - ACTIONS(4441), 1, + sym_block_comment, + ACTIONS(4534), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80246] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5083), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5673), 1, + ACTIONS(5700), 1, sym_identifier, - STATE(3210), 1, + STATE(3385), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2657), 2, sym_line_comment, - [86087] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5675), 1, - anon_sym_RPAREN, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(2896), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86104] = 5, - ACTIONS(4441), 1, + [80269] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4944), 1, - anon_sym_COLON, - STATE(1906), 1, + ACTIONS(5670), 1, + sym_super, + ACTIONS(5698), 1, + sym_identifier, + STATE(3411), 1, sym_type_arguments, - STATE(2603), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, + STATE(2658), 2, sym_line_comment, - [86121] = 5, - ACTIONS(3266), 1, + sym_block_comment, + [80292] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5083), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5667), 1, + ACTIONS(5700), 1, sym_identifier, - STATE(1551), 1, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, + STATE(2659), 2, + sym_line_comment, + sym_block_comment, + [80315] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5702), 1, + anon_sym_RPAREN, + ACTIONS(5704), 1, + anon_sym_COMMA, + STATE(2932), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2660), 2, + sym_line_comment, sym_block_comment, + [80338] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(17), 1, + anon_sym_LBRACE, + ACTIONS(3396), 1, + anon_sym_SQUOTE, + STATE(137), 1, + sym_block, + STATE(3381), 1, + sym_label, + STATE(2661), 2, sym_line_comment, - [86138] = 5, - ACTIONS(3801), 1, + sym_block_comment, + [80361] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5679), 1, - sym_identifier, - ACTIONS(5681), 1, + ACTIONS(5482), 1, sym_super, - STATE(1497), 1, + ACTIONS(5706), 1, + sym_identifier, + STATE(3385), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2662), 2, sym_line_comment, - [86155] = 5, - ACTIONS(5683), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - anon_sym_LBRACE, - ACTIONS(5687), 1, - anon_sym_LBRACK, - STATE(1919), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86172] = 5, - ACTIONS(3801), 1, + [80384] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5679), 1, - sym_identifier, - ACTIONS(5681), 1, + ACTIONS(5482), 1, sym_super, - STATE(1496), 1, + ACTIONS(5706), 1, + sym_identifier, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2663), 2, sym_line_comment, - [86189] = 2, - ACTIONS(3), 2, sym_block_comment, + [80407] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5652), 1, + anon_sym_COLON_COLON, + STATE(2664), 2, sym_line_comment, - ACTIONS(4249), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_SQUOTE, - anon_sym_AMP_AMP, - [86200] = 4, - ACTIONS(5689), 1, - anon_sym_DQUOTE, - STATE(2450), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5613), 2, - sym__string_content, - sym_escape_sequence, - [86215] = 5, - ACTIONS(4790), 1, + ACTIONS(4534), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80426] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4796), 1, + ACTIONS(4752), 1, anon_sym_LBRACE, - STATE(686), 1, + STATE(1203), 1, sym_declaration_list, - STATE(3121), 1, + STATE(3120), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2665), 2, sym_line_comment, - [86232] = 5, - ACTIONS(4790), 1, + sym_block_comment, + [80449] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4796), 1, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(515), 1, + STATE(691), 1, sym_declaration_list, - STATE(2958), 1, + STATE(2991), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86249] = 5, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1616), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(2666), 2, sym_line_comment, - [86266] = 5, - ACTIONS(389), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1491), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [80472] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2667), 2, sym_line_comment, - [86283] = 5, - ACTIONS(5683), 1, - anon_sym_LPAREN, - ACTIONS(5685), 1, - anon_sym_LBRACE, - ACTIONS(5687), 1, - anon_sym_LBRACK, - STATE(1917), 1, - sym_delim_token_tree, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86300] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5691), 1, + ACTIONS(5319), 4, anon_sym_SEMI, - STATE(3263), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86317] = 5, - ACTIONS(389), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1613), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86334] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5693), 1, - anon_sym_RPAREN, - ACTIONS(5695), 1, anon_sym_COMMA, - STATE(2672), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86351] = 5, - ACTIONS(3801), 1, - anon_sym_LT2, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - ACTIONS(4706), 1, - anon_sym_BANG, - STATE(1526), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86368] = 5, - ACTIONS(910), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, anon_sym_SQUOTE, - STATE(477), 1, - sym_block, - STATE(3449), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86385] = 5, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - ACTIONS(4928), 1, - anon_sym_LBRACE, - STATE(2721), 1, - sym_block, - STATE(3447), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + [80489] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(5708), 1, + anon_sym_SEMI, + ACTIONS(5710), 1, + anon_sym_EQ, + STATE(3314), 1, + sym_trait_bounds, + STATE(2668), 2, sym_line_comment, - [86402] = 4, - ACTIONS(5697), 1, - anon_sym_DQUOTE, - STATE(2569), 1, - aux_sym_string_literal_repeat1, - ACTIONS(3), 2, sym_block_comment, + [80512] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_LT, + STATE(2202), 1, + sym_parameters, + STATE(3107), 1, + sym_type_parameters, + STATE(2669), 2, sym_line_comment, - ACTIONS(5699), 2, - sym__string_content, - sym_escape_sequence, - [86417] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - ACTIONS(4660), 1, - anon_sym_for, - STATE(1908), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86434] = 5, - ACTIONS(389), 1, + [80535] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(4762), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1594), 1, - sym_block, - STATE(3448), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(1198), 1, + sym_field_declaration_list, + STATE(3115), 1, + sym_where_clause, + STATE(2670), 2, sym_line_comment, - [86451] = 5, - ACTIONS(389), 1, + sym_block_comment, + [80558] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(329), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3396), 1, anon_sym_SQUOTE, - STATE(1591), 1, + STATE(1180), 1, sym_block, - STATE(3448), 1, + STATE(3440), 1, sym_label, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86468] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5701), 1, - anon_sym_RPAREN, - ACTIONS(5703), 1, - anon_sym_COMMA, - STATE(2718), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2671), 2, sym_line_comment, - [86485] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_declaration_list, - STATE(3130), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86502] = 5, - ACTIONS(4441), 1, + [80581] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5543), 1, + ACTIONS(4993), 1, sym_super, - ACTIONS(5705), 1, + ACTIONS(5592), 1, sym_identifier, - STATE(3210), 1, + STATE(3385), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2672), 2, sym_line_comment, - [86519] = 5, - ACTIONS(4441), 1, + sym_block_comment, + [80604] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - ACTIONS(5707), 1, - anon_sym_for, - STATE(1908), 1, + ACTIONS(4993), 1, + sym_super, + ACTIONS(5592), 1, + sym_identifier, + STATE(3411), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2673), 2, sym_line_comment, - [86536] = 5, - ACTIONS(4790), 1, + sym_block_comment, + [80627] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4930), 1, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5709), 1, + ACTIONS(5712), 1, anon_sym_SEMI, - STATE(3195), 1, + STATE(3483), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2674), 2, sym_line_comment, - [86553] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5711), 1, - anon_sym_RPAREN, - ACTIONS(5713), 1, - anon_sym_COMMA, - STATE(2758), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86570] = 5, - ACTIONS(4441), 1, + [80650] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(4443), 1, + ACTIONS(4367), 1, anon_sym_COLON_COLON, - ACTIONS(5715), 1, + ACTIONS(5714), 1, anon_sym_for, - STATE(1908), 1, + STATE(1929), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2675), 2, sym_line_comment, - [86587] = 5, - ACTIONS(3258), 1, + sym_block_comment, + [80673] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - ACTIONS(4441), 1, + ACTIONS(4349), 1, anon_sym_LT2, - STATE(1043), 1, - sym_parameters, - STATE(1906), 1, + STATE(1928), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [86604] = 5, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(3209), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(1946), 1, + sym_parameters, + STATE(2676), 2, sym_line_comment, - [86621] = 5, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(3252), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86638] = 5, - ACTIONS(4441), 1, + [80696] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, anon_sym_LT2, - ACTIONS(5543), 1, + ACTIONS(5482), 1, sym_super, - ACTIONS(5705), 1, + ACTIONS(5496), 1, sym_identifier, - STATE(3201), 1, + STATE(3385), 1, sym_type_arguments, - ACTIONS(3), 2, + STATE(2677), 2, + sym_line_comment, sym_block_comment, + [80719] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(694), 1, + anon_sym_RBRACK, + ACTIONS(3981), 1, + anon_sym_COMMA, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2678), 2, sym_line_comment, - [86655] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5717), 1, - anon_sym_SEMI, - ACTIONS(5719), 1, - anon_sym_EQ, - ACTIONS(5721), 1, - anon_sym_else, - ACTIONS(3), 2, sym_block_comment, + [80739] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5716), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2679), 2, sym_line_comment, - [86672] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [80757] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(1330), 1, + ACTIONS(5718), 1, + anon_sym_SEMI, + STATE(504), 1, sym_declaration_list, - STATE(2989), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(2680), 2, + sym_line_comment, + sym_block_comment, + [80777] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5720), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2681), 2, + sym_line_comment, sym_block_comment, + [80795] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5203), 1, + anon_sym_COMMA, + ACTIONS(5205), 1, + anon_sym_GT, + STATE(2748), 1, + aux_sym_type_parameters_repeat1, + STATE(2682), 2, sym_line_comment, - [86689] = 5, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5723), 1, + sym_block_comment, + [80815] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(5722), 1, + anon_sym_SEMI, + STATE(1219), 1, + sym_declaration_list, + STATE(2683), 2, + sym_line_comment, + sym_block_comment, + [80835] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5692), 1, anon_sym_RPAREN, - ACTIONS(5725), 1, + ACTIONS(5694), 1, anon_sym_COMMA, - STATE(2651), 1, + STATE(2843), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2684), 2, sym_line_comment, - [86706] = 5, - ACTIONS(4790), 1, + sym_block_comment, + [80855] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5727), 1, + ACTIONS(5724), 1, anon_sym_SEMI, - STATE(3420), 1, + STATE(3313), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2685), 2, sym_line_comment, - [86723] = 5, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5729), 1, - anon_sym_RBRACK, - ACTIONS(5731), 1, - anon_sym_COMMA, - STATE(2684), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, + [80875] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(5726), 1, + anon_sym_SEMI, + STATE(725), 1, + sym_declaration_list, + STATE(2686), 2, sym_line_comment, - [86740] = 4, - ACTIONS(4944), 1, - anon_sym_COLON, - STATE(2920), 1, - sym_trait_bounds, - ACTIONS(3), 2, sym_block_comment, + [80895] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(5728), 1, + anon_sym_SEMI, + STATE(727), 1, + sym_declaration_list, + STATE(2687), 2, sym_line_comment, - ACTIONS(5733), 2, - anon_sym_COMMA, - anon_sym_GT, - [86755] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5735), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + [80915] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5730), 1, + anon_sym_RBRACE, + ACTIONS(5732), 1, anon_sym_COMMA, - anon_sym_SQUOTE, - [86766] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(2933), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2688), 2, sym_line_comment, - ACTIONS(5737), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [86777] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [80935] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2689), 2, sym_line_comment, - ACTIONS(5739), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [86790] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5182), 1, - anon_sym_LBRACE, - STATE(679), 1, - sym_enum_variant_list, - STATE(2976), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4632), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80951] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2690), 2, sym_line_comment, - [86807] = 4, - ACTIONS(5743), 1, - anon_sym_COMMA, - STATE(2606), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4682), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80967] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5734), 1, + anon_sym_RBRACE, + ACTIONS(5736), 1, + anon_sym_COMMA, + STATE(2779), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2691), 2, sym_line_comment, - ACTIONS(5741), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [86822] = 5, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(3392), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [86839] = 3, - ACTIONS(5374), 1, + [80987] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(3), 2, + ACTIONS(5738), 1, + anon_sym_move, + STATE(147), 1, + sym_closure_parameters, + STATE(2692), 2, + sym_line_comment, sym_block_comment, + [81007] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(5740), 1, + anon_sym_SEMI, + STATE(1188), 1, + sym_declaration_list, + STATE(2693), 2, sym_line_comment, - ACTIONS(5741), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [86852] = 5, - ACTIONS(4790), 1, + sym_block_comment, + [81027] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(5188), 1, - anon_sym_LBRACE, - STATE(1231), 1, - sym_enum_variant_list, - STATE(3040), 1, + ACTIONS(5742), 1, + anon_sym_SEMI, + STATE(3482), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2694), 2, sym_line_comment, - [86869] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5746), 1, - anon_sym_SEMI, - ACTIONS(5748), 1, - anon_sym_EQ, - ACTIONS(5750), 1, - anon_sym_else, - ACTIONS(3), 2, sym_block_comment, + [81047] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5744), 1, + anon_sym_AMP_AMP, + ACTIONS(4205), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2695), 2, sym_line_comment, - [86886] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [81065] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5744), 1, + anon_sym_AMP_AMP, + ACTIONS(5746), 2, anon_sym_LBRACE, - STATE(1239), 1, - sym_declaration_list, - STATE(3023), 1, - sym_where_clause, - ACTIONS(3), 2, + anon_sym_SQUOTE, + STATE(2696), 2, + sym_line_comment, sym_block_comment, + [81083] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2697), 2, sym_line_comment, - [86903] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5752), 1, - anon_sym_SEMI, - STATE(3354), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4534), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81099] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2698), 2, sym_line_comment, - [86920] = 5, - ACTIONS(5319), 1, - anon_sym_COMMA, - ACTIONS(5321), 1, - anon_sym_GT, - ACTIONS(5531), 1, - anon_sym_EQ, - STATE(2707), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4662), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81115] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2699), 2, sym_line_comment, - [86937] = 5, - ACTIONS(1152), 1, - anon_sym_RPAREN, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4650), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81131] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2700), 2, sym_line_comment, - [86954] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1215), 1, - sym_declaration_list, - STATE(3031), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4648), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81147] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2701), 2, sym_line_comment, - [86971] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5754), 1, - anon_sym_SEMI, - STATE(3304), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4644), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81163] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(5748), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2702), 2, sym_line_comment, - [86988] = 5, - ACTIONS(4930), 1, + sym_block_comment, + [81183] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5756), 1, + ACTIONS(5750), 1, anon_sym_SEMI, - ACTIONS(5758), 1, + ACTIONS(5752), 1, anon_sym_EQ, - ACTIONS(5760), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, + STATE(2703), 2, sym_line_comment, - [87005] = 3, - ACTIONS(1458), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(3254), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [87018] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4796), 1, + [81203] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(537), 1, + ACTIONS(5754), 1, + anon_sym_SEMI, + STATE(753), 1, sym_declaration_list, - STATE(2974), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2704), 2, sym_line_comment, - [87035] = 5, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5766), 1, - anon_sym_LBRACK, - STATE(2907), 1, - sym_token_tree, - ACTIONS(3), 2, sym_block_comment, + [81223] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2705), 2, sym_line_comment, - [87052] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5673), 1, - sym_identifier, - STATE(3210), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87069] = 5, - ACTIONS(1128), 1, + ACTIONS(4598), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81239] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5674), 1, anon_sym_RPAREN, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5390), 1, + ACTIONS(5676), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2723), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2706), 2, sym_line_comment, - [87086] = 5, - ACTIONS(15), 1, + sym_block_comment, + [81259] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4678), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(193), 1, - sym_block, - STATE(3218), 1, - sym_label, - ACTIONS(3), 2, + STATE(1928), 1, + sym_type_arguments, + STATE(2707), 2, + sym_line_comment, sym_block_comment, + [81279] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(5756), 1, + anon_sym_move, + STATE(140), 1, + sym_closure_parameters, + STATE(2708), 2, sym_line_comment, - [87103] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + sym_block_comment, + [81299] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(1195), 1, + ACTIONS(5758), 1, + anon_sym_SEMI, + STATE(670), 1, sym_declaration_list, - STATE(3061), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2709), 2, sym_line_comment, - [87120] = 5, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4441), 1, - anon_sym_LT2, - STATE(1906), 1, - sym_type_arguments, - STATE(1934), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [81319] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3112), 1, + anon_sym_RPAREN, + ACTIONS(5760), 1, + anon_sym_COMMA, + STATE(2823), 1, + aux_sym_tuple_type_repeat1, + STATE(2710), 2, sym_line_comment, - [87137] = 5, - ACTIONS(4435), 1, - anon_sym_LPAREN, - ACTIONS(4788), 1, - anon_sym_LT, - STATE(2167), 1, - sym_parameters, - STATE(2981), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, + [81339] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3242), 1, + anon_sym_LBRACE, + ACTIONS(5762), 1, + anon_sym_COLON_COLON, + STATE(1336), 1, + sym_field_initializer_list, + STATE(2711), 2, sym_line_comment, - [87154] = 5, - ACTIONS(4944), 1, - anon_sym_COLON, - ACTIONS(5768), 1, - anon_sym_SEMI, - ACTIONS(5770), 1, - anon_sym_EQ, - STATE(3296), 1, - sym_trait_bounds, - ACTIONS(3), 2, sym_block_comment, + [81359] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_PIPE, + STATE(2740), 1, + aux_sym_closure_parameters_repeat1, + STATE(2712), 2, sym_line_comment, - [87171] = 5, - ACTIONS(4441), 1, + sym_block_comment, + [81379] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, anon_sym_LT2, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5673), 1, - sym_identifier, - STATE(3201), 1, + ACTIONS(4794), 1, + anon_sym_COLON_COLON, + STATE(1080), 1, sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2713), 2, sym_line_comment, - [87188] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1188), 1, - sym_field_declaration_list, - STATE(3081), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + [81399] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5660), 1, + anon_sym_COMMA, + ACTIONS(5662), 1, + anon_sym_GT, + STATE(2811), 1, + aux_sym_type_arguments_repeat1, + STATE(2714), 2, sym_line_comment, - [87205] = 5, - ACTIONS(4786), 1, - anon_sym_LBRACE, - ACTIONS(4790), 1, - anon_sym_where, - STATE(533), 1, - sym_field_declaration_list, - STATE(2968), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87222] = 5, - ACTIONS(327), 1, + [81419] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1101), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, - sym_block_comment, + STATE(1928), 1, + sym_type_arguments, + STATE(2715), 2, sym_line_comment, - [87239] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_field_declaration_list, - STATE(3088), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87256] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5182), 1, + [81439] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(510), 1, - sym_enum_variant_list, - STATE(2947), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5768), 1, + anon_sym_SEMI, + STATE(698), 1, + sym_declaration_list, + STATE(2716), 2, sym_line_comment, - [87273] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5188), 1, - anon_sym_LBRACE, - STATE(1103), 1, - sym_enum_variant_list, - STATE(3101), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87290] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, + [81459] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(1085), 1, + ACTIONS(5770), 1, + anon_sym_SEMI, + STATE(559), 1, sym_declaration_list, - STATE(3119), 1, - sym_where_clause, - ACTIONS(3), 2, + STATE(2717), 2, + sym_line_comment, sym_block_comment, + [81479] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5324), 1, + anon_sym_RPAREN, + ACTIONS(5326), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_parameters_repeat1, + STATE(2718), 2, sym_line_comment, - [87307] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4930), 1, + sym_block_comment, + [81499] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, ACTIONS(5772), 1, anon_sym_SEMI, - STATE(3267), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5774), 1, + anon_sym_RBRACK, + STATE(2719), 2, sym_line_comment, - [87324] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1079), 1, - sym_declaration_list, - STATE(3123), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + [81519] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2720), 2, sym_line_comment, - [87341] = 5, - ACTIONS(4930), 1, + sym_block_comment, + ACTIONS(4548), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81535] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5774), 1, - anon_sym_SEMI, ACTIONS(5776), 1, - anon_sym_EQ, + anon_sym_SEMI, ACTIONS(5778), 1, - anon_sym_else, - ACTIONS(3), 2, + anon_sym_EQ, + STATE(2721), 2, + sym_line_comment, sym_block_comment, + [81555] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2722), 2, sym_line_comment, - [87358] = 5, - ACTIONS(5374), 1, + sym_block_comment, + ACTIONS(4604), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(5780), 1, + anon_sym_if, + [81571] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2908), 1, anon_sym_RPAREN, - ACTIONS(5782), 1, + ACTIONS(5780), 1, anon_sym_COMMA, - STATE(2772), 1, + STATE(2847), 1, aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2723), 2, sym_line_comment, - [87375] = 5, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5784), 1, - anon_sym_RPAREN, - ACTIONS(5786), 1, - anon_sym_COMMA, - STATE(2781), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, + [81591] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2724), 2, sym_line_comment, - [87392] = 5, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5788), 1, + sym_block_comment, + ACTIONS(5782), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [81607] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2960), 1, anon_sym_RBRACK, - ACTIONS(5790), 1, + ACTIONS(5784), 1, anon_sym_COMMA, - STATE(2780), 1, + STATE(2513), 1, aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2725), 2, sym_line_comment, - [87409] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5309), 1, - anon_sym_RPAREN, - ACTIONS(5311), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [81627] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2726), 2, sym_line_comment, - [87426] = 3, - ACTIONS(5792), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4732), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4630), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - [87439] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5794), 1, + anon_sym_if, + [81643] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(5786), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2727), 2, + sym_line_comment, + sym_block_comment, + [81663] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5788), 1, anon_sym_RPAREN, - ACTIONS(5796), 1, + ACTIONS(5790), 1, anon_sym_COMMA, - STATE(2919), 1, + STATE(2756), 1, aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2728), 2, sym_line_comment, - [87456] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - STATE(3201), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5484), 2, - sym_identifier, - sym_super, - [87471] = 5, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5798), 1, + [81683] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5792), 1, + anon_sym_RBRACE, + ACTIONS(5794), 1, anon_sym_COMMA, - ACTIONS(5800), 1, - anon_sym_GT, - STATE(2770), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2824), 1, + aux_sym_struct_pattern_repeat1, + STATE(2729), 2, sym_line_comment, - [87488] = 5, - ACTIONS(327), 1, - anon_sym_LBRACE, - ACTIONS(3398), 1, - anon_sym_SQUOTE, - STATE(1169), 1, - sym_block, - STATE(3399), 1, - sym_label, - ACTIONS(3), 2, sym_block_comment, + [81703] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(696), 1, + anon_sym_RBRACK, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2730), 2, sym_line_comment, - [87505] = 5, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5802), 1, - anon_sym_SEMI, - STATE(3339), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87522] = 5, - ACTIONS(3102), 1, - anon_sym_PLUS, + [81723] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5796), 1, + anon_sym_RBRACE, ACTIONS(5798), 1, anon_sym_COMMA, - ACTIONS(5800), 1, - anon_sym_GT, - STATE(2770), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [87539] = 5, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4443), 1, - anon_sym_COLON_COLON, - ACTIONS(5804), 1, - anon_sym_for, - STATE(1908), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, + STATE(2826), 1, + aux_sym_struct_pattern_repeat1, + STATE(2731), 2, sym_line_comment, - [87556] = 4, - ACTIONS(3008), 1, - anon_sym_RPAREN, - ACTIONS(5806), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87570] = 4, - ACTIONS(4930), 1, + [81743] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5808), 1, + ACTIONS(5800), 1, anon_sym_SEMI, - ACTIONS(5810), 1, + ACTIONS(5802), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, + STATE(2732), 2, sym_line_comment, - [87584] = 2, - ACTIONS(3), 2, sym_block_comment, + [81763] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4271), 1, + anon_sym_RBRACE, + ACTIONS(5804), 1, + anon_sym_COMMA, + STATE(2962), 1, + aux_sym_use_list_repeat1, + STATE(2733), 2, sym_line_comment, - ACTIONS(5812), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87594] = 2, - ACTIONS(3), 2, sym_block_comment, + [81783] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2734), 2, sym_line_comment, - ACTIONS(5814), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87604] = 4, - ACTIONS(5816), 1, - sym_identifier, - ACTIONS(5818), 1, - anon_sym_ref, - ACTIONS(5820), 1, - sym_mutable_specifier, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(5806), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [81799] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2735), 2, sym_line_comment, - [87618] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5822), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87628] = 4, - ACTIONS(5559), 1, + ACTIONS(5808), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5824), 1, - anon_sym_PIPE, - STATE(2841), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + [81815] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4788), 1, + anon_sym_GT, + ACTIONS(5810), 1, + anon_sym_COMMA, + STATE(2907), 1, + aux_sym_type_parameters_repeat1, + STATE(2736), 2, sym_line_comment, - [87642] = 4, - ACTIONS(5826), 1, + sym_block_comment, + [81835] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5812), 1, anon_sym_RBRACE, - ACTIONS(5828), 1, + ACTIONS(5814), 1, anon_sym_COMMA, - STATE(2908), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2828), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2737), 2, sym_line_comment, - [87656] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5830), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [81855] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4784), 1, + anon_sym_GT, + ACTIONS(5816), 1, + anon_sym_COMMA, + STATE(2907), 1, + aux_sym_type_parameters_repeat1, + STATE(2738), 2, sym_line_comment, - [87670] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5832), 1, - anon_sym_SEMI, - STATE(657), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [81875] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2739), 2, sym_line_comment, - [87684] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5834), 1, - anon_sym_SEMI, - STATE(725), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(5818), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [81891] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5678), 1, + anon_sym_COMMA, + ACTIONS(5820), 1, + anon_sym_PIPE, + STATE(2798), 1, + aux_sym_closure_parameters_repeat1, + STATE(2740), 2, sym_line_comment, - [87698] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [81911] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2741), 2, sym_line_comment, - ACTIONS(5836), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [87710] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5838), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87724] = 4, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5840), 1, + ACTIONS(5822), 3, anon_sym_SEMI, - STATE(3429), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_RBRACE, + anon_sym_COMMA, + [81927] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2742), 2, sym_line_comment, - [87738] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5842), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(5824), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [81943] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4707), 1, + anon_sym_RBRACE, + ACTIONS(5826), 1, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2743), 2, sym_line_comment, - [87752] = 3, - ACTIONS(5846), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [81963] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2744), 2, sym_line_comment, - ACTIONS(5844), 2, + sym_block_comment, + ACTIONS(5828), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [87764] = 4, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(5848), 1, + [81979] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5832), 1, anon_sym_EQ, - STATE(3432), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5830), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2745), 2, sym_line_comment, - [87778] = 4, - ACTIONS(650), 1, - anon_sym_RBRACK, - ACTIONS(4069), 1, + sym_block_comment, + [81997] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4742), 1, + anon_sym_GT, + ACTIONS(5834), 1, anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, + STATE(2907), 1, + aux_sym_type_parameters_repeat1, + STATE(2746), 2, + sym_line_comment, sym_block_comment, + [82017] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4744), 1, + anon_sym_RBRACE, + ACTIONS(5836), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2747), 2, sym_line_comment, - [87792] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(3), 2, sym_block_comment, + [82037] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4740), 1, + anon_sym_GT, + ACTIONS(5838), 1, + anon_sym_COMMA, + STATE(2907), 1, + aux_sym_type_parameters_repeat1, + STATE(2748), 2, sym_line_comment, - ACTIONS(5850), 2, + sym_block_comment, + [82057] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5842), 1, + anon_sym_COLON, + ACTIONS(5840), 2, anon_sym_RBRACE, anon_sym_COMMA, - [87804] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(2749), 2, sym_line_comment, - ACTIONS(1610), 3, + sym_block_comment, + [82075] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(5844), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [87814] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4810), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, + STATE(1110), 1, + sym_declaration_list, + STATE(2750), 2, + sym_line_comment, sym_block_comment, + [82095] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_move, + STATE(150), 1, + sym_closure_parameters, + STATE(2751), 2, sym_line_comment, - [87828] = 4, - ACTIONS(3184), 1, + sym_block_comment, + [82115] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5848), 2, anon_sym_RPAREN, - ACTIONS(5852), 1, anon_sym_COMMA, - STATE(2795), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2752), 2, sym_line_comment, - [87842] = 2, - ACTIONS(3), 2, sym_block_comment, + [82133] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2753), 2, sym_line_comment, - ACTIONS(5854), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87852] = 4, - ACTIONS(5798), 1, + sym_block_comment, + ACTIONS(5850), 3, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(5800), 1, anon_sym_GT, - STATE(2770), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + [82149] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5852), 1, + sym_identifier, + ACTIONS(5854), 1, + anon_sym_await, + ACTIONS(5856), 1, + sym_integer_literal, + STATE(2754), 2, + sym_line_comment, sym_block_comment, + [82169] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5858), 1, + anon_sym_RBRACE, + ACTIONS(5860), 1, + anon_sym_COMMA, + STATE(2755), 3, sym_line_comment, - [87866] = 2, - ACTIONS(3), 2, sym_block_comment, + aux_sym_enum_variant_list_repeat2, + [82187] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5863), 1, + anon_sym_RPAREN, + ACTIONS(5865), 1, + anon_sym_COMMA, + STATE(2756), 3, sym_line_comment, - ACTIONS(4445), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87876] = 2, - ACTIONS(3), 2, sym_block_comment, + aux_sym_ordered_field_declaration_list_repeat1, + [82205] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5868), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2757), 2, sym_line_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, + sym_block_comment, + [82223] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, anon_sym_PIPE, - anon_sym_if, - [87886] = 4, - ACTIONS(5309), 1, - anon_sym_RPAREN, - ACTIONS(5311), 1, + ACTIONS(5870), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2773), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + STATE(2758), 2, + sym_line_comment, sym_block_comment, + [82241] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5872), 1, + anon_sym_RBRACE, + ACTIONS(5874), 1, + anon_sym_COMMA, + STATE(2759), 3, sym_line_comment, - [87900] = 4, - ACTIONS(4930), 1, + sym_block_comment, + aux_sym_struct_pattern_repeat1, + [82259] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(5856), 1, + ACTIONS(5877), 1, anon_sym_SEMI, - ACTIONS(5858), 1, + ACTIONS(5879), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, + STATE(2760), 2, sym_line_comment, - [87914] = 3, - ACTIONS(5860), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [82279] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5881), 1, + anon_sym_RBRACE, + ACTIONS(5883), 1, + anon_sym_COMMA, + STATE(2761), 3, sym_line_comment, - ACTIONS(5862), 2, - anon_sym_default, - anon_sym_union, - [87926] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5864), 1, - anon_sym_SEMI, - STATE(680), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + aux_sym_field_declaration_list_repeat1, + [82297] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2762), 2, sym_line_comment, - [87940] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5866), 1, - anon_sym_SEMI, - STATE(661), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87954] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5868), 1, + ACTIONS(5886), 3, anon_sym_SEMI, - STATE(583), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_RBRACE, + anon_sym_COMMA, + [82313] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5888), 1, + anon_sym_RBRACE, + ACTIONS(5890), 1, + anon_sym_COMMA, + STATE(2848), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2763), 2, sym_line_comment, - [87968] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5870), 1, - anon_sym_SEMI, - STATE(576), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [87982] = 4, - ACTIONS(3078), 1, - anon_sym_RBRACK, - ACTIONS(5872), 1, + [82333] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5892), 1, anon_sym_COMMA, - STATE(2606), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5895), 1, + anon_sym_GT, + STATE(2764), 3, sym_line_comment, - [87996] = 4, - ACTIONS(4788), 1, - anon_sym_LT, - ACTIONS(5874), 1, - anon_sym_EQ, - STATE(3244), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, + aux_sym_for_lifetimes_repeat1, + [82351] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5897), 1, + anon_sym_SEMI, + STATE(3359), 1, + sym_where_clause, + STATE(2765), 2, sym_line_comment, - [88010] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5876), 2, + [82371] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4711), 1, anon_sym_RBRACE, + ACTIONS(5899), 1, anon_sym_COMMA, - [88022] = 4, - ACTIONS(5878), 1, - anon_sym_RPAREN, - ACTIONS(5880), 1, - anon_sym_COMMA, - STATE(2756), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + STATE(2761), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2766), 2, + sym_line_comment, + sym_block_comment, + [82391] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2920), 1, + anon_sym_SQUOTE, + ACTIONS(5901), 1, + anon_sym_GT, + STATE(3117), 1, + sym_lifetime, + STATE(2767), 2, + sym_line_comment, sym_block_comment, + [82411] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2768), 2, sym_line_comment, - [88036] = 4, - ACTIONS(5882), 1, + sym_block_comment, + ACTIONS(5903), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5884), 1, anon_sym_COMMA, - STATE(2783), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + [82427] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2769), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4578), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82443] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4480), 1, + anon_sym_COLON, + STATE(2491), 1, + sym_trait_bounds, + STATE(2770), 2, sym_line_comment, - [88050] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [82463] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2771), 2, sym_line_comment, - ACTIONS(5886), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [88062] = 4, - ACTIONS(5888), 1, + sym_block_comment, + ACTIONS(5364), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5890), 1, anon_sym_COMMA, - STATE(2785), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + [82479] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2772), 2, sym_line_comment, - [88076] = 4, - ACTIONS(4930), 1, + sym_block_comment, + ACTIONS(4608), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82495] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5905), 1, anon_sym_PLUS, - ACTIONS(5892), 1, + ACTIONS(5907), 1, + anon_sym_GT, + ACTIONS(5909), 1, + anon_sym_as, + STATE(2773), 2, + sym_line_comment, + sym_block_comment, + [82515] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(5911), 1, anon_sym_SEMI, - ACTIONS(5894), 1, - anon_sym_EQ, - ACTIONS(3), 2, + STATE(1117), 1, + sym_declaration_list, + STATE(2774), 2, + sym_line_comment, sym_block_comment, + [82535] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1199), 1, + anon_sym_RPAREN, + ACTIONS(5913), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_parameters_repeat1, + STATE(2775), 2, sym_line_comment, - [88090] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(5896), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [82555] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4480), 1, + anon_sym_COLON, + ACTIONS(4709), 1, + anon_sym_COLON_COLON, + STATE(2491), 1, + sym_trait_bounds, + STATE(2776), 2, sym_line_comment, - [88104] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5898), 1, - anon_sym_SEMI, - ACTIONS(5900), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [82575] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5915), 1, + anon_sym_SEMI, + STATE(3497), 1, + sym_where_clause, + STATE(2777), 2, sym_line_comment, - [88118] = 4, - ACTIONS(5780), 1, + sym_block_comment, + [82595] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2978), 1, anon_sym_RPAREN, - ACTIONS(5782), 1, + ACTIONS(5917), 1, anon_sym_COMMA, - STATE(2772), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, + STATE(2513), 1, + aux_sym_slice_pattern_repeat1, + STATE(2778), 2, + sym_line_comment, sym_block_comment, + [82615] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4726), 1, + anon_sym_RBRACE, + ACTIONS(5919), 1, + anon_sym_COMMA, + STATE(2963), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2779), 2, sym_line_comment, - [88132] = 4, - ACTIONS(4796), 1, + sym_block_comment, + [82635] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(5902), 1, + ACTIONS(5921), 1, anon_sym_SEMI, - STATE(699), 1, + STATE(1311), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(2780), 2, + sym_line_comment, sym_block_comment, + [82655] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2781), 2, sym_line_comment, - [88146] = 4, - ACTIONS(5904), 1, + sym_block_comment, + ACTIONS(4606), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82671] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5923), 1, anon_sym_RBRACE, - ACTIONS(5906), 1, + ACTIONS(5925), 1, anon_sym_COMMA, - STATE(2787), 1, + STATE(2883), 1, aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, + STATE(2782), 2, sym_line_comment, - [88160] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5908), 1, - anon_sym_SEMI, - STATE(519), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [82691] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(5927), 1, + anon_sym_SEMI, + STATE(3384), 1, + sym_where_clause, + STATE(2783), 2, sym_line_comment, - [88174] = 3, - ACTIONS(5910), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [82711] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2784), 2, sym_line_comment, - ACTIONS(5912), 2, - anon_sym_default, - anon_sym_union, - [88186] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5914), 1, - anon_sym_SEMI, - STATE(497), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4600), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82727] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5929), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2785), 2, sym_line_comment, - [88200] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(5916), 1, - anon_sym_SEMI, - STATE(504), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [82745] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2786), 2, sym_line_comment, - [88214] = 2, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4628), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82761] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2787), 2, sym_line_comment, - ACTIONS(5918), 3, + sym_block_comment, + ACTIONS(4602), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82777] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5931), 1, anon_sym_SEMI, + ACTIONS(5933), 1, + anon_sym_EQ, + STATE(2788), 2, + sym_line_comment, + sym_block_comment, + [82797] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5935), 1, anon_sym_RBRACE, + ACTIONS(5937), 1, anon_sym_COMMA, - [88224] = 4, - ACTIONS(4363), 1, - anon_sym_RBRACE, - ACTIONS(5920), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2881), 1, + aux_sym_struct_pattern_repeat1, + STATE(2789), 2, sym_line_comment, - [88238] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5922), 3, + [82817] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5939), 1, anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5941), 1, + anon_sym_EQ, + STATE(2790), 2, + sym_line_comment, + sym_block_comment, + [82837] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(686), 1, + anon_sym_RPAREN, + ACTIONS(3979), 1, anon_sym_COMMA, - [88248] = 2, - ACTIONS(3), 2, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2791), 2, + sym_line_comment, sym_block_comment, + [82857] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2792), 2, sym_line_comment, - ACTIONS(5924), 3, + sym_block_comment, + ACTIONS(1500), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + [82873] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5943), 2, anon_sym_COMMA, - [88258] = 4, - ACTIONS(4865), 1, anon_sym_GT, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + STATE(2793), 2, + sym_line_comment, sym_block_comment, + [82891] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(676), 1, + anon_sym_RPAREN, + ACTIONS(3977), 1, + anon_sym_COMMA, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2794), 2, sym_line_comment, - [88272] = 2, - ACTIONS(3), 2, sym_block_comment, + [82911] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(5945), 1, + anon_sym_move, + STATE(149), 1, + sym_closure_parameters, + STATE(2795), 2, sym_line_comment, - ACTIONS(5928), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + sym_block_comment, + [82931] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3927), 1, + anon_sym_COLON_COLON, + ACTIONS(5105), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [88282] = 4, - ACTIONS(4863), 1, - anon_sym_GT, - ACTIONS(5930), 1, + STATE(2796), 2, + sym_line_comment, + sym_block_comment, + [82949] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(5947), 1, + anon_sym_move, + STATE(125), 1, + sym_closure_parameters, + STATE(2797), 2, + sym_line_comment, + sym_block_comment, + [82969] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5949), 1, anon_sym_COMMA, - STATE(2872), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + ACTIONS(5952), 1, + anon_sym_PIPE, + STATE(2798), 3, + sym_line_comment, sym_block_comment, + aux_sym_closure_parameters_repeat1, + [82987] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(5954), 1, + anon_sym_move, + STATE(129), 1, + sym_closure_parameters, + STATE(2799), 2, sym_line_comment, - [88296] = 2, - ACTIONS(3), 2, sym_block_comment, + [83007] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2800), 2, sym_line_comment, - ACTIONS(5932), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + sym_block_comment, + ACTIONS(5956), 3, + anon_sym_EQ, anon_sym_COMMA, - [88306] = 4, - ACTIONS(4808), 1, + anon_sym_GT, + [83023] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, anon_sym_LBRACE, - ACTIONS(5934), 1, - anon_sym_SEMI, - STATE(1110), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5958), 1, + anon_sym_COLON_COLON, + STATE(1676), 1, + sym_field_initializer_list, + STATE(2801), 2, sym_line_comment, - [88320] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5936), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88330] = 4, - ACTIONS(5319), 1, + [83043] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5574), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5321), 1, - anon_sym_GT, - STATE(2707), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + STATE(2802), 2, + sym_line_comment, sym_block_comment, + [83061] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5558), 1, + anon_sym_RPAREN, + ACTIONS(5960), 1, + anon_sym_COMMA, + STATE(2803), 3, sym_line_comment, - [88344] = 2, - ACTIONS(3), 2, sym_block_comment, + aux_sym_parameters_repeat1, + [83079] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2804), 2, sym_line_comment, - ACTIONS(5938), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + sym_block_comment, + ACTIONS(5963), 3, + sym__string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [83095] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1191), 1, + anon_sym_RPAREN, + ACTIONS(5965), 1, anon_sym_COMMA, - [88354] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(3), 2, + STATE(2803), 1, + aux_sym_parameters_repeat1, + STATE(2805), 2, + sym_line_comment, sym_block_comment, + [83115] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3927), 1, + anon_sym_COLON_COLON, + ACTIONS(5967), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2806), 2, sym_line_comment, - ACTIONS(5940), 2, - anon_sym_RBRACE, + sym_block_comment, + [83133] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(684), 1, + anon_sym_RBRACK, + ACTIONS(5969), 1, anon_sym_COMMA, - [88366] = 4, - ACTIONS(4646), 1, - anon_sym_COLON_COLON, - ACTIONS(4754), 1, - anon_sym_BANG, - ACTIONS(5942), 1, - sym_identifier, - ACTIONS(3), 2, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2807), 2, + sym_line_comment, sym_block_comment, + [83153] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4709), 1, + anon_sym_COLON_COLON, + STATE(1933), 1, + sym_type_arguments, + STATE(2808), 2, sym_line_comment, - [88380] = 4, - ACTIONS(3352), 1, + sym_block_comment, + [83173] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3242), 1, anon_sym_LBRACE, - ACTIONS(5944), 1, + ACTIONS(5971), 1, anon_sym_COLON_COLON, - STATE(1290), 1, + STATE(1336), 1, sym_field_initializer_list, - ACTIONS(3), 2, + STATE(2809), 2, + sym_line_comment, sym_block_comment, + [83193] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(5558), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2810), 2, sym_line_comment, - [88394] = 4, - ACTIONS(5946), 1, - sym_identifier, - ACTIONS(5948), 1, - anon_sym_ref, - ACTIONS(5950), 1, - sym_mutable_specifier, - ACTIONS(3), 2, sym_block_comment, + [83211] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1630), 1, + anon_sym_GT, + ACTIONS(5973), 1, + anon_sym_COMMA, + STATE(2842), 1, + aux_sym_type_arguments_repeat1, + STATE(2811), 2, sym_line_comment, - [88408] = 3, - ACTIONS(4023), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [83231] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4730), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2812), 2, sym_line_comment, - ACTIONS(5952), 2, + sym_block_comment, + [83251] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1197), 1, anon_sym_RPAREN, + ACTIONS(5380), 1, anon_sym_COMMA, - [88420] = 4, - ACTIONS(3208), 1, + STATE(2805), 1, + aux_sym_parameters_repeat1, + STATE(2813), 2, + sym_line_comment, + sym_block_comment, + [83271] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1146), 1, anon_sym_RPAREN, - ACTIONS(5954), 1, + ACTIONS(5231), 1, anon_sym_COMMA, - STATE(2795), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2803), 1, + aux_sym_parameters_repeat1, + STATE(2814), 2, sym_line_comment, - [88434] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(5956), 1, - anon_sym_SEMI, - ACTIONS(5958), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [88448] = 4, - ACTIONS(5960), 1, + [83291] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5975), 1, anon_sym_RBRACE, - ACTIONS(5962), 1, + ACTIONS(5977), 1, anon_sym_COMMA, - STATE(2732), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2878), 1, + aux_sym_struct_pattern_repeat1, + STATE(2815), 2, sym_line_comment, - [88462] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(938), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88472] = 4, - ACTIONS(5964), 1, + [83311] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5981), 1, + anon_sym_COLON, + ACTIONS(5979), 2, anon_sym_RBRACE, - ACTIONS(5966), 1, anon_sym_COMMA, - STATE(2807), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2816), 2, sym_line_comment, - [88486] = 2, - ACTIONS(3), 2, sym_block_comment, + [83329] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1146), 1, + anon_sym_RPAREN, + ACTIONS(5231), 1, + anon_sym_COMMA, + STATE(2887), 1, + aux_sym_parameters_repeat1, + STATE(2817), 2, sym_line_comment, - ACTIONS(4766), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88496] = 4, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5968), 1, - anon_sym_SEMI, - STATE(3262), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + [83349] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5081), 1, + anon_sym_COMMA, + ACTIONS(5083), 1, + anon_sym_GT, + STATE(2736), 1, + aux_sym_type_parameters_repeat1, + STATE(2818), 2, sym_line_comment, - [88510] = 4, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(5970), 1, - anon_sym_move, - STATE(149), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [83369] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1197), 1, + anon_sym_RPAREN, + ACTIONS(5380), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_parameters_repeat1, + STATE(2819), 2, sym_line_comment, - [88524] = 2, - ACTIONS(3), 2, sym_block_comment, + [83389] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(672), 1, + anon_sym_RBRACK, + ACTIONS(5983), 1, + anon_sym_COMMA, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2820), 2, sym_line_comment, - ACTIONS(4776), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88534] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4768), 3, + [83409] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5985), 1, anon_sym_EQ_GT, + ACTIONS(5987), 1, anon_sym_PIPE, + ACTIONS(5989), 1, anon_sym_if, - [88544] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(5972), 1, - anon_sym_SEMI, - STATE(1176), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2821), 2, sym_line_comment, - [88558] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [83429] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2958), 1, + anon_sym_RPAREN, + ACTIONS(5991), 1, + anon_sym_COMMA, + STATE(2513), 1, + aux_sym_slice_pattern_repeat1, + STATE(2822), 2, sym_line_comment, - ACTIONS(5541), 2, + sym_block_comment, + [83449] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5716), 1, anon_sym_RPAREN, + ACTIONS(5993), 1, anon_sym_COMMA, - [88570] = 2, - ACTIONS(3), 2, + STATE(2823), 3, + sym_line_comment, sym_block_comment, + aux_sym_tuple_type_repeat1, + [83467] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5003), 1, + anon_sym_RBRACE, + ACTIONS(5996), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_struct_pattern_repeat1, + STATE(2824), 2, sym_line_comment, - ACTIONS(4764), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88580] = 2, - ACTIONS(3), 2, sym_block_comment, + [83487] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2825), 2, sym_line_comment, - ACTIONS(4770), 3, + sym_block_comment, + ACTIONS(4638), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88590] = 4, - ACTIONS(4859), 1, + [83503] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5001), 1, anon_sym_RBRACE, - ACTIONS(5974), 1, + ACTIONS(5998), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [88604] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(5976), 1, - anon_sym_SEMI, - STATE(1090), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2759), 1, + aux_sym_struct_pattern_repeat1, + STATE(2826), 2, sym_line_comment, - [88618] = 4, - ACTIONS(662), 1, - anon_sym_RBRACK, - ACTIONS(4121), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [83523] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2827), 2, sym_line_comment, - [88632] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4760), 3, + ACTIONS(4640), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88642] = 3, - ACTIONS(5980), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + [83539] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4746), 1, + anon_sym_RBRACE, + ACTIONS(6000), 1, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2828), 2, sym_line_comment, - ACTIONS(5978), 2, + sym_block_comment, + [83559] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4746), 1, anon_sym_RBRACE, + ACTIONS(6000), 1, anon_sym_COMMA, - [88654] = 2, - ACTIONS(3), 2, + STATE(2893), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2829), 2, + sym_line_comment, sym_block_comment, + [83579] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2830), 2, sym_line_comment, - ACTIONS(4732), 3, + sym_block_comment, + ACTIONS(4642), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88664] = 4, - ACTIONS(4857), 1, - anon_sym_RBRACE, - ACTIONS(5982), 1, + [83595] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1628), 1, + anon_sym_GT, + ACTIONS(6002), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2842), 1, + aux_sym_type_arguments_repeat1, + STATE(2831), 2, sym_line_comment, - [88678] = 4, - ACTIONS(5984), 1, - anon_sym_PLUS, - ACTIONS(5986), 1, - anon_sym_GT, - ACTIONS(5988), 1, - anon_sym_as, - ACTIONS(3), 2, sym_block_comment, + [83615] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1185), 1, + anon_sym_RPAREN, + ACTIONS(5328), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_parameters_repeat1, + STATE(2832), 2, sym_line_comment, - [88692] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(1588), 3, - anon_sym_SEMI, + [83635] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1185), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [88702] = 4, - ACTIONS(5990), 1, - anon_sym_RBRACE, - ACTIONS(5992), 1, + ACTIONS(5328), 1, anon_sym_COMMA, - STATE(2738), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2775), 1, + aux_sym_parameters_repeat1, + STATE(2833), 2, sym_line_comment, - [88716] = 4, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(5994), 1, - anon_sym_SEMI, - STATE(3287), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [88730] = 4, - ACTIONS(5996), 1, - anon_sym_RBRACE, - ACTIONS(5998), 1, + [83655] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(662), 1, + anon_sym_RBRACK, + ACTIONS(4037), 1, anon_sym_COMMA, - STATE(2853), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2834), 2, sym_line_comment, - [88744] = 2, - ACTIONS(3), 2, sym_block_comment, + [83675] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2835), 2, sym_line_comment, - ACTIONS(6000), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88754] = 4, - ACTIONS(4875), 1, - anon_sym_RBRACE, - ACTIONS(6002), 1, - anon_sym_COMMA, - STATE(2746), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [88768] = 4, - ACTIONS(6004), 1, - anon_sym_RBRACE, + ACTIONS(6004), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83691] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1626), 1, + anon_sym_GT, ACTIONS(6006), 1, anon_sym_COMMA, - STATE(2746), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [88782] = 4, - ACTIONS(5551), 1, - anon_sym_COMMA, - ACTIONS(5553), 1, - anon_sym_GT, - STATE(2798), 1, + STATE(2842), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2836), 2, sym_line_comment, - [88796] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6009), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88806] = 4, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(6011), 1, + [83711] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(6008), 1, anon_sym_SEMI, - STATE(3453), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(1173), 1, + sym_declaration_list, + STATE(2837), 2, sym_line_comment, - [88820] = 4, - ACTIONS(668), 1, - anon_sym_RPAREN, - ACTIONS(4067), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [88834] = 4, - ACTIONS(3024), 1, + [83731] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2920), 1, anon_sym_SQUOTE, - ACTIONS(6013), 1, + ACTIONS(6010), 1, anon_sym_GT, - STATE(3075), 1, + STATE(3117), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, + STATE(2838), 2, sym_line_comment, - [88848] = 4, - ACTIONS(5559), 1, + sym_block_comment, + [83751] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6010), 1, + anon_sym_GT, + ACTIONS(6012), 1, anon_sym_COMMA, - ACTIONS(6015), 1, - anon_sym_PIPE, - STATE(2657), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, + STATE(2764), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2839), 2, + sym_line_comment, sym_block_comment, + [83771] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(6014), 1, + anon_sym_SEMI, + STATE(1189), 1, + sym_declaration_list, + STATE(2840), 2, sym_line_comment, - [88862] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [83791] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2976), 1, + anon_sym_RBRACK, + ACTIONS(6016), 1, + anon_sym_COMMA, + STATE(2513), 1, + aux_sym_slice_pattern_repeat1, + STATE(2841), 2, sym_line_comment, - ACTIONS(6017), 2, - anon_sym_RBRACE, + sym_block_comment, + [83811] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6018), 1, anon_sym_COMMA, - [88874] = 4, - ACTIONS(6019), 1, - anon_sym_RBRACE, ACTIONS(6021), 1, - anon_sym_COMMA, - STATE(2702), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_GT, + STATE(2842), 3, sym_line_comment, - [88888] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4746), 1, - anon_sym_LBRACE, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [88902] = 4, - ACTIONS(6023), 1, + aux_sym_type_arguments_repeat1, + [83829] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2910), 1, anon_sym_RPAREN, - ACTIONS(6025), 1, + ACTIONS(6023), 1, anon_sym_COMMA, - STATE(2756), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2847), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2843), 2, sym_line_comment, - [88916] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6028), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [88928] = 4, - ACTIONS(6030), 1, - anon_sym_RPAREN, - ACTIONS(6032), 1, + [83849] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3002), 1, + anon_sym_PLUS, + ACTIONS(6021), 2, anon_sym_COMMA, - STATE(2756), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_GT, + STATE(2844), 2, sym_line_comment, - [88942] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6034), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88952] = 4, - ACTIONS(4930), 1, + [83867] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(6036), 1, + ACTIONS(6025), 1, anon_sym_SEMI, - ACTIONS(6038), 1, + ACTIONS(6027), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, + STATE(2845), 2, sym_line_comment, - [88966] = 4, - ACTIONS(5293), 1, + sym_block_comment, + [83887] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6029), 2, anon_sym_RPAREN, - ACTIONS(5295), 1, anon_sym_COMMA, - STATE(2801), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + STATE(2846), 2, + sym_line_comment, sym_block_comment, + [83905] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6029), 1, + anon_sym_RPAREN, + ACTIONS(6031), 1, + anon_sym_COMMA, + STATE(2847), 3, sym_line_comment, - [88980] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(6040), 1, - anon_sym_LBRACE, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + aux_sym_tuple_pattern_repeat1, + [83923] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4756), 1, + anon_sym_RBRACE, + ACTIONS(6034), 1, + anon_sym_COMMA, + STATE(2761), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2848), 2, sym_line_comment, - [88994] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [83943] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4756), 1, + anon_sym_RBRACE, + ACTIONS(6034), 1, + anon_sym_COMMA, + STATE(2908), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2849), 2, sym_line_comment, - ACTIONS(6042), 2, + sym_block_comment, + [83963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6021), 2, anon_sym_COMMA, anon_sym_GT, - [89006] = 2, - ACTIONS(3), 2, + STATE(2850), 2, + sym_line_comment, sym_block_comment, + [83981] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6036), 1, + sym_identifier, + ACTIONS(6038), 1, + anon_sym_ref, + ACTIONS(6040), 1, + sym_mutable_specifier, + STATE(2851), 2, sym_line_comment, - ACTIONS(4730), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89016] = 2, - ACTIONS(3), 2, sym_block_comment, + [84001] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(6042), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_declaration_list, + STATE(2852), 2, sym_line_comment, - ACTIONS(4710), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89026] = 4, - ACTIONS(672), 1, - anon_sym_RBRACK, - ACTIONS(6044), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [84021] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(6044), 1, + anon_sym_SEMI, + STATE(744), 1, + sym_declaration_list, + STATE(2853), 2, sym_line_comment, - [89040] = 4, - ACTIONS(3352), 1, + sym_block_comment, + [84041] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, ACTIONS(6046), 1, - anon_sym_COLON_COLON, - STATE(1290), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_SEMI, + STATE(1232), 1, + sym_declaration_list, + STATE(2854), 2, sym_line_comment, - [89054] = 4, - ACTIONS(692), 1, + sym_block_comment, + [84061] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5384), 1, anon_sym_RPAREN, - ACTIONS(4065), 1, + ACTIONS(5386), 1, anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2819), 1, + aux_sym_parameters_repeat1, + STATE(2855), 2, sym_line_comment, - [89068] = 3, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, sym_block_comment, + [84081] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6048), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2856), 2, sym_line_comment, - ACTIONS(4269), 2, + sym_block_comment, + [84099] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, - [89080] = 4, - ACTIONS(1740), 1, - anon_sym_GT, ACTIONS(6050), 1, + anon_sym_SEMI, + STATE(556), 1, + sym_declaration_list, + STATE(2857), 2, + sym_line_comment, + sym_block_comment, + [84119] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5518), 1, anon_sym_COMMA, - STATE(2876), 1, + ACTIONS(5520), 1, + anon_sym_GT, + STATE(2836), 1, aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2858), 2, sym_line_comment, - [89094] = 3, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, + [84139] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(6052), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [89106] = 4, - ACTIONS(3014), 1, - anon_sym_RPAREN, - ACTIONS(6054), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [89120] = 4, - ACTIONS(1128), 1, anon_sym_RPAREN, - ACTIONS(5390), 1, anon_sym_COMMA, - STATE(2803), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [89134] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(2859), 2, sym_line_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89144] = 4, - ACTIONS(6056), 1, - anon_sym_EQ_GT, - ACTIONS(6058), 1, - anon_sym_PIPE, - ACTIONS(6060), 1, - anon_sym_if, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [89158] = 4, - ACTIONS(1128), 1, + [84157] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6054), 1, anon_sym_RPAREN, - ACTIONS(5390), 1, + ACTIONS(6056), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [89172] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4714), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89182] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(2756), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2860), 2, sym_line_comment, - ACTIONS(4692), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89192] = 2, - ACTIONS(3), 2, sym_block_comment, + [84177] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2861), 2, sym_line_comment, - ACTIONS(4704), 3, + sym_block_comment, + ACTIONS(4676), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89202] = 4, - ACTIONS(3070), 1, - anon_sym_RBRACK, - ACTIONS(6062), 1, - anon_sym_COMMA, - STATE(2606), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + [84193] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6058), 1, + anon_sym_SEMI, + ACTIONS(6060), 1, + anon_sym_EQ, + STATE(2862), 2, sym_line_comment, - [89216] = 4, - ACTIONS(3076), 1, - anon_sym_RPAREN, - ACTIONS(6064), 1, - anon_sym_COMMA, - STATE(2606), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [89230] = 4, - ACTIONS(4790), 1, + [84213] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, anon_sym_where, - ACTIONS(6066), 1, + ACTIONS(6062), 1, anon_sym_SEMI, - STATE(3428), 1, + STATE(3255), 1, sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(2863), 2, sym_line_comment, - [89244] = 4, - ACTIONS(5133), 1, - anon_sym_RBRACE, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(2823), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, + [84233] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2864), 2, sym_line_comment, - [89258] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4718), 3, + ACTIONS(4351), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89268] = 4, - ACTIONS(5141), 1, - anon_sym_RBRACE, - ACTIONS(6070), 1, + [84249] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(6064), 1, + anon_sym_SEMI, + STATE(3458), 1, + sym_where_clause, + STATE(2865), 2, + sym_line_comment, + sym_block_comment, + [84269] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3108), 1, + anon_sym_RPAREN, + ACTIONS(6066), 1, anon_sym_COMMA, STATE(2823), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + aux_sym_tuple_type_repeat1, + STATE(2866), 2, sym_line_comment, - [89282] = 4, - ACTIONS(3831), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, - anon_sym_COLON_COLON, - STATE(1639), 1, - sym_field_initializer_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [89296] = 4, - ACTIONS(4800), 1, + [84289] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6068), 2, anon_sym_RBRACE, - ACTIONS(6074), 1, anon_sym_COMMA, - STATE(2830), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, + STATE(2867), 2, sym_line_comment, - [89310] = 4, - ACTIONS(4800), 1, - anon_sym_RBRACE, - ACTIONS(6074), 1, + sym_block_comment, + [84307] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6070), 1, anon_sym_COMMA, - STATE(2852), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, + ACTIONS(6072), 1, + anon_sym_GT, + STATE(2839), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2868), 2, + sym_line_comment, sym_block_comment, + [84327] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2869), 2, sym_line_comment, - [89324] = 4, - ACTIONS(4796), 1, + sym_block_comment, + ACTIONS(6074), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [84343] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, ACTIONS(6076), 1, anon_sym_SEMI, - STATE(562), 1, + STATE(607), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2870), 2, sym_line_comment, - [89338] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4616), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89348] = 4, - ACTIONS(4790), 1, - anon_sym_where, + [84363] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3002), 1, + anon_sym_PLUS, ACTIONS(6078), 1, - anon_sym_SEMI, - STATE(3310), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [89362] = 4, - ACTIONS(31), 1, - anon_sym_PIPE, + sym_mutable_specifier, ACTIONS(6080), 1, - anon_sym_move, - STATE(147), 1, - sym_closure_parameters, - ACTIONS(3), 2, - sym_block_comment, + sym_self, + STATE(2871), 2, sym_line_comment, - [89376] = 4, - ACTIONS(688), 1, - anon_sym_RBRACK, - ACTIONS(6082), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [84383] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5215), 1, + anon_sym_RPAREN, + ACTIONS(5217), 1, + anon_sym_COMMA, + STATE(2832), 1, + aux_sym_parameters_repeat1, + STATE(2872), 2, sym_line_comment, - [89390] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, + [84403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6082), 1, + sym_identifier, ACTIONS(6084), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [89402] = 4, - ACTIONS(6084), 1, + anon_sym_default, + anon_sym_union, + STATE(2873), 2, + sym_line_comment, + sym_block_comment, + [84421] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(652), 1, anon_sym_RPAREN, ACTIONS(6086), 1, anon_sym_COMMA, - STATE(2795), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2874), 2, + sym_line_comment, + sym_block_comment, + [84441] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6090), 1, + anon_sym_COLON, + ACTIONS(6088), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2875), 2, + sym_line_comment, sym_block_comment, + [84459] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6092), 1, + anon_sym_SEMI, + ACTIONS(6094), 1, + anon_sym_RBRACK, + STATE(2876), 2, sym_line_comment, - [89416] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [84479] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(6089), 1, + ACTIONS(6096), 1, anon_sym_SEMI, - STATE(1159), 1, + STATE(610), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2877), 2, sym_line_comment, - [89430] = 4, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(6091), 1, - anon_sym_move, - STATE(150), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [89444] = 4, - ACTIONS(1732), 1, - anon_sym_GT, - ACTIONS(6093), 1, + [84499] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5009), 1, + anon_sym_RBRACE, + ACTIONS(6098), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2759), 1, + aux_sym_struct_pattern_repeat1, + STATE(2878), 2, sym_line_comment, - [89458] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [84519] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(6095), 1, + ACTIONS(6100), 1, anon_sym_SEMI, - STATE(1179), 1, + STATE(640), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2879), 2, sym_line_comment, - [89472] = 2, - ACTIONS(3), 2, sym_block_comment, + [84539] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LT2, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + STATE(1559), 1, + sym_type_arguments, + STATE(2880), 2, sym_line_comment, - ACTIONS(4702), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89482] = 4, - ACTIONS(1152), 1, - anon_sym_RPAREN, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2803), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [84559] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5029), 1, + anon_sym_RBRACE, + ACTIONS(6102), 1, + anon_sym_COMMA, + STATE(2759), 1, + aux_sym_struct_pattern_repeat1, + STATE(2881), 2, sym_line_comment, - [89496] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4670), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89506] = 4, - ACTIONS(5655), 1, - anon_sym_RPAREN, - ACTIONS(6097), 1, + [84579] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6106), 1, + anon_sym_EQ, + ACTIONS(6104), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2803), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + STATE(2882), 2, + sym_line_comment, sym_block_comment, + [84597] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4728), 1, + anon_sym_RBRACE, + ACTIONS(6108), 1, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2883), 2, sym_line_comment, - [89520] = 4, - ACTIONS(4930), 1, + sym_block_comment, + [84617] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(6100), 1, + ACTIONS(6110), 1, anon_sym_SEMI, - ACTIONS(6102), 1, - anon_sym_EQ, - ACTIONS(3), 2, + ACTIONS(6112), 1, + anon_sym_RBRACK, + STATE(2884), 2, + sym_line_comment, sym_block_comment, + [84637] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4728), 1, + anon_sym_RBRACE, + ACTIONS(6108), 1, + anon_sym_COMMA, + STATE(2743), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2885), 2, sym_line_comment, - [89534] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(6104), 1, - anon_sym_SEMI, - STATE(740), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [84657] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5492), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_GT, + STATE(2831), 1, + aux_sym_type_arguments_repeat1, + STATE(2886), 2, sym_line_comment, - [89548] = 4, - ACTIONS(1152), 1, + sym_block_comment, + [84677] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1187), 1, anon_sym_RPAREN, - ACTIONS(5462), 1, + ACTIONS(6114), 1, anon_sym_COMMA, - STATE(2844), 1, + STATE(2803), 1, aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [89562] = 4, - ACTIONS(4818), 1, - anon_sym_RBRACE, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(2746), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2887), 2, sym_line_comment, - [89576] = 4, - ACTIONS(4818), 1, - anon_sym_RBRACE, - ACTIONS(6106), 1, - anon_sym_COMMA, - STATE(2867), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [89590] = 4, - ACTIONS(4796), 1, + [84697] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(6108), 1, + ACTIONS(6116), 1, anon_sym_SEMI, - STATE(744), 1, + STATE(651), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2888), 2, sym_line_comment, - [89604] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6110), 2, + [84717] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5376), 1, + anon_sym_COLON, + ACTIONS(5952), 2, anon_sym_COMMA, - anon_sym_GT, - [89616] = 4, - ACTIONS(31), 1, anon_sym_PIPE, - ACTIONS(6112), 1, - anon_sym_move, - STATE(142), 1, - sym_closure_parameters, - ACTIONS(3), 2, + STATE(2889), 2, + sym_line_comment, sym_block_comment, + [84735] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2890), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4680), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84751] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2891), 2, sym_line_comment, - [89630] = 3, - ACTIONS(6116), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4674), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84767] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2892), 2, sym_line_comment, - ACTIONS(6114), 2, + sym_block_comment, + ACTIONS(4672), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84783] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4705), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [89642] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, ACTIONS(6118), 1, - anon_sym_SEMI, - STATE(1211), 1, - sym_declaration_list, - ACTIONS(3), 2, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2893), 2, + sym_line_comment, sym_block_comment, + [84803] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2894), 2, sym_line_comment, - [89656] = 4, - ACTIONS(4796), 1, + sym_block_comment, + ACTIONS(4670), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84819] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2895), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4668), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84835] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, ACTIONS(6120), 1, anon_sym_SEMI, - STATE(756), 1, + STATE(1272), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2896), 2, sym_line_comment, - [89670] = 4, - ACTIONS(4796), 1, + sym_block_comment, + [84855] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, ACTIONS(6122), 1, anon_sym_SEMI, - STATE(761), 1, + STATE(1281), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2897), 2, sym_line_comment, - [89684] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6124), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [84875] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6124), 2, anon_sym_COMMA, - [89694] = 4, + anon_sym_GT, + STATE(2898), 2, + sym_line_comment, + sym_block_comment, + [84893] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(698), 1, + anon_sym_RPAREN, ACTIONS(6126), 1, - anon_sym_RBRACE, - ACTIONS(6128), 1, anon_sym_COMMA, - STATE(2851), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2899), 2, + sym_line_comment, sym_block_comment, + [84913] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(6128), 1, + anon_sym_SEMI, + STATE(1297), 1, + sym_declaration_list, + STATE(2900), 2, sym_line_comment, - [89708] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [84933] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, ACTIONS(6130), 1, anon_sym_SEMI, - STATE(1210), 1, + STATE(1306), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2901), 2, sym_line_comment, - [89722] = 4, - ACTIONS(4792), 1, - anon_sym_RBRACE, - ACTIONS(6132), 1, - anon_sym_COMMA, - STATE(2830), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, sym_block_comment, + [84953] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5556), 1, + anon_sym_EQ, + ACTIONS(5480), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2902), 2, sym_line_comment, - [89736] = 3, - ACTIONS(6136), 1, + sym_block_comment, + [84971] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6132), 1, + anon_sym_SEMI, + ACTIONS(6134), 1, anon_sym_EQ, - ACTIONS(3), 2, + STATE(2903), 2, + sym_line_comment, sym_block_comment, + [84991] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2904), 2, sym_line_comment, - ACTIONS(6134), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [89748] = 4, - ACTIONS(4930), 1, + sym_block_comment, + ACTIONS(914), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85007] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, anon_sym_PLUS, - ACTIONS(6138), 1, + ACTIONS(6136), 1, anon_sym_SEMI, - ACTIONS(6140), 1, + ACTIONS(6138), 1, anon_sym_EQ, - ACTIONS(3), 2, + STATE(2905), 2, + sym_line_comment, sym_block_comment, + [85027] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(4806), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2906), 2, sym_line_comment, - [89762] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(6142), 1, - anon_sym_SEMI, - STATE(715), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [85047] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5480), 1, + anon_sym_GT, + ACTIONS(6140), 1, + anon_sym_COMMA, + STATE(2907), 3, sym_line_comment, - [89776] = 4, - ACTIONS(6144), 1, + sym_block_comment, + aux_sym_type_parameters_repeat1, + [85065] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4776), 1, anon_sym_RBRACE, - ACTIONS(6146), 1, + ACTIONS(6143), 1, + anon_sym_COMMA, + STATE(2761), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2908), 2, + sym_line_comment, + sym_block_comment, + [85085] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3118), 1, + anon_sym_RPAREN, + ACTIONS(6145), 1, anon_sym_COMMA, STATE(2823), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + aux_sym_tuple_type_repeat1, + STATE(2909), 2, + sym_line_comment, sym_block_comment, + [85105] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6147), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2910), 2, sym_line_comment, - [89790] = 4, - ACTIONS(4790), 1, - anon_sym_where, + sym_block_comment, + [85123] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, ACTIONS(6149), 1, anon_sym_SEMI, - STATE(3352), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, + STATE(615), 1, + sym_declaration_list, + STATE(2911), 2, sym_line_comment, - [89804] = 4, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(6151), 1, - anon_sym_move, - STATE(127), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [85143] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2912), 2, sym_line_comment, - [89818] = 4, - ACTIONS(3102), 1, - anon_sym_PLUS, - ACTIONS(6153), 1, - sym_mutable_specifier, - ACTIONS(6155), 1, - sym_self, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(6151), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85159] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(6153), 1, + anon_sym_SEMI, + STATE(635), 1, + sym_declaration_list, + STATE(2913), 2, sym_line_comment, - [89832] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(3), 2, sym_block_comment, + [85179] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2914), 2, sym_line_comment, - ACTIONS(6157), 2, + sym_block_comment, + ACTIONS(6155), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85195] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6157), 1, anon_sym_RBRACE, - anon_sym_COMMA, - [89844] = 4, ACTIONS(6159), 1, anon_sym_COMMA, - ACTIONS(6161), 1, - anon_sym_GT, - STATE(2835), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2733), 1, + aux_sym_use_list_repeat1, + STATE(2915), 2, sym_line_comment, - [89858] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4892), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [85215] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2916), 2, sym_line_comment, - [89872] = 4, - ACTIONS(6163), 1, - anon_sym_RBRACE, - ACTIONS(6165), 1, - anon_sym_COMMA, - STATE(2830), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, sym_block_comment, + ACTIONS(4652), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85231] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2917), 2, sym_line_comment, - [89886] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4778), 3, + ACTIONS(4596), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89896] = 2, - ACTIONS(3), 2, - sym_block_comment, + [85247] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2918), 2, sym_line_comment, - ACTIONS(4672), 3, + sym_block_comment, + ACTIONS(4634), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89906] = 4, - ACTIONS(674), 1, + [85263] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6161), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85279] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1524), 3, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(6168), 1, + anon_sym_RBRACE, + [85295] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6163), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, + STATE(2921), 2, + sym_line_comment, sym_block_comment, + [85313] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_LT, + ACTIONS(6165), 1, + anon_sym_EQ, + STATE(3473), 1, + sym_type_parameters, + STATE(2922), 2, sym_line_comment, - [89920] = 2, - ACTIONS(3), 2, sym_block_comment, + [85333] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2923), 2, sym_line_comment, - ACTIONS(4762), 3, + sym_block_comment, + ACTIONS(4636), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89930] = 4, - ACTIONS(6013), 1, - anon_sym_GT, - ACTIONS(6170), 1, + [85349] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6169), 1, + anon_sym_COLON, + ACTIONS(6167), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2836), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2924), 2, sym_line_comment, - [89944] = 4, - ACTIONS(6172), 1, - anon_sym_COMMA, - ACTIONS(6175), 1, - anon_sym_GT, - STATE(2836), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, sym_block_comment, + [85367] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6171), 1, + anon_sym_RBRACE, + ACTIONS(6173), 1, + anon_sym_COMMA, + STATE(2747), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2925), 2, sym_line_comment, - [89958] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6177), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [89970] = 4, - ACTIONS(3024), 1, - anon_sym_SQUOTE, + [85387] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6175), 1, + sym_identifier, + ACTIONS(6177), 1, + anon_sym_ref, ACTIONS(6179), 1, - anon_sym_GT, - STATE(3075), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, + sym_mutable_specifier, + STATE(2926), 2, sym_line_comment, - [89984] = 3, - ACTIONS(5438), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [85407] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + ACTIONS(4620), 1, + anon_sym_BANG, + ACTIONS(6181), 1, + sym_identifier, + STATE(2927), 2, sym_line_comment, - ACTIONS(6181), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [89996] = 4, - ACTIONS(6177), 1, - anon_sym_RPAREN, - ACTIONS(6183), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, + [85427] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6183), 1, + sym_identifier, + ACTIONS(6185), 1, + anon_sym_await, + ACTIONS(6187), 1, + sym_integer_literal, + STATE(2928), 2, sym_line_comment, - [90010] = 4, - ACTIONS(6181), 1, - anon_sym_PIPE, - ACTIONS(6186), 1, - anon_sym_COMMA, - STATE(2841), 1, - aux_sym_closure_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [85447] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(674), 1, + anon_sym_RBRACK, + ACTIONS(3925), 1, + anon_sym_COMMA, + STATE(2448), 1, + aux_sym_arguments_repeat1, + STATE(2929), 2, sym_line_comment, - [90024] = 4, + sym_block_comment, + [85467] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(6189), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(6191), 1, - anon_sym_ref, - ACTIONS(6193), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_EQ, + STATE(2930), 2, sym_line_comment, - [90038] = 4, - ACTIONS(4861), 1, - anon_sym_GT, - ACTIONS(6195), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [85487] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(6193), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2931), 2, sym_line_comment, - [90052] = 4, - ACTIONS(1197), 1, + sym_block_comment, + [85507] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6195), 1, anon_sym_RPAREN, ACTIONS(6197), 1, anon_sym_COMMA, - STATE(2803), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, + STATE(2756), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2932), 2, + sym_line_comment, sym_block_comment, + [85527] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4796), 1, + anon_sym_RBRACE, + ACTIONS(6199), 1, + anon_sym_COMMA, + STATE(2761), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2933), 2, sym_line_comment, - [90066] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [85547] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(6199), 1, + ACTIONS(6201), 1, anon_sym_SEMI, - STATE(1317), 1, + STATE(1359), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2934), 2, sym_line_comment, - [90080] = 4, - ACTIONS(1195), 1, - anon_sym_RPAREN, - ACTIONS(6201), 1, - anon_sym_COMMA, - STATE(2803), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [85567] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(6203), 1, + anon_sym_SEMI, + STATE(1361), 1, + sym_declaration_list, + STATE(2935), 2, sym_line_comment, - [90094] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(4898), 1, - anon_sym_COLON_COLON, - STATE(1901), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [90108] = 4, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(6203), 1, + [85587] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6207), 1, + anon_sym_COLON, + ACTIONS(6205), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2606), 1, - aux_sym_slice_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2936), 2, sym_line_comment, - [90122] = 4, - ACTIONS(31), 1, - anon_sym_PIPE, - ACTIONS(6205), 1, - anon_sym_move, - STATE(120), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [90136] = 3, + [85605] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, ACTIONS(6209), 1, - anon_sym_COLON, - ACTIONS(3), 2, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2937), 2, + sym_line_comment, sym_block_comment, + [85625] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2938), 2, sym_line_comment, - ACTIONS(6207), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [90148] = 4, - ACTIONS(5065), 1, + sym_block_comment, + ACTIONS(4660), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85641] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4796), 1, anon_sym_RBRACE, - ACTIONS(6211), 1, + ACTIONS(6199), 1, anon_sym_COMMA, - STATE(2823), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, + STATE(2766), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2939), 2, + sym_line_comment, sym_block_comment, + [85661] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + ACTIONS(6211), 1, + anon_sym_SEMI, + STATE(534), 1, + sym_declaration_list, + STATE(2940), 2, sym_line_comment, - [90162] = 4, - ACTIONS(4877), 1, - anon_sym_RBRACE, - ACTIONS(6213), 1, - anon_sym_COMMA, - STATE(2830), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, sym_block_comment, + [85681] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(6213), 1, + anon_sym_SEMI, + STATE(1369), 1, + sym_declaration_list, + STATE(2941), 2, sym_line_comment, - [90176] = 4, - ACTIONS(5067), 1, - anon_sym_RBRACE, - ACTIONS(6215), 1, - anon_sym_COMMA, - STATE(2823), 1, - aux_sym_struct_pattern_repeat1, - ACTIONS(3), 2, sym_block_comment, + [85701] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(6215), 1, + anon_sym_SEMI, + STATE(1372), 1, + sym_declaration_list, + STATE(2942), 2, sym_line_comment, - [90190] = 3, - ACTIONS(6219), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [85721] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + ACTIONS(6217), 1, + anon_sym_move, + STATE(119), 1, + sym_closure_parameters, + STATE(2943), 2, sym_line_comment, - ACTIONS(6217), 2, - anon_sym_RBRACE, + sym_block_comment, + [85741] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6219), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [90202] = 4, - ACTIONS(4808), 1, + STATE(2944), 2, + sym_line_comment, + sym_block_comment, + [85759] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, ACTIONS(6221), 1, anon_sym_SEMI, - STATE(1258), 1, + STATE(1378), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2945), 2, sym_line_comment, - [90216] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [85779] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, ACTIONS(6223), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1088), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2946), 2, sym_line_comment, - [90230] = 4, - ACTIONS(4888), 1, - anon_sym_RBRACE, - ACTIONS(6225), 1, - anon_sym_COMMA, - STATE(2830), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [90244] = 4, - ACTIONS(4888), 1, - anon_sym_RBRACE, + [85799] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_LT, ACTIONS(6225), 1, - anon_sym_COMMA, - STATE(2819), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_EQ, + STATE(3324), 1, + sym_type_parameters, + STATE(2947), 2, sym_line_comment, - [90258] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [85819] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, ACTIONS(6227), 1, anon_sym_SEMI, - STATE(1273), 1, + STATE(774), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2948), 2, sym_line_comment, - [90272] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(6229), 1, - anon_sym_SEMI, - STATE(1278), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [85839] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(6229), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2949), 2, sym_line_comment, - [90286] = 4, + sym_block_comment, + [85859] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, ACTIONS(6231), 1, - anon_sym_RBRACE, + anon_sym_SEMI, ACTIONS(6233), 1, - anon_sym_COMMA, - STATE(2857), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_EQ, + STATE(2950), 2, sym_line_comment, - [90300] = 3, - ACTIONS(4023), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [85879] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2951), 2, sym_line_comment, - ACTIONS(5198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [90312] = 4, - ACTIONS(1191), 1, - anon_sym_RPAREN, - ACTIONS(6235), 1, - anon_sym_COMMA, - STATE(2803), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [90326] = 4, - ACTIONS(4930), 1, + ACTIONS(6235), 3, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85895] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, ACTIONS(6237), 1, anon_sym_SEMI, - ACTIONS(6239), 1, - anon_sym_EQ, - ACTIONS(3), 2, + STATE(765), 1, + sym_declaration_list, + STATE(2952), 2, + sym_line_comment, sym_block_comment, + [85915] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4349), 1, + anon_sym_LT2, + ACTIONS(6239), 1, + anon_sym_for, + STATE(1928), 1, + sym_type_arguments, + STATE(2953), 2, sym_line_comment, - [90340] = 4, - ACTIONS(4796), 1, + sym_block_comment, + [85935] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, ACTIONS(6241), 1, anon_sym_SEMI, - STATE(578), 1, + STATE(643), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2954), 2, sym_line_comment, - [90354] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [85955] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2955), 2, sym_line_comment, - ACTIONS(6243), 2, - anon_sym_COMMA, - anon_sym_GT, - [90366] = 4, - ACTIONS(4824), 1, - anon_sym_RBRACE, - ACTIONS(6245), 1, - anon_sym_COMMA, - STATE(2746), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [90380] = 3, - ACTIONS(4930), 1, + ACTIONS(6243), 3, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5655), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [90392] = 4, - ACTIONS(1154), 1, - anon_sym_RPAREN, - ACTIONS(5444), 1, - anon_sym_COMMA, - STATE(2863), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [90406] = 3, - ACTIONS(5531), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5733), 2, - anon_sym_COMMA, - anon_sym_GT, - [90418] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, + anon_sym_STAR, + anon_sym_QMARK, + [85971] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6245), 1, + sym_identifier, ACTIONS(6247), 1, - anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [90432] = 4, - ACTIONS(5733), 1, - anon_sym_GT, + anon_sym_ref, ACTIONS(6249), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + sym_mutable_specifier, + STATE(2956), 2, sym_line_comment, - [90446] = 4, - ACTIONS(1154), 1, - anon_sym_RPAREN, - ACTIONS(5444), 1, - anon_sym_COMMA, - STATE(2803), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [85991] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + ACTIONS(6251), 1, + anon_sym_SEMI, + STATE(1408), 1, + sym_declaration_list, + STATE(2957), 2, sym_line_comment, - [90460] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6252), 2, - anon_sym_COMMA, - anon_sym_GT, - [90472] = 4, - ACTIONS(4796), 1, + [86011] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(6254), 1, + ACTIONS(6253), 1, anon_sym_SEMI, - STATE(618), 1, + STATE(1410), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(2958), 2, sym_line_comment, - [90486] = 4, - ACTIONS(6256), 1, - anon_sym_COMMA, - ACTIONS(6259), 1, - anon_sym_GT, - STATE(2876), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86031] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_where, + ACTIONS(6255), 1, + anon_sym_SEMI, + STATE(3304), 1, + sym_where_clause, + STATE(2959), 2, sym_line_comment, - [90500] = 4, - ACTIONS(1738), 1, - anon_sym_GT, - ACTIONS(6261), 1, - anon_sym_COMMA, - STATE(2876), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [90514] = 4, - ACTIONS(6263), 1, + [86051] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6257), 1, sym_identifier, - ACTIONS(6265), 1, - anon_sym_await, - ACTIONS(6267), 1, - sym_integer_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [90528] = 3, - ACTIONS(3102), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(6259), 2, - anon_sym_COMMA, - anon_sym_GT, - [90540] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_default, + anon_sym_union, + STATE(2960), 2, sym_line_comment, - ACTIONS(6259), 2, - anon_sym_COMMA, - anon_sym_GT, - [90552] = 2, - ACTIONS(3), 2, sym_block_comment, + [86069] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(2961), 2, sym_line_comment, - ACTIONS(4688), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90562] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4686), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90572] = 4, - ACTIONS(4796), 1, - anon_sym_LBRACE, - ACTIONS(6269), 1, + ACTIONS(6261), 3, anon_sym_SEMI, - STATE(628), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [90586] = 4, - ACTIONS(5723), 1, - anon_sym_RPAREN, - ACTIONS(5725), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2651), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [90600] = 4, - ACTIONS(5448), 1, - anon_sym_RPAREN, - ACTIONS(5450), 1, + [86085] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, anon_sym_COMMA, - STATE(2873), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(2962), 3, sym_line_comment, - [90614] = 2, - ACTIONS(3), 2, sym_block_comment, + aux_sym_use_list_repeat1, + [86103] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6268), 1, + anon_sym_RBRACE, + ACTIONS(6270), 1, + anon_sym_COMMA, + STATE(2963), 3, sym_line_comment, - ACTIONS(4684), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90624] = 2, - ACTIONS(3), 2, sym_block_comment, + aux_sym_field_initializer_list_repeat1, + [86121] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_LBRACE, + STATE(588), 1, + sym_field_declaration_list, + STATE(2964), 2, sym_line_comment, - ACTIONS(4682), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90634] = 4, - ACTIONS(5669), 1, - anon_sym_COMMA, - ACTIONS(5671), 1, - anon_sym_GT, - STATE(2877), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86138] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6273), 1, + sym_identifier, + ACTIONS(6275), 1, + sym_mutable_specifier, + STATE(2965), 2, sym_line_comment, - [90648] = 2, - ACTIONS(3), 2, sym_block_comment, + [86155] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6268), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2966), 2, sym_line_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90658] = 2, - ACTIONS(3), 2, sym_block_comment, + [86170] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6263), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2967), 2, sym_line_comment, - ACTIONS(4708), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90668] = 2, - ACTIONS(3), 2, sym_block_comment, + [86185] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4997), 1, + anon_sym_RPAREN, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(2968), 2, sym_line_comment, - ACTIONS(4712), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90678] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(4716), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90688] = 4, - ACTIONS(4808), 1, + [86202] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5099), 1, anon_sym_LBRACE, - ACTIONS(6271), 1, - anon_sym_SEMI, - STATE(1345), 1, - sym_declaration_list, - ACTIONS(3), 2, + STATE(573), 1, + sym_enum_variant_list, + STATE(2969), 2, + sym_line_comment, sym_block_comment, + [86219] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5598), 1, + sym_super, + ACTIONS(6279), 1, + sym_identifier, + STATE(2970), 2, sym_line_comment, - [90702] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(6273), 1, - anon_sym_SEMI, - STATE(1347), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [86236] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5598), 1, + sym_super, + ACTIONS(6281), 1, + sym_identifier, + STATE(2971), 2, sym_line_comment, - [90716] = 2, - ACTIONS(3), 2, sym_block_comment, + [86253] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5344), 1, + sym_super, + ACTIONS(6283), 1, + sym_identifier, + STATE(2972), 2, sym_line_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90726] = 4, - ACTIONS(3188), 1, - anon_sym_RPAREN, - ACTIONS(6275), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86270] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6285), 1, + anon_sym_LBRACK, + ACTIONS(6287), 1, + anon_sym_BANG, + STATE(2973), 2, sym_line_comment, - [90740] = 2, - ACTIONS(3), 2, sym_block_comment, + [86287] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6289), 1, + sym_identifier, + ACTIONS(6291), 1, + sym_mutable_specifier, + STATE(2974), 2, sym_line_comment, - ACTIONS(4722), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90750] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [86304] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_LBRACE, + STATE(582), 1, + sym_field_declaration_list, + STATE(2975), 2, sym_line_comment, - ACTIONS(6277), 2, - anon_sym_COMMA, - anon_sym_GT, - [90762] = 4, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(4019), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86321] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4991), 1, + anon_sym_RBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(2976), 2, sym_line_comment, - [90776] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [86338] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(6279), 1, - anon_sym_SEMI, - STATE(1359), 1, + STATE(603), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(2977), 2, + sym_line_comment, sym_block_comment, + [86355] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6293), 2, + sym_identifier, + sym_super, + STATE(2978), 2, sym_line_comment, - [90790] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_SEMI, - STATE(1361), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [86370] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_RPAREN, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(2979), 2, sym_line_comment, - [90804] = 4, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4572), 1, - anon_sym_COLON, - STATE(2603), 1, - sym_trait_bounds, - ACTIONS(3), 2, sym_block_comment, + [86387] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6245), 1, + sym_identifier, + ACTIONS(6249), 1, + sym_mutable_specifier, + STATE(2980), 2, sym_line_comment, - [90818] = 4, - ACTIONS(4790), 1, - anon_sym_where, - ACTIONS(6283), 1, - anon_sym_SEMI, - STATE(3261), 1, - sym_where_clause, - ACTIONS(3), 2, sym_block_comment, + [86404] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6295), 1, + sym_identifier, + ACTIONS(6297), 1, + sym_super, + STATE(2981), 2, sym_line_comment, - [90832] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [86421] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(6285), 1, - anon_sym_SEMI, - STATE(1368), 1, + STATE(592), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(2982), 2, + sym_line_comment, sym_block_comment, + [86438] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6299), 2, + sym_identifier, + sym_metavariable, + STATE(2983), 2, sym_line_comment, - [90846] = 4, - ACTIONS(4808), 1, + sym_block_comment, + [86453] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - ACTIONS(6287), 1, - anon_sym_SEMI, - STATE(1371), 1, + STATE(613), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(2984), 2, + sym_line_comment, sym_block_comment, + [86470] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(119), 1, + sym_closure_parameters, + STATE(2985), 2, sym_line_comment, - [90860] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(6289), 1, - anon_sym_SEMI, - ACTIONS(6291), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [86487] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6301), 1, + anon_sym_in, + STATE(2986), 2, sym_line_comment, - [90874] = 2, - ACTIONS(3), 2, sym_block_comment, + [86504] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1390), 1, + sym_declaration_list, + STATE(2987), 2, sym_line_comment, - ACTIONS(6293), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90884] = 4, - ACTIONS(4873), 1, - anon_sym_RBRACE, - ACTIONS(6295), 1, - anon_sym_COMMA, - STATE(2746), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86521] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6303), 1, + anon_sym_in, + STATE(2988), 2, sym_line_comment, - [90898] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(6297), 1, - anon_sym_SEMI, - ACTIONS(6299), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [86538] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(6239), 1, + anon_sym_for, + STATE(2989), 2, sym_line_comment, - [90912] = 4, - ACTIONS(6301), 1, - sym_identifier, - ACTIONS(6303), 1, - anon_sym_await, - ACTIONS(6305), 1, - sym_integer_literal, - ACTIONS(3), 2, sym_block_comment, + [86555] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6305), 1, + anon_sym_in, + STATE(2990), 2, sym_line_comment, - [90926] = 4, - ACTIONS(3801), 1, - anon_sym_LT2, - ACTIONS(4804), 1, - anon_sym_COLON_COLON, - STATE(1526), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [86572] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(767), 1, + sym_declaration_list, + STATE(2991), 2, sym_line_comment, - [90940] = 4, - ACTIONS(660), 1, - anon_sym_RPAREN, - ACTIONS(6307), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86589] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6307), 1, + anon_sym_in, + STATE(2992), 2, sym_line_comment, - [90954] = 4, - ACTIONS(4873), 1, - anon_sym_RBRACE, - ACTIONS(6295), 1, - anon_sym_COMMA, - STATE(2745), 1, - aux_sym_field_declaration_list_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86606] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3166), 1, + anon_sym_LT2, + STATE(1433), 1, + sym_type_arguments, + STATE(2993), 2, sym_line_comment, - [90968] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, + sym_block_comment, + [86623] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(6309), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(6311), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, + sym_super, + STATE(2994), 2, sym_line_comment, - [90982] = 4, - ACTIONS(5240), 1, - anon_sym_COMMA, - ACTIONS(5242), 1, - anon_sym_GT, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86640] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(6229), 1, + anon_sym_for, + STATE(2995), 2, sym_line_comment, - [90996] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(6313), 1, - anon_sym_SEMI, - STATE(1389), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [86657] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6313), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(2996), 2, sym_line_comment, - [91010] = 4, - ACTIONS(4808), 1, - anon_sym_LBRACE, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(1391), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [86672] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6315), 1, + sym_identifier, + ACTIONS(6317), 1, + sym_super, + STATE(2997), 2, sym_line_comment, - [91024] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6317), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [91034] = 4, + [86689] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, ACTIONS(6319), 1, - anon_sym_RPAREN, - ACTIONS(6321), 1, - anon_sym_COMMA, - STATE(2756), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + anon_sym_in, + STATE(2998), 2, + sym_line_comment, sym_block_comment, + [86706] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6321), 1, + sym_identifier, + ACTIONS(6323), 1, + sym_mutable_specifier, + STATE(2999), 2, sym_line_comment, - [91048] = 2, - ACTIONS(3), 2, sym_block_comment, + [86723] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + STATE(1565), 1, + sym_parameters, + STATE(3000), 2, sym_line_comment, - ACTIONS(6323), 3, - anon_sym_EQ, + sym_block_comment, + [86740] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1470), 2, anon_sym_COMMA, anon_sym_GT, - [91058] = 4, - ACTIONS(694), 1, - anon_sym_RBRACK, - ACTIONS(3975), 1, - anon_sym_COMMA, - STATE(2451), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, + STATE(3001), 2, sym_line_comment, - [91072] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(6325), 1, - anon_sym_SEMI, - ACTIONS(6327), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [86755] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4506), 1, + anon_sym_BANG, + ACTIONS(4552), 1, + anon_sym_COLON_COLON, + STATE(3002), 2, sym_line_comment, - [91086] = 4, - ACTIONS(4572), 1, - anon_sym_COLON, - ACTIONS(4898), 1, + sym_block_comment, + [86772] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, anon_sym_COLON_COLON, - STATE(2603), 1, - sym_trait_bounds, - ACTIONS(3), 2, + ACTIONS(6209), 1, + anon_sym_for, + STATE(3003), 2, + sym_line_comment, sym_block_comment, + [86789] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4506), 1, + anon_sym_BANG, + ACTIONS(4538), 1, + anon_sym_COLON_COLON, + STATE(3004), 2, sym_line_comment, - [91100] = 4, - ACTIONS(4441), 1, - anon_sym_LT2, - ACTIONS(6329), 1, + sym_block_comment, + [86806] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(6193), 1, anon_sym_for, - STATE(1906), 1, - sym_type_arguments, - ACTIONS(3), 2, + STATE(3005), 2, + sym_line_comment, + sym_block_comment, + [86823] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6317), 2, + sym_identifier, + sym_super, + STATE(3006), 2, + sym_line_comment, sym_block_comment, + [86838] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6325), 2, + sym_identifier, + sym_metavariable, + STATE(3007), 2, sym_line_comment, - [91114] = 4, - ACTIONS(4796), 1, + sym_block_comment, + [86853] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, - anon_sym_SEMI, - STATE(655), 1, + STATE(1345), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(3008), 2, + sym_line_comment, sym_block_comment, + [86870] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1344), 1, + sym_declaration_list, + STATE(3009), 2, sym_line_comment, - [91128] = 3, - ACTIONS(6335), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [86887] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6327), 1, + anon_sym_SEMI, + ACTIONS(6329), 1, + anon_sym_as, + STATE(3010), 2, sym_line_comment, - ACTIONS(6333), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [91140] = 4, - ACTIONS(31), 1, + sym_block_comment, + [86904] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(6337), 1, - anon_sym_move, - STATE(125), 1, + STATE(151), 1, sym_closure_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3011), 2, sym_line_comment, - [91154] = 4, - ACTIONS(4867), 1, - anon_sym_GT, - ACTIONS(6339), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86921] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6331), 2, + sym_identifier, + sym_super, + STATE(3012), 2, sym_line_comment, - [91168] = 2, - ACTIONS(3), 2, sym_block_comment, + [86936] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(4806), 1, + anon_sym_for, + STATE(3013), 2, sym_line_comment, - ACTIONS(6341), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91178] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(6343), 1, - anon_sym_SEMI, - ACTIONS(6345), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [86953] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + STATE(2191), 1, + sym_parameters, + STATE(3014), 2, sym_line_comment, - [91192] = 4, - ACTIONS(6347), 1, - anon_sym_RBRACE, - ACTIONS(6349), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, sym_block_comment, + [86970] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1283), 1, + sym_declaration_list, + STATE(3015), 2, sym_line_comment, - [91206] = 4, - ACTIONS(6352), 1, - anon_sym_RBRACE, - ACTIONS(6354), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91220] = 4, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(6357), 1, + [86987] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, anon_sym_SEMI, - ACTIONS(6359), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(6333), 1, + anon_sym_RPAREN, + STATE(3016), 2, sym_line_comment, - [91234] = 4, - ACTIONS(3266), 1, - anon_sym_LT2, - ACTIONS(4869), 1, - anon_sym_COLON_COLON, - STATE(1040), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91248] = 3, - ACTIONS(4786), 1, + [87004] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(735), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(681), 1, + sym_declaration_list, + STATE(3017), 2, sym_line_comment, - [91259] = 3, - ACTIONS(6361), 1, - anon_sym_LPAREN, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91270] = 3, - ACTIONS(5619), 1, - sym_super, - ACTIONS(6365), 1, + [87021] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5476), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(5478), 1, + sym_super, + STATE(3018), 2, sym_line_comment, - [91281] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6347), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [91290] = 3, - ACTIONS(5313), 1, - sym_super, - ACTIONS(6367), 1, + [87038] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5478), 2, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + sym_super, + STATE(3019), 2, sym_line_comment, - [91301] = 3, - ACTIONS(6369), 1, + sym_block_comment, + [87053] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6335), 1, sym_identifier, - ACTIONS(6371), 1, + ACTIONS(6337), 1, sym_super, - ACTIONS(3), 2, - sym_block_comment, + STATE(3020), 2, sym_line_comment, - [91312] = 3, - ACTIONS(5619), 1, - sym_super, - ACTIONS(6373), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [87070] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6339), 2, + sym_identifier, + sym_metavariable, + STATE(3021), 2, sym_line_comment, - [91323] = 3, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(6377), 1, - anon_sym_BANG, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91334] = 3, - ACTIONS(5543), 1, + [87085] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5598), 1, sym_super, - ACTIONS(5705), 1, + ACTIONS(6341), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3022), 2, sym_line_comment, - [91345] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(125), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [87102] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6343), 1, + anon_sym_in, + STATE(3023), 2, sym_line_comment, - [91356] = 3, - ACTIONS(5135), 1, - anon_sym_RBRACE, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [87119] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5480), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3024), 2, sym_line_comment, - [91367] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6381), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91378] = 3, - ACTIONS(5182), 1, + [87134] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, anon_sym_LBRACE, - STATE(671), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(648), 1, + sym_field_declaration_list, + STATE(3025), 2, sym_line_comment, - [91389] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(4892), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [87151] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6293), 1, + sym_super, + ACTIONS(6345), 1, + sym_identifier, + STATE(3026), 2, sym_line_comment, - [91400] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(658), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91411] = 3, - ACTIONS(6383), 1, - sym_identifier, - ACTIONS(6385), 1, + [87168] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6331), 1, sym_super, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [91422] = 3, - ACTIONS(6387), 1, + ACTIONS(6347), 1, sym_identifier, - ACTIONS(6389), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3027), 2, sym_line_comment, - [91433] = 3, - ACTIONS(5816), 1, - sym_identifier, - ACTIONS(5820), 1, - sym_mutable_specifier, - ACTIONS(3), 2, sym_block_comment, + [87185] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6349), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3028), 2, sym_line_comment, - [91444] = 3, - ACTIONS(6391), 1, - sym_identifier, - ACTIONS(6393), 1, - sym_super, - ACTIONS(3), 2, sym_block_comment, + [87200] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6351), 2, + sym_identifier, + sym_metavariable, + STATE(3029), 2, sym_line_comment, - [91455] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6395), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [87215] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6353), 1, + anon_sym_LBRACK, + ACTIONS(6355), 1, + anon_sym_BANG, + STATE(3030), 2, sym_line_comment, - [91466] = 2, - ACTIONS(3), 2, sym_block_comment, + [87232] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5376), 1, + anon_sym_COLON, + STATE(3031), 2, sym_line_comment, - ACTIONS(6397), 2, - anon_sym_const, - sym_mutable_specifier, - [91475] = 3, - ACTIONS(6399), 1, - sym_identifier, - ACTIONS(6401), 1, + sym_block_comment, + [87249] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4993), 1, sym_super, - ACTIONS(3), 2, + ACTIONS(5496), 1, + sym_identifier, + STATE(3032), 2, + sym_line_comment, sym_block_comment, + [87266] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + STATE(1580), 1, + sym_parameters, + STATE(3033), 2, sym_line_comment, - [91486] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6403), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [87283] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6357), 2, + sym_identifier, + sym_metavariable, + STATE(3034), 2, sym_line_comment, - [91497] = 3, - ACTIONS(4796), 1, + sym_block_comment, + [87298] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(656), 1, + STATE(679), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(3035), 2, + sym_line_comment, sym_block_comment, + [87315] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3470), 1, + anon_sym_COLON, + ACTIONS(5905), 1, + anon_sym_PLUS, + STATE(3036), 2, sym_line_comment, - [91508] = 3, - ACTIONS(3795), 1, - anon_sym_LPAREN, - STATE(1544), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [87332] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6331), 1, + sym_super, + ACTIONS(6359), 1, + sym_identifier, + STATE(3037), 2, sym_line_comment, - [91519] = 3, - ACTIONS(4786), 1, + sym_block_comment, + [87349] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, anon_sym_LBRACE, - STATE(674), 1, + STATE(696), 1, sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3038), 2, sym_line_comment, - [91530] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(6329), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [87366] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4993), 2, + sym_identifier, + sym_super, + STATE(3039), 2, sym_line_comment, - [91541] = 2, - ACTIONS(3), 2, sym_block_comment, + [87381] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4834), 1, + anon_sym_PLUS, + ACTIONS(6361), 1, + anon_sym_GT, + STATE(3040), 2, sym_line_comment, - ACTIONS(6401), 2, - sym_identifier, - sym_super, - [91550] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6405), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [87398] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6363), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3041), 2, sym_line_comment, - [91561] = 3, - ACTIONS(3258), 1, + sym_block_comment, + [87413] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - STATE(1055), 1, + STATE(1944), 1, sym_parameters, - ACTIONS(3), 2, + STATE(3042), 2, + sym_line_comment, sym_block_comment, + [87430] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6365), 2, + sym_identifier, + sym_super, + STATE(3043), 2, sym_line_comment, - [91572] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6407), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [87445] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(149), 1, + sym_closure_parameters, + STATE(3044), 2, sym_line_comment, - [91583] = 2, - ACTIONS(3), 2, sym_block_comment, + [87462] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1251), 1, + sym_declaration_list, + STATE(3045), 2, sym_line_comment, - ACTIONS(6409), 2, - sym_identifier, - sym_super, - [91592] = 3, - ACTIONS(5165), 1, - anon_sym_RBRACE, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [87479] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6367), 1, + anon_sym_LT, + STATE(1488), 1, + sym_type_parameters, + STATE(3046), 2, sym_line_comment, - [91603] = 3, - ACTIONS(4786), 1, + sym_block_comment, + [87496] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, anon_sym_LBRACE, - STATE(676), 1, + STATE(1250), 1, sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3047), 2, sym_line_comment, - [91614] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(683), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [87513] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, + anon_sym_LBRACE, + STATE(1248), 1, + sym_field_declaration_list, + STATE(3048), 2, sym_line_comment, - [91625] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(148), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [87530] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4999), 1, + anon_sym_RBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(3049), 2, sym_line_comment, - [91636] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(5830), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [87547] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACE, + STATE(1244), 1, + sym_enum_variant_list, + STATE(3050), 2, + sym_line_comment, + sym_block_comment, + [87564] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3506), 1, + anon_sym_COLON, + ACTIONS(5905), 1, + anon_sym_PLUS, + STATE(3051), 2, sym_line_comment, - [91647] = 3, - ACTIONS(5071), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [87581] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3510), 1, + anon_sym_COLON, + ACTIONS(5905), 1, + anon_sym_PLUS, + STATE(3052), 2, sym_line_comment, - [91658] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6411), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [87598] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6369), 1, + anon_sym_COLON_COLON, + ACTIONS(6371), 1, + anon_sym_BANG, + STATE(3053), 2, sym_line_comment, - [91669] = 3, - ACTIONS(4796), 1, + sym_block_comment, + [87615] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, - STATE(649), 1, + STATE(1235), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3054), 2, sym_line_comment, - [91680] = 3, - ACTIONS(5167), 1, - anon_sym_RBRACE, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91691] = 3, - ACTIONS(5182), 1, + [87632] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, - STATE(590), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(1234), 1, + sym_declaration_list, + STATE(3055), 2, sym_line_comment, - [91702] = 3, - ACTIONS(5679), 1, + sym_block_comment, + [87649] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5598), 2, sym_identifier, - ACTIONS(5681), 1, sym_super, - ACTIONS(3), 2, + STATE(3056), 2, + sym_line_comment, sym_block_comment, + [87664] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3681), 1, + anon_sym_LPAREN, + STATE(1567), 1, + sym_parameters, + STATE(3057), 2, sym_line_comment, - [91713] = 2, - ACTIONS(3), 2, sym_block_comment, + [87681] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2920), 1, + anon_sym_SQUOTE, + STATE(3117), 1, + sym_lifetime, + STATE(3058), 2, sym_line_comment, - ACTIONS(5681), 2, - sym_identifier, + sym_block_comment, + [87698] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5598), 1, sym_super, - [91722] = 3, - ACTIONS(6413), 1, + ACTIONS(6373), 1, sym_identifier, - ACTIONS(6415), 1, - sym_super, - ACTIONS(3), 2, - sym_block_comment, + STATE(3059), 2, sym_line_comment, - [91733] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [87715] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5344), 1, + sym_super, + ACTIONS(6375), 1, + sym_identifier, + STATE(3060), 2, sym_line_comment, - [91744] = 3, - ACTIONS(4435), 1, - anon_sym_LPAREN, - STATE(2172), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [87732] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(129), 1, + sym_closure_parameters, + STATE(3061), 2, sym_line_comment, - [91755] = 3, - ACTIONS(4786), 1, - anon_sym_LBRACE, - STATE(544), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [87749] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1216), 1, + sym_declaration_list, + STATE(3062), 2, sym_line_comment, - [91766] = 3, - ACTIONS(3801), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [87766] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5952), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(3063), 2, sym_line_comment, - [91777] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(5842), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [87781] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3242), 1, + anon_sym_LBRACE, + STATE(1336), 1, + sym_field_initializer_list, + STATE(3064), 2, sym_line_comment, - [91788] = 3, - ACTIONS(6385), 1, - sym_super, - ACTIONS(6417), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [87798] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6021), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3065), 2, sym_line_comment, - [91799] = 3, - ACTIONS(6419), 1, - anon_sym_LT, - STATE(877), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, + [87813] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LBRACE, + STATE(1676), 1, + sym_field_initializer_list, + STATE(3066), 2, sym_line_comment, - [91810] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6421), 2, + [87830] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6377), 2, sym_identifier, sym_metavariable, - [91819] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3067), 2, sym_line_comment, - [91830] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1379), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [87845] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3592), 1, + anon_sym_COLON, + ACTIONS(5905), 1, + anon_sym_PLUS, + STATE(3068), 2, sym_line_comment, - [91841] = 3, - ACTIONS(5619), 1, - sym_super, - ACTIONS(6423), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91852] = 3, - ACTIONS(5083), 1, + [87862] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4993), 1, sym_super, - ACTIONS(5673), 1, + ACTIONS(5502), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3069), 2, sym_line_comment, - [91863] = 3, - ACTIONS(3795), 1, - anon_sym_LPAREN, - STATE(1541), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [87879] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6029), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3070), 2, sym_line_comment, - [91874] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [87894] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4973), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3071), 2, sym_line_comment, - [91885] = 2, - ACTIONS(3), 2, sym_block_comment, + [87909] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6379), 1, + anon_sym_RPAREN, + ACTIONS(6381), 1, + anon_sym_COLON_COLON, + STATE(3072), 2, sym_line_comment, - ACTIONS(6425), 2, - sym_identifier, - sym_super, - [91894] = 2, - ACTIONS(3), 2, sym_block_comment, + [87926] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_SEMI, + ACTIONS(6383), 1, + anon_sym_RBRACE, + STATE(3073), 2, sym_line_comment, - ACTIONS(6427), 2, - sym_identifier, - sym_metavariable, - [91903] = 3, - ACTIONS(6429), 1, - sym_identifier, - ACTIONS(6431), 1, - sym_super, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [91914] = 3, - ACTIONS(4531), 1, + [87943] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, anon_sym_COLON_COLON, - ACTIONS(4810), 1, + ACTIONS(4730), 1, anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, + STATE(3074), 2, sym_line_comment, - [91925] = 3, - ACTIONS(4786), 1, - anon_sym_LBRACE, - STATE(526), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [87960] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2920), 1, + anon_sym_SQUOTE, + STATE(2868), 1, + sym_lifetime, + STATE(3075), 2, sym_line_comment, - [91936] = 3, - ACTIONS(6433), 1, - sym_identifier, - ACTIONS(6435), 1, - sym_super, - ACTIONS(3), 2, sym_block_comment, + [87977] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3076), 2, sym_line_comment, - [91947] = 2, - ACTIONS(3), 2, sym_block_comment, + [87992] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + STATE(2159), 1, + sym_parameters, + STATE(3077), 2, sym_line_comment, - ACTIONS(6437), 2, - sym_identifier, - sym_metavariable, - [91956] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(701), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [88009] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5558), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3078), 2, sym_line_comment, - [91967] = 2, - ACTIONS(3), 2, sym_block_comment, + [88024] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_SEMI, + ACTIONS(6385), 1, + anon_sym_RBRACE, + STATE(3079), 2, sym_line_comment, - ACTIONS(6439), 2, - sym_identifier, - sym_super, - [91976] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6441), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [88041] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6367), 1, + anon_sym_LT, + STATE(1501), 1, + sym_type_parameters, + STATE(3080), 2, sym_line_comment, - [91987] = 3, - ACTIONS(6431), 1, - sym_super, - ACTIONS(6443), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [88058] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6387), 1, + anon_sym_LPAREN, + ACTIONS(6389), 1, + anon_sym_LBRACE, + STATE(3081), 2, sym_line_comment, - [91998] = 2, - ACTIONS(3), 2, sym_block_comment, + [88075] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_SEMI, + ACTIONS(6391), 1, + anon_sym_RPAREN, + STATE(3082), 2, sym_line_comment, - ACTIONS(6445), 2, - sym_identifier, - sym_metavariable, - [92007] = 2, - ACTIONS(3), 2, sym_block_comment, + [88092] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6393), 1, + anon_sym_LPAREN, + ACTIONS(6395), 1, + anon_sym_LBRACE, + STATE(3083), 2, sym_line_comment, - ACTIONS(6447), 2, - sym_identifier, - sym_metavariable, - [92016] = 2, - ACTIONS(3), 2, sym_block_comment, + [88109] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6397), 1, + anon_sym_EQ, + STATE(3084), 2, sym_line_comment, - ACTIONS(5543), 2, - sym_identifier, - sym_super, - [92025] = 3, - ACTIONS(5313), 1, + sym_block_comment, + [88126] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5344), 1, sym_super, - ACTIONS(6417), 1, + ACTIONS(6399), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3085), 2, sym_line_comment, - [92036] = 3, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(2828), 1, - sym_lifetime, - ACTIONS(3), 2, sym_block_comment, + [88143] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6401), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3086), 2, sym_line_comment, - [92047] = 3, - ACTIONS(6449), 1, - anon_sym_LBRACK, - ACTIONS(6451), 1, - anon_sym_BANG, - ACTIONS(3), 2, sym_block_comment, + [88158] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6317), 1, + sym_super, + ACTIONS(6403), 1, + sym_identifier, + STATE(3087), 2, sym_line_comment, - [92058] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(5896), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [88175] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(125), 1, + sym_closure_parameters, + STATE(3088), 2, sym_line_comment, - [92069] = 3, - ACTIONS(3258), 1, - anon_sym_LPAREN, - STATE(1074), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [88192] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_SEMI, + ACTIONS(6405), 1, + anon_sym_RBRACE, + STATE(3089), 2, sym_line_comment, - [92080] = 3, - ACTIONS(6419), 1, - anon_sym_LT, - STATE(1466), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, + [88209] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5344), 1, + sym_super, + ACTIONS(6345), 1, + sym_identifier, + STATE(3090), 2, sym_line_comment, - [92091] = 3, - ACTIONS(4944), 1, - anon_sym_COLON, - STATE(2603), 1, - sym_trait_bounds, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92102] = 3, - ACTIONS(5153), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, + [88226] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + ACTIONS(6407), 1, + anon_sym_RBRACE, + STATE(3091), 2, sym_line_comment, - [92113] = 3, - ACTIONS(3795), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [88243] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_SEMI, + ACTIONS(6409), 1, + anon_sym_RPAREN, + STATE(3092), 2, sym_line_comment, - [92124] = 2, - ACTIONS(3), 2, sym_block_comment, + [88260] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_SEMI, + ACTIONS(6411), 1, + anon_sym_RPAREN, + STATE(3093), 2, sym_line_comment, - ACTIONS(6453), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [92133] = 3, - ACTIONS(3266), 1, - anon_sym_LT2, - STATE(1418), 1, - sym_type_arguments, - ACTIONS(3), 2, sym_block_comment, + [88277] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6413), 1, + anon_sym_in, + STATE(3094), 2, sym_line_comment, - [92144] = 3, - ACTIONS(5083), 1, + sym_block_comment, + [88294] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6317), 1, sym_super, - ACTIONS(5667), 1, + ACTIONS(6415), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3095), 2, sym_line_comment, - [92155] = 3, - ACTIONS(3704), 1, - anon_sym_COLON, - ACTIONS(5984), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [88311] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_LPAREN, + STATE(1081), 1, + sym_parameters, + STATE(3096), 2, sym_line_comment, - [92166] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1326), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [88328] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6417), 1, + anon_sym_SEMI, + ACTIONS(6419), 1, + anon_sym_as, + STATE(3097), 2, sym_line_comment, - [92177] = 3, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6457), 1, - sym_mutable_specifier, - ACTIONS(3), 2, sym_block_comment, + [88345] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6421), 1, + anon_sym_SEMI, + ACTIONS(6423), 1, + anon_sym_as, + STATE(3098), 2, sym_line_comment, - [92188] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [88362] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, + anon_sym_LBRACE, + STATE(1138), 1, + sym_field_declaration_list, + STATE(3099), 2, sym_line_comment, - [92199] = 3, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(6247), 1, - anon_sym_for, - ACTIONS(3), 2, sym_block_comment, + [88379] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + STATE(2166), 1, + sym_parameters, + STATE(3100), 2, sym_line_comment, - [92210] = 3, - ACTIONS(4788), 1, - anon_sym_LT, - STATE(959), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, + [88396] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(136), 1, + sym_closure_parameters, + STATE(3101), 2, sym_line_comment, - [92221] = 3, - ACTIONS(6431), 1, - sym_super, - ACTIONS(6459), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [88413] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_field_declaration_list, + STATE(3102), 2, sym_line_comment, - [92232] = 2, - ACTIONS(3), 2, sym_block_comment, + [88430] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, + anon_sym_LBRACE, + STATE(1135), 1, + sym_field_declaration_list, + STATE(3103), 2, sym_line_comment, - ACTIONS(6259), 2, - anon_sym_COMMA, - anon_sym_GT, - [92241] = 2, - ACTIONS(3), 2, sym_block_comment, + [88447] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_enum_variant_list, + STATE(3104), 2, sym_line_comment, - ACTIONS(5083), 2, - sym_identifier, - sym_super, - [92250] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5619), 2, + [88464] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5670), 2, sym_identifier, sym_super, - [92259] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(149), 1, - sym_closure_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3105), 2, sym_line_comment, - [92270] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1311), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [88479] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5344), 1, + sym_super, + ACTIONS(6425), 1, + sym_identifier, + STATE(3106), 2, sym_line_comment, - [92281] = 3, - ACTIONS(6419), 1, - anon_sym_LT, - STATE(1469), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, + [88496] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + STATE(2200), 1, + sym_parameters, + STATE(3107), 2, sym_line_comment, - [92292] = 2, - ACTIONS(3), 2, sym_block_comment, + [88513] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6293), 1, + sym_super, + ACTIONS(6427), 1, + sym_identifier, + STATE(3108), 2, sym_line_comment, - ACTIONS(6181), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [92301] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5733), 2, - anon_sym_COMMA, - anon_sym_GT, - [92310] = 3, - ACTIONS(4796), 1, + [88530] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, anon_sym_LBRACE, - STATE(518), 1, + STATE(1118), 1, sym_declaration_list, - ACTIONS(3), 2, + STATE(3109), 2, + sym_line_comment, sym_block_comment, + [88547] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 1, + sym_super, + ACTIONS(5592), 1, + sym_identifier, + STATE(3110), 2, sym_line_comment, - [92321] = 3, - ACTIONS(4606), 1, - anon_sym_BANG, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [88564] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6429), 1, + sym_identifier, + ACTIONS(6431), 1, + sym_super, + STATE(3111), 2, sym_line_comment, - [92332] = 2, - ACTIONS(3), 2, sym_block_comment, + [88581] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6433), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3112), 2, sym_line_comment, - ACTIONS(5655), 2, + sym_block_comment, + [88596] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5105), 2, anon_sym_RPAREN, anon_sym_COMMA, - [92341] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(3113), 2, sym_line_comment, - ACTIONS(1592), 2, - anon_sym_COMMA, - anon_sym_GT, - [92350] = 3, - ACTIONS(6461), 1, - anon_sym_COLON_COLON, - ACTIONS(6463), 1, - anon_sym_BANG, - ACTIONS(3), 2, sym_block_comment, + [88611] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6317), 1, + sym_super, + ACTIONS(6341), 1, + sym_identifier, + STATE(3114), 2, sym_line_comment, - [92361] = 3, - ACTIONS(5188), 1, - anon_sym_LBRACE, - STATE(1132), 1, - sym_enum_variant_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92372] = 3, - ACTIONS(4786), 1, + [88628] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, anon_sym_LBRACE, - STATE(503), 1, + STATE(1099), 1, sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3115), 2, sym_line_comment, - [92383] = 2, - ACTIONS(3), 2, sym_block_comment, + [88645] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(707), 1, + sym_enum_variant_list, + STATE(3116), 2, sym_line_comment, - ACTIONS(6465), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [92392] = 2, - ACTIONS(3), 2, sym_block_comment, + [88662] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5895), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3117), 2, sym_line_comment, - ACTIONS(6352), 2, + sym_block_comment, + [88677] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6435), 2, anon_sym_RBRACE, anon_sym_COMMA, - [92401] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(3118), 2, sym_line_comment, - ACTIONS(6467), 2, - anon_sym_const, - sym_mutable_specifier, - [92410] = 3, - ACTIONS(6469), 1, - anon_sym_RPAREN, - ACTIONS(6471), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [88692] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym_declaration_list, + STATE(3119), 2, sym_line_comment, - [92421] = 3, - ACTIONS(6473), 1, - anon_sym_RPAREN, - ACTIONS(6475), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [88709] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym_declaration_list, + STATE(3120), 2, sym_line_comment, - [92432] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(120), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92443] = 3, - ACTIONS(3352), 1, + [88726] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, anon_sym_LBRACE, - STATE(1290), 1, - sym_field_initializer_list, - ACTIONS(3), 2, + STATE(1092), 1, + sym_field_declaration_list, + STATE(3121), 2, + sym_line_comment, sym_block_comment, + [88743] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(537), 1, + sym_declaration_list, + STATE(3122), 2, sym_line_comment, - [92454] = 3, - ACTIONS(4435), 1, + sym_block_comment, + [88760] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_LPAREN, - STATE(2181), 1, + STATE(1956), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3123), 2, sym_line_comment, - [92465] = 3, - ACTIONS(3024), 1, - anon_sym_SQUOTE, - STATE(3075), 1, - sym_lifetime, - ACTIONS(3), 2, sym_block_comment, + [88777] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6437), 2, + sym_float_literal, + sym_integer_literal, + STATE(3124), 2, sym_line_comment, - [92476] = 3, - ACTIONS(6477), 1, - anon_sym_LPAREN, - ACTIONS(6479), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92487] = 3, - ACTIONS(6473), 1, + [88792] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6379), 1, anon_sym_RPAREN, - ACTIONS(6481), 1, + ACTIONS(6439), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3125), 2, sym_line_comment, - [92498] = 3, - ACTIONS(6473), 1, - anon_sym_RPAREN, - ACTIONS(6483), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [88809] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5872), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3126), 2, sym_line_comment, - [92509] = 3, - ACTIONS(6401), 1, - sym_super, - ACTIONS(6485), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [88824] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6441), 2, + sym_identifier, + sym_super, + STATE(3127), 2, sym_line_comment, - [92520] = 3, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1083), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [88839] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4205), 1, + anon_sym_EQ_GT, + ACTIONS(6443), 1, + anon_sym_AMP_AMP, + STATE(3128), 2, sym_line_comment, - [92531] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(130), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [88856] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6379), 1, + anon_sym_RPAREN, + ACTIONS(6445), 1, + anon_sym_COLON_COLON, + STATE(3129), 2, sym_line_comment, - [92542] = 3, - ACTIONS(4435), 1, - anon_sym_LPAREN, - STATE(2132), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92553] = 3, - ACTIONS(5113), 1, + [88873] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5858), 2, anon_sym_RBRACE, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + anon_sym_COMMA, + STATE(3130), 2, sym_line_comment, - [92564] = 3, - ACTIONS(5182), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_enum_variant_list, - ACTIONS(3), 2, sym_block_comment, + [88888] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6447), 1, + anon_sym_RPAREN, + ACTIONS(6449), 1, + anon_sym_COLON_COLON, + STATE(3131), 2, sym_line_comment, - [92575] = 3, - ACTIONS(31), 1, + sym_block_comment, + [88905] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, anon_sym_PIPE, - STATE(121), 1, + STATE(150), 1, sym_closure_parameters, - ACTIONS(3), 2, + STATE(3132), 2, + sym_line_comment, sym_block_comment, + [88922] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5033), 1, + anon_sym_RPAREN, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(3133), 2, sym_line_comment, - [92586] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1081), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [88939] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5037), 1, + anon_sym_RPAREN, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(3134), 2, sym_line_comment, - [92597] = 3, - ACTIONS(5188), 1, + sym_block_comment, + [88956] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5099), 1, anon_sym_LBRACE, - STATE(1236), 1, + STATE(735), 1, sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3135), 2, sym_line_comment, - [92608] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [88973] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + STATE(2205), 1, + sym_parameters, + STATE(3136), 2, sym_line_comment, - [92619] = 2, - ACTIONS(3), 2, sym_block_comment, + [88990] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(127), 1, + sym_closure_parameters, + STATE(3137), 2, sym_line_comment, - ACTIONS(5484), 2, + sym_block_comment, + [89007] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6451), 1, sym_identifier, + ACTIONS(6453), 1, sym_super, - [92628] = 2, - ACTIONS(3), 2, - sym_block_comment, + STATE(3138), 2, sym_line_comment, - ACTIONS(5198), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [92637] = 3, - ACTIONS(5313), 1, - sym_super, - ACTIONS(6487), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92648] = 3, - ACTIONS(6385), 1, + [89024] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6293), 1, sym_super, - ACTIONS(6489), 1, + ACTIONS(6375), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3139), 2, sym_line_comment, - [92659] = 3, - ACTIONS(6052), 1, - anon_sym_EQ_GT, - ACTIONS(6491), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, sym_block_comment, + [89041] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(143), 1, + sym_closure_parameters, + STATE(3140), 2, sym_line_comment, - [92670] = 3, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5599), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [89058] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_enum_variant_list, + STATE(3141), 2, sym_line_comment, - [92681] = 3, - ACTIONS(6435), 1, - sym_super, - ACTIONS(6493), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [89075] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_field_declaration_list, + STATE(3142), 2, sym_line_comment, - [92692] = 3, - ACTIONS(4269), 1, - anon_sym_EQ_GT, - ACTIONS(6491), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, sym_block_comment, + [89092] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4923), 1, + anon_sym_COLON, + ACTIONS(5905), 1, + anon_sym_PLUS, + STATE(3143), 2, sym_line_comment, - [92703] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6495), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [89109] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4694), 1, + anon_sym_LT, + STATE(990), 1, + sym_type_parameters, + STATE(3144), 2, sym_line_comment, - [92714] = 3, - ACTIONS(6483), 1, - anon_sym_COLON_COLON, - ACTIONS(6497), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [89126] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6441), 1, + sym_super, + ACTIONS(6455), 1, + sym_identifier, + STATE(3145), 2, sym_line_comment, - [92725] = 2, - ACTIONS(3), 2, sym_block_comment, + [89143] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4826), 1, + anon_sym_COLON, + STATE(2491), 1, + sym_trait_bounds, + STATE(3146), 2, sym_line_comment, - ACTIONS(6499), 2, - anon_sym_const, - sym_mutable_specifier, - [92734] = 2, - ACTIONS(3), 2, sym_block_comment, + [89160] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 1, + sym_super, + ACTIONS(5624), 1, + sym_identifier, + STATE(3147), 2, sym_line_comment, - ACTIONS(6175), 2, - anon_sym_COMMA, - anon_sym_GT, - [92743] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6501), 2, + [89177] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6431), 1, + sym_super, + ACTIONS(6457), 1, sym_identifier, - sym_metavariable, - [92752] = 3, - ACTIONS(6503), 1, - anon_sym_SEMI, - ACTIONS(6505), 1, - anon_sym_as, - ACTIONS(3), 2, + STATE(3148), 2, + sym_line_comment, sym_block_comment, + [89194] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_enum_variant_list, + STATE(3149), 2, sym_line_comment, - [92763] = 3, - ACTIONS(5083), 1, + sym_block_comment, + [89211] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5598), 1, sym_super, - ACTIONS(5639), 1, + ACTIONS(6315), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3150), 2, sym_line_comment, - [92774] = 3, - ACTIONS(6401), 1, + sym_block_comment, + [89228] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4993), 1, sym_super, - ACTIONS(6423), 1, + ACTIONS(5600), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3151), 2, sym_line_comment, - [92785] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6507), 2, - sym_float_literal, - sym_integer_literal, - [92794] = 3, - ACTIONS(4822), 1, + [89245] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(1095), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(554), 1, + sym_declaration_list, + STATE(3152), 2, sym_line_comment, - [92805] = 2, - ACTIONS(3), 2, sym_block_comment, + [89262] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, + anon_sym_PIPE, + STATE(142), 1, + sym_closure_parameters, + STATE(3153), 2, sym_line_comment, - ACTIONS(6177), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [92814] = 2, - ACTIONS(3), 2, sym_block_comment, + [89279] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + STATE(2211), 1, + sym_parameters, + STATE(3154), 2, sym_line_comment, - ACTIONS(5541), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [92823] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89296] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6036), 1, + sym_identifier, + ACTIONS(6040), 1, + sym_mutable_specifier, + STATE(3155), 2, sym_line_comment, - [92834] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1237), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89313] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 1, + sym_super, + ACTIONS(5496), 1, + sym_identifier, + STATE(3156), 2, sym_line_comment, - [92845] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6509), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [89330] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, + anon_sym_LPAREN, + STATE(1071), 1, + sym_parameters, + STATE(3157), 2, sym_line_comment, - [92856] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6511), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [89347] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, + anon_sym_LPAREN, + STATE(1958), 1, + sym_parameters, + STATE(3158), 2, sym_line_comment, - [92867] = 3, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89364] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4347), 1, + anon_sym_BANG, + ACTIONS(6459), 1, + anon_sym_COLON_COLON, + STATE(3159), 2, sym_line_comment, - [92878] = 2, - ACTIONS(3), 2, sym_block_comment, + [89381] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6367), 1, + anon_sym_LT, + STATE(1506), 1, + sym_type_parameters, + STATE(3160), 2, sym_line_comment, - ACTIONS(6144), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [92887] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6385), 2, - sym_identifier, - sym_super, - [92896] = 3, - ACTIONS(31), 1, + [89398] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, anon_sym_PIPE, - STATE(127), 1, + STATE(140), 1, sym_closure_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3161), 2, sym_line_comment, - [92907] = 3, - ACTIONS(4435), 1, - anon_sym_LPAREN, - STATE(1920), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [89415] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_declaration_list, + STATE(3162), 2, sym_line_comment, - [92918] = 3, - ACTIONS(3614), 1, - anon_sym_COLON, - ACTIONS(5984), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [89432] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 2, + sym_identifier, + sym_super, + STATE(3163), 2, sym_line_comment, - [92929] = 3, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1233), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89447] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5881), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3164), 2, sym_line_comment, - [92940] = 3, - ACTIONS(4435), 1, - anon_sym_LPAREN, - STATE(2170), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [89462] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6331), 1, + sym_super, + ACTIONS(6461), 1, + sym_identifier, + STATE(3165), 2, sym_line_comment, - [92951] = 3, - ACTIONS(3258), 1, - anon_sym_LPAREN, - STATE(1036), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92962] = 3, - ACTIONS(6409), 1, + [89479] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6317), 1, sym_super, - ACTIONS(6513), 1, + ACTIONS(6463), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3166), 2, sym_line_comment, - [92973] = 3, - ACTIONS(3610), 1, - anon_sym_COLON, - ACTIONS(5984), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [92984] = 3, - ACTIONS(31), 1, + [89496] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, anon_sym_PIPE, - STATE(131), 1, + STATE(141), 1, sym_closure_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3167), 2, sym_line_comment, - [92995] = 3, - ACTIONS(6481), 1, - anon_sym_COLON_COLON, - ACTIONS(6497), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [89513] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3687), 1, + anon_sym_LT2, + STATE(1699), 1, + sym_type_arguments, + STATE(3168), 2, sym_line_comment, - [93006] = 3, - ACTIONS(5188), 1, - anon_sym_LBRACE, - STATE(1229), 1, - sym_enum_variant_list, - ACTIONS(3), 2, sym_block_comment, + [89530] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6359), 1, + sym_identifier, + ACTIONS(6431), 1, + sym_super, + STATE(3169), 2, sym_line_comment, - [93017] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(6163), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [93026] = 3, - ACTIONS(5313), 1, + [89547] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6293), 1, sym_super, - ACTIONS(6515), 1, + ACTIONS(6465), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3170), 2, sym_line_comment, - [93037] = 3, - ACTIONS(6425), 1, - sym_super, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [89564] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(5748), 1, + anon_sym_for, + STATE(3171), 2, sym_line_comment, - [93048] = 3, - ACTIONS(6401), 1, + sym_block_comment, + [89581] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5670), 1, sym_super, - ACTIONS(6519), 1, + ACTIONS(5698), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3172), 2, sym_line_comment, - [93059] = 3, - ACTIONS(5543), 1, + sym_block_comment, + [89598] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6365), 1, sym_super, - ACTIONS(5621), 1, + ACTIONS(6467), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3173), 2, + sym_line_comment, sym_block_comment, + [89615] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5031), 1, + anon_sym_RBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(3174), 2, sym_line_comment, - [93070] = 3, - ACTIONS(6435), 1, - sym_super, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [89632] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + ACTIONS(5786), 1, + anon_sym_for, + STATE(3175), 2, sym_line_comment, - [93081] = 2, - ACTIONS(3), 2, sym_block_comment, + [89649] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_LBRACE, + STATE(672), 1, + sym_field_declaration_list, + STATE(3176), 2, sym_line_comment, - ACTIONS(6523), 2, - anon_sym_const, - sym_mutable_specifier, - [93090] = 2, - ACTIONS(3), 2, sym_block_comment, + [89666] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5075), 1, + anon_sym_RBRACE, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(3177), 2, sym_line_comment, - ACTIONS(6431), 2, + sym_block_comment, + [89683] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6453), 2, sym_identifier, sym_super, - [93099] = 3, - ACTIONS(4435), 1, - anon_sym_LPAREN, - STATE(2129), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3178), 2, sym_line_comment, - [93110] = 3, - ACTIONS(5182), 1, - anon_sym_LBRACE, - STATE(511), 1, - sym_enum_variant_list, - ACTIONS(3), 2, sym_block_comment, + [89698] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6469), 2, + sym_float_literal, + sym_integer_literal, + STATE(3179), 2, sym_line_comment, - [93121] = 2, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - ACTIONS(5077), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [93130] = 3, - ACTIONS(5188), 1, + [89713] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(1102), 1, - sym_enum_variant_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(747), 1, + sym_declaration_list, + STATE(3180), 2, sym_line_comment, - [93141] = 3, - ACTIONS(4796), 1, + sym_block_comment, + [89730] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, anon_sym_LBRACE, - STATE(611), 1, + STATE(769), 1, sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3181), 2, sym_line_comment, - [93152] = 3, - ACTIONS(4936), 1, - anon_sym_COLON, - ACTIONS(5984), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [89747] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6367), 1, + anon_sym_LT, + STATE(996), 1, + sym_type_parameters, + STATE(3182), 2, sym_line_comment, - [93163] = 3, - ACTIONS(5313), 1, - sym_super, - ACTIONS(6525), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93174] = 3, - ACTIONS(5619), 1, + [89764] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6293), 1, sym_super, - ACTIONS(6399), 1, + ACTIONS(6471), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3183), 2, sym_line_comment, - [93185] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1213), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89781] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5344), 2, + sym_identifier, + sym_super, + STATE(3184), 2, sym_line_comment, - [93196] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89796] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, + anon_sym_LBRACE, + STATE(758), 1, + sym_field_declaration_list, + STATE(3185), 2, sym_line_comment, - [93207] = 3, - ACTIONS(31), 1, + sym_block_comment, + [89813] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, anon_sym_PIPE, - STATE(142), 1, + STATE(147), 1, sym_closure_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3186), 2, sym_line_comment, - [93218] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(612), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89830] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5746), 1, + anon_sym_EQ_GT, + ACTIONS(6443), 1, + anon_sym_AMP_AMP, + STATE(3187), 2, sym_line_comment, - [93229] = 3, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1109), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89847] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 1, + sym_super, + ACTIONS(5664), 1, + sym_identifier, + STATE(3188), 2, sym_line_comment, - [93240] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89864] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6473), 1, + anon_sym_in, + STATE(3189), 2, sym_line_comment, - [93251] = 3, - ACTIONS(4439), 1, - anon_sym_BANG, - ACTIONS(6527), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93262] = 3, - ACTIONS(6401), 1, + [89881] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6317), 1, sym_super, - ACTIONS(6529), 1, + ACTIONS(6475), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3190), 2, sym_line_comment, - [93273] = 3, - ACTIONS(31), 1, + sym_block_comment, + [89898] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(33), 1, anon_sym_PIPE, - STATE(140), 1, + STATE(152), 1, sym_closure_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3191), 2, sym_line_comment, - [93284] = 3, - ACTIONS(5123), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [89915] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4734), 1, + anon_sym_LBRACE, + STATE(536), 1, + sym_declaration_list, + STATE(3192), 2, sym_line_comment, - [93295] = 3, - ACTIONS(5127), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93306] = 3, - ACTIONS(6385), 1, + [89932] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6293), 1, sym_super, - ACTIONS(6531), 1, + ACTIONS(6477), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3193), 2, sym_line_comment, - [93317] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(633), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [89949] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6479), 1, + anon_sym_SEMI, + ACTIONS(6481), 1, + anon_sym_as, + STATE(3194), 2, sym_line_comment, - [93328] = 3, - ACTIONS(5484), 1, - sym_super, - ACTIONS(5609), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93339] = 3, - ACTIONS(6439), 1, + [89966] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4993), 1, sym_super, - ACTIONS(6533), 1, + ACTIONS(5592), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [93350] = 3, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1118), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3195), 2, sym_line_comment, - [93361] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6535), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93372] = 3, - ACTIONS(6537), 1, + [89983] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6331), 1, + sym_super, + ACTIONS(6429), 1, sym_identifier, - ACTIONS(6539), 1, - sym_mutable_specifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3196), 2, sym_line_comment, - [93383] = 2, - ACTIONS(3), 2, sym_block_comment, + [90000] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6431), 2, + sym_identifier, + sym_super, + STATE(3197), 2, sym_line_comment, - ACTIONS(6541), 2, - sym_float_literal, - sym_integer_literal, - [93392] = 3, - ACTIONS(6543), 1, - anon_sym_SEMI, - ACTIONS(6545), 1, - anon_sym_as, - ACTIONS(3), 2, sym_block_comment, + [90015] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6483), 1, + anon_sym_COLON_COLON, + ACTIONS(6485), 1, + anon_sym_BANG, + STATE(3198), 2, sym_line_comment, - [93403] = 2, - ACTIONS(3), 2, sym_block_comment, + [90032] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, + anon_sym_LBRACE, + STATE(1199), 1, + sym_field_declaration_list, + STATE(3199), 2, sym_line_comment, - ACTIONS(5313), 2, - sym_identifier, - sym_super, - [93412] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(123), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [90049] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6487), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3200), 2, sym_line_comment, - [93423] = 3, - ACTIONS(6547), 1, - anon_sym_SEMI, - ACTIONS(6549), 1, - anon_sym_as, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93434] = 3, - ACTIONS(4435), 1, + [90064] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3158), 1, anon_sym_LPAREN, - STATE(2168), 1, + STATE(1062), 1, sym_parameters, - ACTIONS(3), 2, - sym_block_comment, + STATE(3201), 2, sym_line_comment, - [93445] = 3, - ACTIONS(6189), 1, + sym_block_comment, + [90081] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6281), 1, sym_identifier, - ACTIONS(6193), 1, - sym_mutable_specifier, - ACTIONS(3), 2, + ACTIONS(6317), 1, + sym_super, + STATE(3202), 2, + sym_line_comment, sym_block_comment, + [90098] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6283), 1, + sym_identifier, + ACTIONS(6293), 1, + sym_super, + STATE(3203), 2, sym_line_comment, - [93456] = 2, - ACTIONS(3), 2, sym_block_comment, + [90115] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4752), 1, + anon_sym_LBRACE, + STATE(1205), 1, + sym_declaration_list, + STATE(3204), 2, sym_line_comment, - ACTIONS(6004), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [93465] = 3, - ACTIONS(6419), 1, - anon_sym_LT, - STATE(1476), 1, - sym_type_parameters, - ACTIONS(3), 2, sym_block_comment, + [90132] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 1, + sym_super, + ACTIONS(5706), 1, + sym_identifier, + STATE(3205), 2, sym_line_comment, - [93476] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(147), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [90149] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6431), 1, + sym_super, + ACTIONS(6489), 1, + sym_identifier, + STATE(3206), 2, sym_line_comment, - [93487] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6551), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [90166] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6491), 1, + anon_sym_EQ_GT, + ACTIONS(6493), 1, + anon_sym_if, + STATE(3207), 2, sym_line_comment, - [93498] = 3, - ACTIONS(4786), 1, + sym_block_comment, + [90183] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4762), 1, anon_sym_LBRACE, - STATE(529), 1, + STATE(1209), 1, sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, + STATE(3208), 2, sym_line_comment, - [93509] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6553), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93520] = 3, - ACTIONS(6401), 1, + [90200] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 1, sym_super, - ACTIONS(6555), 1, + ACTIONS(5700), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3209), 2, + sym_line_comment, sym_block_comment, + [90217] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6431), 1, + sym_super, + ACTIONS(6495), 1, + sym_identifier, + STATE(3210), 2, sym_line_comment, - [93531] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(152), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [90234] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6497), 1, + anon_sym_LPAREN, + ACTIONS(6499), 1, + anon_sym_LBRACE, + STATE(3211), 2, sym_line_comment, - [93542] = 2, - ACTIONS(3), 2, sym_block_comment, + [90251] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6501), 1, + anon_sym_LPAREN, + ACTIONS(6503), 1, + anon_sym_LBRACE, + STATE(3212), 2, sym_line_comment, - ACTIONS(6435), 2, - sym_identifier, - sym_super, - [93551] = 3, - ACTIONS(6385), 1, + sym_block_comment, + [90268] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5482), 1, sym_super, - ACTIONS(6557), 1, + ACTIONS(5696), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3213), 2, sym_line_comment, - [93562] = 3, - ACTIONS(3831), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_field_initializer_list, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93573] = 3, - ACTIONS(5083), 1, + [90285] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6431), 1, sym_super, - ACTIONS(5599), 1, + ACTIONS(6505), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3214), 2, sym_line_comment, - [93584] = 3, + sym_block_comment, + [90302] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(6431), 1, sym_super, - ACTIONS(6493), 1, + ACTIONS(6507), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3215), 2, + sym_line_comment, sym_block_comment, + [90319] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(6509), 1, + anon_sym_EQ, + STATE(3216), 2, sym_line_comment, - [93595] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6559), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [90336] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4993), 1, + sym_super, + ACTIONS(5696), 1, + sym_identifier, + STATE(3217), 2, sym_line_comment, - [93606] = 3, - ACTIONS(31), 1, - anon_sym_PIPE, - STATE(150), 1, - sym_closure_parameters, - ACTIONS(3), 2, sym_block_comment, + [90353] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6331), 1, + sym_super, + ACTIONS(6505), 1, + sym_identifier, + STATE(3218), 2, sym_line_comment, - [93617] = 3, - ACTIONS(6475), 1, + sym_block_comment, + [90370] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6439), 1, anon_sym_COLON_COLON, - ACTIONS(6497), 1, + ACTIONS(6511), 1, anon_sym_RPAREN, - ACTIONS(3), 2, + STATE(3219), 2, + sym_line_comment, sym_block_comment, + [90387] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5111), 1, + anon_sym_LBRACE, + STATE(1230), 1, + sym_enum_variant_list, + STATE(3220), 2, sym_line_comment, - [93628] = 3, - ACTIONS(6471), 1, + sym_block_comment, + [90404] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6449), 1, anon_sym_COLON_COLON, - ACTIONS(6561), 1, + ACTIONS(6513), 1, anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, + STATE(3221), 2, sym_line_comment, - [93639] = 3, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [90421] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6445), 1, + anon_sym_COLON_COLON, + ACTIONS(6511), 1, + anon_sym_RPAREN, + STATE(3222), 2, sym_line_comment, - [93650] = 3, - ACTIONS(6373), 1, - sym_identifier, - ACTIONS(6401), 1, - sym_super, - ACTIONS(3), 2, sym_block_comment, + [90438] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6381), 1, + anon_sym_COLON_COLON, + ACTIONS(6511), 1, + anon_sym_RPAREN, + STATE(3223), 2, sym_line_comment, - [93661] = 3, - ACTIONS(6367), 1, - sym_identifier, - ACTIONS(6385), 1, - sym_super, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93672] = 3, - ACTIONS(5619), 1, - sym_super, - ACTIONS(6563), 1, + [90455] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6515), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3224), 2, sym_line_comment, - [93683] = 3, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5597), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90469] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + STATE(3225), 2, sym_line_comment, - [93694] = 3, - ACTIONS(6435), 1, - sym_super, - ACTIONS(6565), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93705] = 3, - ACTIONS(6429), 1, + [90483] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6517), 1, sym_identifier, - ACTIONS(6435), 1, - sym_super, - ACTIONS(3), 2, - sym_block_comment, + STATE(3226), 2, sym_line_comment, - [93716] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6567), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [93727] = 3, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5595), 1, + [90497] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6519), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3227), 2, sym_line_comment, - [93738] = 3, - ACTIONS(6435), 1, - sym_super, - ACTIONS(6569), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90511] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6521), 1, + sym_identifier, + STATE(3228), 2, sym_line_comment, - [93749] = 2, - ACTIONS(3), 2, sym_block_comment, + [90525] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6523), 1, + sym_identifier, + STATE(3229), 2, sym_line_comment, - ACTIONS(6571), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [93758] = 3, - ACTIONS(4786), 1, - anon_sym_LBRACE, - STATE(757), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [90539] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5686), 1, + anon_sym_RBRACK, + STATE(3230), 2, sym_line_comment, - [93769] = 3, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5593), 1, + sym_block_comment, + [90553] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6525), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3231), 2, + sym_line_comment, sym_block_comment, + [90567] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5682), 1, + anon_sym_RBRACK, + STATE(3232), 2, sym_line_comment, - [93780] = 3, - ACTIONS(6435), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90581] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5674), 1, + anon_sym_RPAREN, + STATE(3233), 2, sym_line_comment, - [93791] = 3, - ACTIONS(3566), 1, - anon_sym_COLON, - ACTIONS(5984), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [90595] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3945), 1, + anon_sym_COLON_COLON, + STATE(3234), 2, sym_line_comment, - [93802] = 3, - ACTIONS(4796), 1, - anon_sym_LBRACE, - STATE(748), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [90609] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6527), 1, + anon_sym_COLON, + STATE(3235), 2, sym_line_comment, - [93813] = 3, - ACTIONS(5083), 1, - sym_super, - ACTIONS(5593), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90623] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + STATE(3236), 2, sym_line_comment, - [93824] = 3, - ACTIONS(6431), 1, - sym_super, - ACTIONS(6573), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90637] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6529), 1, + sym_identifier, + STATE(3237), 2, sym_line_comment, - [93835] = 3, - ACTIONS(6575), 1, - anon_sym_EQ_GT, - ACTIONS(6577), 1, - anon_sym_if, - ACTIONS(3), 2, sym_block_comment, + [90651] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4433), 1, + anon_sym_COLON_COLON, + STATE(3238), 2, sym_line_comment, - [93846] = 3, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6579), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [90665] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6531), 1, + anon_sym_RPAREN, + STATE(3239), 2, sym_line_comment, - [93857] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(5438), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [90679] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6533), 1, + anon_sym_RPAREN, + STATE(3240), 2, sym_line_comment, - [93868] = 3, - ACTIONS(4606), 1, - anon_sym_BANG, - ACTIONS(4620), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [90693] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5730), 1, + anon_sym_RBRACE, + STATE(3241), 2, sym_line_comment, - [93879] = 3, - ACTIONS(4808), 1, - anon_sym_LBRACE, - STATE(1196), 1, - sym_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [90707] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6535), 1, + anon_sym_EQ_GT, + STATE(3242), 2, sym_line_comment, - [93890] = 3, - ACTIONS(5543), 1, - sym_super, - ACTIONS(5673), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90721] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6537), 1, + anon_sym_COLON, + STATE(3243), 2, sym_line_comment, - [93901] = 3, - ACTIONS(6581), 1, - anon_sym_SEMI, - ACTIONS(6583), 1, - anon_sym_as, - ACTIONS(3), 2, sym_block_comment, + [90735] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6539), 1, + anon_sym_SEMI, + STATE(3244), 2, sym_line_comment, - [93912] = 3, - ACTIONS(6585), 1, - anon_sym_COLON_COLON, - ACTIONS(6587), 1, - anon_sym_BANG, - ACTIONS(3), 2, sym_block_comment, + [90749] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4977), 1, + anon_sym_COLON_COLON, + STATE(3245), 2, sym_line_comment, - [93923] = 3, - ACTIONS(4822), 1, - anon_sym_LBRACE, - STATE(1189), 1, - sym_field_declaration_list, - ACTIONS(3), 2, sym_block_comment, + [90763] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6541), 1, + anon_sym_fn, + STATE(3246), 2, sym_line_comment, - [93934] = 3, - ACTIONS(6385), 1, - sym_super, - ACTIONS(6515), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90777] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(3247), 2, sym_line_comment, - [93945] = 3, - ACTIONS(6589), 1, - anon_sym_LPAREN, - ACTIONS(6591), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, + [90791] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6545), 1, + anon_sym_COLON_COLON, + STATE(3248), 2, sym_line_comment, - [93956] = 3, - ACTIONS(4435), 1, - anon_sym_LPAREN, - STATE(1913), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [90805] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6547), 1, + sym_identifier, + STATE(3249), 2, sym_line_comment, - [93967] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6593), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [90819] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5734), 1, + anon_sym_RBRACE, + STATE(3250), 2, sym_line_comment, - [93978] = 3, - ACTIONS(6595), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, + [90833] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5692), 1, + anon_sym_RPAREN, + STATE(3251), 2, sym_line_comment, - [93989] = 3, - ACTIONS(5374), 1, - anon_sym_PIPE, - ACTIONS(6599), 1, - anon_sym_in, - ACTIONS(3), 2, sym_block_comment, + [90847] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6549), 1, + anon_sym_SEMI, + STATE(3252), 2, sym_line_comment, - [94000] = 3, - ACTIONS(4435), 1, - anon_sym_LPAREN, - STATE(1916), 1, - sym_parameters, - ACTIONS(3), 2, sym_block_comment, + [90861] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6551), 1, + anon_sym_RBRACE, + STATE(3253), 2, sym_line_comment, - [94011] = 3, - ACTIONS(4930), 1, - anon_sym_PLUS, - ACTIONS(6601), 1, - anon_sym_GT, - ACTIONS(3), 2, sym_block_comment, + [90875] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4794), 1, + anon_sym_COLON_COLON, + STATE(3254), 2, sym_line_comment, - [94022] = 2, - ACTIONS(6603), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [90889] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6553), 1, + anon_sym_SEMI, + STATE(3255), 2, sym_line_comment, - [94030] = 2, - ACTIONS(6605), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [90903] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6555), 1, + anon_sym_SEMI, + STATE(3256), 2, sym_line_comment, - [94038] = 2, - ACTIONS(4037), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [90917] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6557), 1, + anon_sym_EQ_GT, + STATE(3257), 2, sym_line_comment, - [94046] = 2, - ACTIONS(4564), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [90931] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3983), 1, + anon_sym_RPAREN, + STATE(3258), 2, sym_line_comment, - [94054] = 2, - ACTIONS(1640), 1, + sym_block_comment, + [90945] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6559), 1, anon_sym_EQ_GT, - ACTIONS(3), 2, + STATE(3259), 2, + sym_line_comment, sym_block_comment, + [90959] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6561), 1, + sym_identifier, + STATE(3260), 2, sym_line_comment, - [94062] = 2, - ACTIONS(6607), 1, + sym_block_comment, + [90973] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6563), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + STATE(3261), 2, + sym_line_comment, sym_block_comment, + [90987] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6565), 1, + sym_identifier, + STATE(3262), 2, sym_line_comment, - [94070] = 2, - ACTIONS(3756), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [91001] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6567), 1, + sym_identifier, + STATE(3263), 2, sym_line_comment, - [94078] = 2, - ACTIONS(6609), 1, + sym_block_comment, + [91015] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6569), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3264), 2, + sym_line_comment, sym_block_comment, + [91029] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6571), 1, + sym_identifier, + STATE(3265), 2, sym_line_comment, - [94086] = 2, - ACTIONS(6611), 1, + sym_block_comment, + [91043] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6573), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3266), 2, + sym_line_comment, sym_block_comment, + [91057] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6575), 1, + anon_sym_RBRACK, + STATE(3267), 2, sym_line_comment, - [94094] = 2, - ACTIONS(5081), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [91071] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5075), 1, + anon_sym_SEMI, + STATE(3268), 2, sym_line_comment, - [94102] = 2, - ACTIONS(6613), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, + [91085] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6577), 1, + anon_sym_SEMI, + STATE(3269), 2, sym_line_comment, - [94110] = 2, - ACTIONS(6615), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91099] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(696), 1, + anon_sym_RBRACK, + STATE(3270), 2, sym_line_comment, - [94118] = 2, - ACTIONS(6617), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [91113] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5031), 1, + anon_sym_SEMI, + STATE(3271), 2, sym_line_comment, - [94126] = 2, - ACTIONS(6619), 1, + sym_block_comment, + [91127] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6579), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3272), 2, + sym_line_comment, sym_block_comment, + [91141] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5433), 1, + anon_sym_LBRACE, + STATE(3273), 2, sym_line_comment, - [94134] = 2, - ACTIONS(6621), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91155] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6581), 1, + anon_sym_SEMI, + STATE(3274), 2, sym_line_comment, - [94142] = 2, - ACTIONS(3726), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [91169] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6583), 1, + anon_sym_RBRACK, + STATE(3275), 2, sym_line_comment, - [94150] = 2, - ACTIONS(6623), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91183] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6585), 1, + anon_sym_fn, + STATE(3276), 2, sym_line_comment, - [94158] = 2, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91197] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6587), 1, + anon_sym_COLON, + STATE(3277), 2, sym_line_comment, - [94166] = 2, - ACTIONS(6627), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91211] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6589), 1, + anon_sym_COLON_COLON, + STATE(3278), 2, sym_line_comment, - [94174] = 2, - ACTIONS(6629), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, + [91225] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6591), 1, + anon_sym_COLON_COLON, + STATE(3279), 2, sym_line_comment, - [94182] = 2, - ACTIONS(6631), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [91239] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6593), 1, + anon_sym_fn, + STATE(3280), 2, sym_line_comment, - [94190] = 2, - ACTIONS(6633), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [91253] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5628), 1, + anon_sym_LBRACE, + STATE(3281), 2, sym_line_comment, - [94198] = 2, - ACTIONS(6635), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91267] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5324), 1, + anon_sym_RPAREN, + STATE(3282), 2, sym_line_comment, - [94206] = 2, - ACTIONS(6637), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [91281] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6595), 1, + anon_sym_SEMI, + STATE(3283), 2, sym_line_comment, - [94214] = 2, - ACTIONS(6639), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91295] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6597), 1, + sym_identifier, + STATE(3284), 2, sym_line_comment, - [94222] = 2, - ACTIONS(6641), 1, + sym_block_comment, + [91309] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6599), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, + STATE(3285), 2, + sym_line_comment, sym_block_comment, + [91323] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6601), 1, + anon_sym_COLON, + STATE(3286), 2, sym_line_comment, - [94230] = 2, - ACTIONS(6643), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91337] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5636), 1, + anon_sym_RPAREN, + STATE(3287), 2, sym_line_comment, - [94238] = 2, - ACTIONS(6645), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91351] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5792), 1, + anon_sym_RBRACE, + STATE(3288), 2, sym_line_comment, - [94246] = 2, - ACTIONS(6647), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91365] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3002), 1, + anon_sym_PLUS, + STATE(3289), 2, sym_line_comment, - [94254] = 2, - ACTIONS(6649), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91379] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5796), 1, + anon_sym_RBRACE, + STATE(3290), 2, sym_line_comment, - [94262] = 2, - ACTIONS(6651), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91393] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6603), 1, + anon_sym_SEMI, + STATE(3291), 2, sym_line_comment, - [94270] = 2, - ACTIONS(6653), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, + [91407] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5907), 1, + anon_sym_GT, + STATE(3292), 2, sym_line_comment, - [94278] = 2, - ACTIONS(6655), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, sym_block_comment, + [91421] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5812), 1, + anon_sym_RBRACE, + STATE(3293), 2, sym_line_comment, - [94286] = 2, - ACTIONS(6579), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91435] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6605), 1, + anon_sym_fn, + STATE(3294), 2, sym_line_comment, - [94294] = 2, - ACTIONS(6553), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91449] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6607), 1, + anon_sym_RBRACK, + STATE(3295), 2, sym_line_comment, - [94302] = 2, - ACTIONS(6567), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91463] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6609), 1, + sym_identifier, + STATE(3296), 2, sym_line_comment, - [94310] = 2, - ACTIONS(5436), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [91477] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6611), 1, + sym_identifier, + STATE(3297), 2, sym_line_comment, - [94318] = 2, - ACTIONS(6657), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [91491] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6613), 1, + sym_identifier, + STATE(3298), 2, sym_line_comment, - [94326] = 2, - ACTIONS(6019), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [91505] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3927), 1, + anon_sym_COLON_COLON, + STATE(3299), 2, sym_line_comment, - [94334] = 2, - ACTIONS(6659), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94342] = 2, - ACTIONS(6661), 1, + [91519] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6615), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3300), 2, sym_line_comment, - [94350] = 2, - ACTIONS(6126), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94358] = 2, - ACTIONS(6551), 1, + [91533] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6617), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3301), 2, sym_line_comment, - [94366] = 2, - ACTIONS(6663), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [91547] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6619), 1, + sym_identifier, + STATE(3302), 2, sym_line_comment, - [94374] = 2, - ACTIONS(6665), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, + [91561] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6621), 1, + anon_sym_RBRACE, + STATE(3303), 2, sym_line_comment, - [94382] = 2, - ACTIONS(5563), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, + [91575] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6623), 1, + anon_sym_SEMI, + STATE(3304), 2, sym_line_comment, - [94390] = 2, - ACTIONS(4531), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [91589] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6625), 1, + sym_identifier, + STATE(3305), 2, sym_line_comment, - [94398] = 2, - ACTIONS(6667), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, + [91603] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6627), 1, + anon_sym_RBRACE, + STATE(3306), 2, sym_line_comment, - [94406] = 2, - ACTIONS(6669), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [91617] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6629), 1, + anon_sym_SEMI, + STATE(3307), 2, sym_line_comment, - [94414] = 2, - ACTIONS(6671), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [91631] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(3308), 2, sym_line_comment, - [94422] = 2, - ACTIONS(5293), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [91645] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5923), 1, + anon_sym_RBRACE, + STATE(3309), 2, sym_line_comment, - [94430] = 2, - ACTIONS(6673), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91659] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6631), 1, + anon_sym_LT, + STATE(3310), 2, sym_line_comment, - [94438] = 2, - ACTIONS(6675), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91673] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6633), 1, + anon_sym_RBRACE, + STATE(3311), 2, sym_line_comment, - [94446] = 2, - ACTIONS(6677), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91687] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5888), 1, + anon_sym_RBRACE, + STATE(3312), 2, sym_line_comment, - [94454] = 2, - ACTIONS(6679), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91701] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6635), 1, + anon_sym_SEMI, + STATE(3313), 2, sym_line_comment, - [94462] = 2, - ACTIONS(6681), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [91715] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6637), 1, + anon_sym_SEMI, + STATE(3314), 2, sym_line_comment, - [94470] = 2, - ACTIONS(3781), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [91729] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6639), 1, + sym_identifier, + STATE(3315), 2, sym_line_comment, - [94478] = 2, - ACTIONS(6683), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91743] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6641), 1, + anon_sym_SEMI, + STATE(3316), 2, sym_line_comment, - [94486] = 2, - ACTIONS(6685), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [91757] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6643), 1, + anon_sym_COLON_COLON, + STATE(3317), 2, sym_line_comment, - [94494] = 2, - ACTIONS(6687), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91771] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6645), 1, + anon_sym_SEMI, + STATE(3318), 2, sym_line_comment, - [94502] = 2, - ACTIONS(6689), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91785] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3016), 1, + anon_sym_PLUS, + STATE(3319), 2, sym_line_comment, - [94510] = 2, - ACTIONS(6691), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94518] = 2, - ACTIONS(6693), 1, + [91799] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6647), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3320), 2, sym_line_comment, - [94526] = 2, - ACTIONS(6695), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [91813] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6649), 1, + anon_sym_LBRACK, + STATE(3321), 2, sym_line_comment, - [94534] = 2, - ACTIONS(5990), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [91827] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6651), 1, + anon_sym_EQ_GT, + STATE(3322), 2, sym_line_comment, - [94542] = 2, - ACTIONS(6697), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [91841] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6653), 1, + anon_sym_RBRACK, + STATE(3323), 2, sym_line_comment, - [94550] = 2, - ACTIONS(6699), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91855] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6655), 1, + anon_sym_EQ, + STATE(3324), 2, sym_line_comment, - [94558] = 2, - ACTIONS(6701), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91869] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6657), 1, + sym_identifier, + STATE(3325), 2, sym_line_comment, - [94566] = 2, - ACTIONS(6703), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91883] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6659), 1, + anon_sym_RPAREN, + STATE(3326), 2, sym_line_comment, - [94574] = 2, - ACTIONS(642), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [91897] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(541), 1, + anon_sym_RBRACK, + STATE(3327), 2, sym_line_comment, - [94582] = 2, - ACTIONS(6705), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94590] = 2, - ACTIONS(6707), 1, + [91911] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6661), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3328), 2, sym_line_comment, - [94598] = 2, - ACTIONS(6709), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91925] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6663), 1, + sym_identifier, + STATE(3329), 2, sym_line_comment, - [94606] = 2, - ACTIONS(6711), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [91939] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6665), 1, + anon_sym_COLON_COLON, + STATE(3330), 2, sym_line_comment, - [94614] = 2, - ACTIONS(6713), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94622] = 2, - ACTIONS(6715), 1, + [91953] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6407), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3331), 2, sym_line_comment, - [94630] = 2, - ACTIONS(6717), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [91967] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6667), 1, + anon_sym_LPAREN, + STATE(3332), 2, sym_line_comment, - [94638] = 2, - ACTIONS(6719), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [91981] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(3333), 2, sym_line_comment, - [94646] = 2, - ACTIONS(3102), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [91995] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1478), 1, + anon_sym_EQ_GT, + STATE(3334), 2, sym_line_comment, - [94654] = 2, - ACTIONS(5986), 1, - anon_sym_GT, - ACTIONS(3), 2, sym_block_comment, + [92009] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6669), 1, + sym_identifier, + STATE(3335), 2, sym_line_comment, - [94662] = 2, - ACTIONS(6721), 1, - sym_self, - ACTIONS(3), 2, sym_block_comment, + [92023] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5935), 1, + anon_sym_RBRACE, + STATE(3336), 2, sym_line_comment, - [94670] = 2, - ACTIONS(6723), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, + [92037] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6671), 1, + sym_identifier, + STATE(3337), 2, sym_line_comment, - [94678] = 2, - ACTIONS(6725), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92051] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6673), 1, + anon_sym_LPAREN, + STATE(3338), 2, sym_line_comment, - [94686] = 2, - ACTIONS(6727), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92065] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(529), 1, + anon_sym_RBRACK, + STATE(3339), 2, sym_line_comment, - [94694] = 2, - ACTIONS(4023), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92079] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6675), 1, + anon_sym_LBRACK, + STATE(3340), 2, sym_line_comment, - [94702] = 2, - ACTIONS(6729), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, sym_block_comment, + [92093] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6385), 1, + anon_sym_SEMI, + STATE(3341), 2, sym_line_comment, - [94710] = 2, - ACTIONS(6731), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, + [92107] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6677), 1, + anon_sym_RPAREN, + STATE(3342), 2, sym_line_comment, - [94718] = 2, - ACTIONS(6733), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [92121] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6679), 1, + anon_sym_STAR_SLASH, + STATE(3343), 2, sym_line_comment, - [94726] = 2, - ACTIONS(6735), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [92135] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6681), 1, + anon_sym_SEMI, + STATE(3344), 2, sym_line_comment, - [94734] = 2, - ACTIONS(6737), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92149] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6683), 1, + anon_sym_STAR_SLASH, + STATE(3345), 2, sym_line_comment, - [94742] = 2, - ACTIONS(6739), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92163] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6685), 1, + anon_sym_STAR_SLASH, + STATE(3346), 2, sym_line_comment, - [94750] = 2, - ACTIONS(6741), 1, - anon_sym_LT, - ACTIONS(3), 2, sym_block_comment, + [92177] = 4, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(6687), 1, + aux_sym_line_comment_token2, + STATE(3347), 2, sym_line_comment, - [94758] = 2, - ACTIONS(6743), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92191] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6689), 1, + sym_identifier, + STATE(3348), 2, sym_line_comment, - [94766] = 2, - ACTIONS(6745), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92205] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6691), 1, + anon_sym_RBRACE, + STATE(3349), 2, sym_line_comment, - [94774] = 2, - ACTIONS(6747), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92219] = 4, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(6693), 1, + aux_sym_line_comment_token2, + STATE(3350), 2, sym_line_comment, - [94782] = 2, - ACTIONS(6749), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [92233] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4709), 1, + anon_sym_COLON_COLON, + STATE(3351), 2, sym_line_comment, - [94790] = 2, - ACTIONS(3118), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [92247] = 4, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(6695), 1, + aux_sym_line_comment_token2, + STATE(3352), 2, sym_line_comment, - [94798] = 2, - ACTIONS(6751), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [92261] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6383), 1, + anon_sym_SEMI, + STATE(3353), 2, sym_line_comment, - [94806] = 2, - ACTIONS(6753), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92275] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6697), 1, + anon_sym_SEMI, + STATE(3354), 2, sym_line_comment, - [94814] = 2, - ACTIONS(6755), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94822] = 2, - ACTIONS(6757), 1, + [92289] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4999), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3355), 2, sym_line_comment, - [94830] = 2, - ACTIONS(6759), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92303] = 4, + ACTIONS(5284), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5294), 1, + anon_sym_SLASH_STAR, + ACTIONS(6699), 1, + aux_sym_line_comment_token2, + STATE(3356), 2, sym_line_comment, - [94838] = 2, - ACTIONS(6761), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94846] = 2, - ACTIONS(5960), 1, + [92317] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6701), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, + STATE(3357), 2, sym_line_comment, - [94854] = 2, - ACTIONS(6763), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92331] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6703), 1, + anon_sym_COLON, + STATE(3358), 2, sym_line_comment, - [94862] = 2, - ACTIONS(6765), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, sym_block_comment, + [92345] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6705), 1, + anon_sym_SEMI, + STATE(3359), 2, sym_line_comment, - [94870] = 2, - ACTIONS(6767), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92359] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6707), 1, + anon_sym_RBRACE, + STATE(3360), 2, sym_line_comment, - [94878] = 2, - ACTIONS(6769), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92373] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6709), 1, + sym_identifier, + STATE(3361), 2, sym_line_comment, - [94886] = 2, - ACTIONS(531), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [92387] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6711), 1, + sym_identifier, + STATE(3362), 2, sym_line_comment, - [94894] = 2, - ACTIONS(6771), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92401] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6381), 1, + anon_sym_COLON_COLON, + STATE(3363), 2, sym_line_comment, - [94902] = 2, - ACTIONS(5996), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [92415] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6713), 1, + sym_identifier, + STATE(3364), 2, sym_line_comment, - [94910] = 2, - ACTIONS(6773), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [92429] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6715), 1, + anon_sym_SEMI, + STATE(3365), 2, sym_line_comment, - [94918] = 2, - ACTIONS(6775), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92443] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6717), 1, + anon_sym_SEMI, + STATE(3366), 2, sym_line_comment, - [94926] = 2, - ACTIONS(6777), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [92457] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6719), 1, + anon_sym_COLON, + STATE(3367), 2, sym_line_comment, - [94934] = 2, - ACTIONS(6231), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94942] = 2, - ACTIONS(6779), 1, + [92471] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6721), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3368), 2, sym_line_comment, - [94950] = 2, - ACTIONS(5964), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [94958] = 2, - ACTIONS(6781), 1, + [92485] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6723), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3369), 2, sym_line_comment, - [94966] = 2, - ACTIONS(6783), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92499] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4387), 1, + anon_sym_fn, + STATE(3370), 2, sym_line_comment, - [94974] = 2, - ACTIONS(6785), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92513] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6725), 1, + anon_sym_COLON_COLON, + STATE(3371), 2, sym_line_comment, - [94982] = 2, - ACTIONS(6787), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, sym_block_comment, + [92527] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, + STATE(3372), 2, sym_line_comment, - [94990] = 2, - ACTIONS(6789), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92541] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6727), 1, + sym_identifier, + STATE(3373), 2, sym_line_comment, - [94998] = 2, - ACTIONS(6791), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [92555] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6729), 1, + anon_sym_SEMI, + STATE(3374), 2, sym_line_comment, - [95006] = 2, - ACTIONS(6793), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92569] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6731), 1, + anon_sym_COLON_COLON, + STATE(3375), 2, sym_line_comment, - [95014] = 2, - ACTIONS(6795), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [92583] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6733), 1, + anon_sym_fn, + STATE(3376), 2, sym_line_comment, - [95022] = 2, - ACTIONS(3971), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92597] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5975), 1, + anon_sym_RBRACE, + STATE(3377), 2, sym_line_comment, - [95030] = 2, - ACTIONS(4646), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92611] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6735), 1, + anon_sym_COLON_COLON, + STATE(3378), 2, sym_line_comment, - [95038] = 2, - ACTIONS(6797), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92625] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5384), 1, + anon_sym_RPAREN, + STATE(3379), 2, sym_line_comment, - [95046] = 2, - ACTIONS(6799), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92639] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5374), 1, + anon_sym_RPAREN, + STATE(3380), 2, sym_line_comment, - [95054] = 2, - ACTIONS(6801), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [92653] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6737), 1, + anon_sym_COLON, + STATE(3381), 2, sym_line_comment, - [95062] = 2, - ACTIONS(6481), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92667] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6739), 1, + sym_identifier, + STATE(3382), 2, sym_line_comment, - [95070] = 2, - ACTIONS(6803), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92681] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6741), 1, + anon_sym_COLON_COLON, + STATE(3383), 2, sym_line_comment, - [95078] = 2, - ACTIONS(6805), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [92695] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6743), 1, + anon_sym_SEMI, + STATE(3384), 2, sym_line_comment, - [95086] = 2, - ACTIONS(4481), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95094] = 2, - ACTIONS(4015), 1, + [92709] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3656), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3385), 2, sym_line_comment, - [95102] = 2, - ACTIONS(6807), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92723] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6745), 1, + anon_sym_SEMI, + STATE(3386), 2, sym_line_comment, - [95110] = 2, - ACTIONS(6809), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, sym_block_comment, + [92737] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6747), 1, + anon_sym_COLON_COLON, + STATE(3387), 2, sym_line_comment, - [95118] = 2, - ACTIONS(6811), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, + [92751] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6749), 1, + anon_sym_fn, + STATE(3388), 2, sym_line_comment, - [95126] = 2, - ACTIONS(6813), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92765] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6751), 1, + anon_sym_LBRACE, + STATE(3389), 2, sym_line_comment, - [95134] = 2, - ACTIONS(6815), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92779] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6277), 1, + anon_sym_SEMI, + STATE(3390), 2, sym_line_comment, - [95142] = 2, - ACTIONS(6817), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95150] = 2, - ACTIONS(6819), 1, + [92793] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6753), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3391), 2, sym_line_comment, - [95158] = 2, - ACTIONS(6821), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92807] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6755), 1, + anon_sym_SEMI, + STATE(3392), 2, sym_line_comment, - [95166] = 2, - ACTIONS(6823), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95174] = 2, - ACTIONS(6825), 1, + [92821] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6757), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3393), 2, sym_line_comment, - [95182] = 2, - ACTIONS(5113), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92835] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6759), 1, + anon_sym_EQ_GT, + STATE(3394), 2, sym_line_comment, - [95190] = 2, - ACTIONS(6827), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92849] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6761), 1, + anon_sym_RPAREN, + STATE(3395), 2, sym_line_comment, - [95198] = 2, - ACTIONS(6829), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92863] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6763), 1, + sym_identifier, + STATE(3396), 2, sym_line_comment, - [95206] = 2, - ACTIONS(6831), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92877] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6765), 1, + sym_identifier, + STATE(3397), 2, sym_line_comment, - [95214] = 2, - ACTIONS(6833), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [92891] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6767), 1, + sym_identifier, + STATE(3398), 2, sym_line_comment, - [95222] = 2, - ACTIONS(6835), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [92905] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6769), 1, + sym_identifier, + STATE(3399), 2, sym_line_comment, - [95230] = 2, - ACTIONS(6837), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [92919] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6771), 1, + anon_sym_COLON, + STATE(3400), 2, sym_line_comment, - [95238] = 2, - ACTIONS(6839), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, + [92933] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5666), 1, + anon_sym_COLON_COLON, + STATE(3401), 2, sym_line_comment, - [95246] = 2, - ACTIONS(6841), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, + [92947] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6773), 1, + anon_sym_fn, + STATE(3402), 2, sym_line_comment, - [95254] = 2, - ACTIONS(6843), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [92961] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3346), 1, + anon_sym_COLON_COLON, + STATE(3403), 2, sym_line_comment, - [95262] = 2, - ACTIONS(5904), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [92975] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6775), 1, + anon_sym_COLON_COLON, + STATE(3404), 2, sym_line_comment, - [95270] = 2, - ACTIONS(6845), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95278] = 2, - ACTIONS(6847), 1, + [92989] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6777), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3405), 2, sym_line_comment, - [95286] = 2, - ACTIONS(6849), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93003] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6779), 1, + sym_identifier, + STATE(3406), 2, sym_line_comment, - [95294] = 2, - ACTIONS(6851), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93017] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6781), 1, + sym_identifier, + STATE(3407), 2, sym_line_comment, - [95302] = 2, - ACTIONS(5888), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [93031] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6783), 1, + anon_sym_SEMI, + STATE(3408), 2, sym_line_comment, - [95310] = 2, - ACTIONS(5882), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [93045] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6785), 1, + anon_sym_LBRACE, + STATE(3409), 2, sym_line_comment, - [95318] = 2, - ACTIONS(6853), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95326] = 2, - ACTIONS(6855), 1, + [93059] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6787), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3410), 2, sym_line_comment, - [95334] = 2, - ACTIONS(6857), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95342] = 2, - ACTIONS(5585), 1, + [93073] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3630), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3411), 2, sym_line_comment, - [95350] = 2, - ACTIONS(6859), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [93087] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1448), 1, + anon_sym_EQ_GT, + STATE(3412), 2, sym_line_comment, - [95358] = 2, - ACTIONS(3472), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [93101] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6789), 1, + sym_identifier, + STATE(3413), 2, sym_line_comment, - [95366] = 2, - ACTIONS(6861), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95374] = 2, - ACTIONS(6863), 1, + [93115] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6791), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3414), 2, sym_line_comment, - [95382] = 2, - ACTIONS(5784), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [93129] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5045), 1, + anon_sym_COLON_COLON, + STATE(3415), 2, sym_line_comment, - [95390] = 2, - ACTIONS(5788), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [93143] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6793), 1, + anon_sym_COLON_COLON, + STATE(3416), 2, sym_line_comment, - [95398] = 2, - ACTIONS(6865), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95406] = 2, - ACTIONS(6867), 1, + [93157] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6795), 1, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + STATE(3417), 2, sym_line_comment, - [95414] = 2, - ACTIONS(5729), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [93171] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5588), 1, + anon_sym_COLON_COLON, + STATE(3418), 2, sym_line_comment, - [95422] = 2, - ACTIONS(4071), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [93185] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6797), 1, + anon_sym_COLON_COLON, + STATE(3419), 2, sym_line_comment, - [95430] = 2, - ACTIONS(6869), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [93199] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5531), 1, + anon_sym_LBRACE, + STATE(3420), 2, sym_line_comment, - [95438] = 2, - ACTIONS(6871), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93213] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6799), 1, + anon_sym_COLON_COLON, + STATE(3421), 2, sym_line_comment, - [95446] = 2, - ACTIONS(6873), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95454] = 2, - ACTIONS(5151), 1, + [93227] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6801), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3422), 2, sym_line_comment, - [95462] = 2, - ACTIONS(6875), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95470] = 2, - ACTIONS(6877), 1, + [93241] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5510), 1, anon_sym_LBRACE, - ACTIONS(3), 2, - sym_block_comment, + STATE(3423), 2, sym_line_comment, - [95478] = 2, - ACTIONS(5641), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95486] = 2, - ACTIONS(6879), 1, + [93255] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5021), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3424), 2, sym_line_comment, - [95494] = 2, - ACTIONS(5518), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95502] = 2, - ACTIONS(6881), 1, + [93269] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6803), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3425), 2, sym_line_comment, - [95510] = 2, - ACTIONS(6883), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [93283] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_COLON_COLON, + STATE(3426), 2, sym_line_comment, - [95518] = 2, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95526] = 2, - ACTIONS(5117), 1, + [93297] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6805), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3427), 2, sym_line_comment, - [95534] = 2, - ACTIONS(6885), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95542] = 2, - ACTIONS(5091), 1, + [93311] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3937), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3428), 2, sym_line_comment, - [95550] = 2, - ACTIONS(6887), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95558] = 2, - ACTIONS(4021), 1, + [93325] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6807), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3429), 2, sym_line_comment, - [95566] = 2, - ACTIONS(6889), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95574] = 2, - ACTIONS(6891), 1, + [93339] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6809), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3430), 2, sym_line_comment, - [95582] = 2, - ACTIONS(6893), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [93353] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6811), 1, + anon_sym_COLON_COLON, + STATE(3431), 2, sym_line_comment, - [95590] = 2, - ACTIONS(5448), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95598] = 2, - ACTIONS(6895), 1, + [93367] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6813), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3432), 2, sym_line_comment, - [95606] = 2, - ACTIONS(4898), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [93381] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6815), 1, + anon_sym_RBRACK, + STATE(3433), 2, sym_line_comment, - [95614] = 2, - ACTIONS(6897), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93395] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6817), 1, + anon_sym_RBRACE, + STATE(3434), 2, sym_line_comment, - [95622] = 2, - ACTIONS(6899), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93409] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4736), 1, + anon_sym_COLON_COLON, + STATE(3435), 2, sym_line_comment, - [95630] = 2, - ACTIONS(6901), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, sym_block_comment, + [93423] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6819), 1, + anon_sym_COLON, + STATE(3436), 2, sym_line_comment, - [95638] = 2, - ACTIONS(6903), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95646] = 2, - ACTIONS(6905), 1, + [93437] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6821), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_block_comment, + STATE(3437), 2, sym_line_comment, - [95654] = 2, - ACTIONS(6907), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93451] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6823), 1, + anon_sym_RPAREN, + STATE(3438), 2, sym_line_comment, - [95662] = 2, - ACTIONS(6909), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93465] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6825), 1, + anon_sym_LBRACK, + STATE(3439), 2, sym_line_comment, - [95670] = 2, - ACTIONS(6911), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93479] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6827), 1, + anon_sym_COLON, + STATE(3440), 2, sym_line_comment, - [95678] = 2, - ACTIONS(6913), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93493] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6829), 1, + anon_sym_COLON, + STATE(3441), 2, sym_line_comment, - [95686] = 2, - ACTIONS(5723), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [93507] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6831), 1, + anon_sym_RBRACK, + STATE(3442), 2, sym_line_comment, - [95694] = 2, - ACTIONS(5309), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [93521] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6833), 1, + anon_sym_SEMI, + STATE(3443), 2, sym_line_comment, - [95702] = 2, - ACTIONS(6915), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93535] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5215), 1, + anon_sym_RPAREN, + STATE(3444), 2, sym_line_comment, - [95710] = 2, - ACTIONS(6917), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93549] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6835), 1, + sym_identifier, + STATE(3445), 2, sym_line_comment, - [95718] = 2, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93563] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6837), 1, + anon_sym_COLON, + STATE(3446), 2, sym_line_comment, - [95726] = 2, - ACTIONS(6919), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93577] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6839), 1, + ts_builtin_sym_end, + STATE(3447), 2, sym_line_comment, - [95734] = 2, - ACTIONS(6921), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [93591] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6841), 1, + anon_sym_SEMI, + STATE(3448), 2, sym_line_comment, - [95742] = 2, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [93605] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6843), 1, + anon_sym_SEMI, + STATE(3449), 2, sym_line_comment, - [95750] = 2, - ACTIONS(6923), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [93619] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6845), 1, + anon_sym_RBRACK, + STATE(3450), 2, sym_line_comment, - [95758] = 2, - ACTIONS(6925), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95766] = 2, - ACTIONS(6927), 1, + [93633] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6847), 1, sym_identifier, - ACTIONS(3), 2, - sym_block_comment, + STATE(3451), 2, sym_line_comment, - [95774] = 2, - ACTIONS(6929), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93647] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6849), 1, + anon_sym_RBRACK, + STATE(3452), 2, sym_line_comment, - [95782] = 2, - ACTIONS(6931), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93661] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6851), 1, + anon_sym_RBRACK, + STATE(3453), 2, sym_line_comment, - [95790] = 2, - ACTIONS(4115), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [93675] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6157), 1, + anon_sym_RBRACE, + STATE(3454), 2, sym_line_comment, - [95798] = 2, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [93689] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6853), 1, + sym_identifier, + STATE(3455), 2, sym_line_comment, - [95806] = 2, - ACTIONS(6935), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95814] = 2, - ACTIONS(6937), 1, + [93703] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6855), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3456), 2, sym_line_comment, - [95822] = 2, - ACTIONS(6939), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93717] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6857), 1, + sym_identifier, + STATE(3457), 2, sym_line_comment, - [95830] = 2, - ACTIONS(1636), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, + [93731] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6859), 1, + anon_sym_SEMI, + STATE(3458), 2, sym_line_comment, - [95838] = 2, - ACTIONS(4804), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [93745] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6861), 1, + anon_sym_SEMI, + STATE(3459), 2, sym_line_comment, - [95846] = 2, - ACTIONS(6941), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93759] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6863), 1, + anon_sym_COLON, + STATE(3460), 2, sym_line_comment, - [95854] = 2, - ACTIONS(6943), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93773] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6865), 1, + anon_sym_SEMI, + STATE(3461), 2, sym_line_comment, - [95862] = 2, - ACTIONS(6945), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [95870] = 2, - ACTIONS(5135), 1, + [93787] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6867), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3462), 2, sym_line_comment, - [95878] = 2, - ACTIONS(6947), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [93801] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6171), 1, + anon_sym_RBRACE, + STATE(3463), 2, sym_line_comment, - [95886] = 2, - ACTIONS(6949), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93815] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6869), 1, + anon_sym_EQ_GT, + STATE(3464), 2, sym_line_comment, - [95894] = 2, - ACTIONS(6951), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93829] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4532), 1, + anon_sym_COLON_COLON, + STATE(3465), 2, sym_line_comment, - [95902] = 2, - ACTIONS(5167), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93843] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6871), 1, + anon_sym_COLON, + STATE(3466), 2, sym_line_comment, - [95910] = 2, - ACTIONS(6953), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [93857] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3052), 1, + anon_sym_PLUS, + STATE(3467), 2, sym_line_comment, - [95918] = 2, - ACTIONS(6955), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_block_comment, + [93871] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6873), 1, + sym_identifier, + STATE(3468), 2, sym_line_comment, - [95926] = 2, - ACTIONS(6957), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93885] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(674), 1, + anon_sym_RBRACK, + STATE(3469), 2, sym_line_comment, - [95934] = 2, - ACTIONS(6959), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [93899] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6875), 1, + anon_sym_COLON, + STATE(3470), 2, sym_line_comment, - [95942] = 2, - ACTIONS(6961), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [93913] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6877), 1, + anon_sym_COLON, + STATE(3471), 2, sym_line_comment, - [95950] = 2, - ACTIONS(694), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [93927] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6879), 1, + sym_self, + STATE(3472), 2, sym_line_comment, - [95958] = 2, - ACTIONS(6963), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93941] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6881), 1, + anon_sym_EQ, + STATE(3473), 2, sym_line_comment, - [95966] = 2, - ACTIONS(6965), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93955] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6883), 1, + sym_identifier, + STATE(3474), 2, sym_line_comment, - [95974] = 2, - ACTIONS(6967), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, sym_block_comment, + [93969] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6885), 1, + anon_sym_SEMI, + STATE(3475), 2, sym_line_comment, - [95982] = 2, - ACTIONS(6969), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [93983] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6887), 1, + anon_sym_SEMI, + STATE(3476), 2, sym_line_comment, - [95990] = 2, - ACTIONS(5780), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_block_comment, + [93997] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6889), 1, + sym_identifier, + STATE(3477), 2, sym_line_comment, - [95998] = 2, - ACTIONS(6971), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [96006] = 2, - ACTIONS(6973), 1, + [94011] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6891), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3478), 2, sym_line_comment, - [96014] = 2, - ACTIONS(6975), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [94025] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6893), 1, + anon_sym_COLON, + STATE(3479), 2, sym_line_comment, - [96022] = 2, - ACTIONS(3152), 1, - anon_sym_PLUS, - ACTIONS(3), 2, sym_block_comment, + [94039] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6895), 1, + anon_sym_LBRACK, + STATE(3480), 2, sym_line_comment, - [96030] = 2, - ACTIONS(6977), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [96038] = 2, - ACTIONS(6979), 1, + [94053] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6897), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, + STATE(3481), 2, sym_line_comment, - [96046] = 2, - ACTIONS(6981), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [94067] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6899), 1, + anon_sym_SEMI, + STATE(3482), 2, sym_line_comment, - [96054] = 2, - ACTIONS(6983), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [94081] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6901), 1, + anon_sym_SEMI, + STATE(3483), 2, sym_line_comment, - [96062] = 2, - ACTIONS(6985), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [94095] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6903), 1, + anon_sym_COLON, + STATE(3484), 2, sym_line_comment, - [96070] = 2, - ACTIONS(4505), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, + [94109] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6905), 1, + anon_sym_COLON, + STATE(3485), 2, sym_line_comment, - [96078] = 2, - ACTIONS(5165), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [96086] = 2, - ACTIONS(6987), 1, + [94123] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6907), 1, anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, + STATE(3486), 2, sym_line_comment, - [96094] = 2, - ACTIONS(6989), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [94137] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6909), 1, + anon_sym_SEMI, + STATE(3487), 2, sym_line_comment, - [96102] = 2, - ACTIONS(6991), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [96110] = 2, - ACTIONS(6993), 1, + [94151] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6911), 1, anon_sym_COLON, - ACTIONS(3), 2, + STATE(3488), 2, + sym_line_comment, sym_block_comment, + [94165] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6913), 1, + anon_sym_COLON, + STATE(3489), 2, sym_line_comment, - [96118] = 2, - ACTIONS(6995), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [94179] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6915), 1, + anon_sym_COLON, + STATE(3490), 2, sym_line_comment, - [96126] = 2, - ACTIONS(6997), 1, - anon_sym_fn, - ACTIONS(3), 2, sym_block_comment, + [94193] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6917), 1, + sym_identifier, + STATE(3491), 2, sym_line_comment, - [96134] = 2, - ACTIONS(6999), 1, - anon_sym_SEMI, - ACTIONS(3), 2, sym_block_comment, + [94207] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4411), 1, + anon_sym_fn, + STATE(3492), 2, sym_line_comment, - [96142] = 2, - ACTIONS(7001), 1, - sym_identifier, - ACTIONS(3), 2, sym_block_comment, + [94221] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3987), 1, + anon_sym_RPAREN, + STATE(3493), 2, sym_line_comment, - [96150] = 2, - ACTIONS(7003), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, sym_block_comment, + [94235] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6919), 1, + anon_sym_COLON, + STATE(3494), 2, sym_line_comment, - [96158] = 2, - ACTIONS(7005), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, sym_block_comment, + [94249] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6921), 1, + sym_identifier, + STATE(3495), 2, sym_line_comment, - [96166] = 2, - ACTIONS(5659), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, sym_block_comment, + [94263] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4991), 1, + anon_sym_SEMI, + STATE(3496), 2, sym_line_comment, - [96174] = 2, - ACTIONS(5826), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, sym_block_comment, + [94277] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6923), 1, + anon_sym_SEMI, + STATE(3497), 2, sym_line_comment, - [96182] = 2, - ACTIONS(7007), 1, + sym_block_comment, + [94291] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6925), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3498), 2, + sym_line_comment, sym_block_comment, + [94305] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6927), 1, + anon_sym_fn, + STATE(3499), 2, sym_line_comment, - [96190] = 2, - ACTIONS(7009), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_block_comment, + [94319] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_GT, + STATE(3500), 2, sym_line_comment, - [96198] = 2, - ACTIONS(7011), 1, + sym_block_comment, + [94333] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6931), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3501), 2, + sym_line_comment, sym_block_comment, + [94347] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6933), 1, + sym_identifier, + STATE(3502), 2, sym_line_comment, - [96206] = 2, - ACTIONS(4869), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, sym_block_comment, + [94361] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6935), 1, + anon_sym_SEMI, + STATE(3503), 2, sym_line_comment, - [96214] = 2, - ACTIONS(7013), 1, + sym_block_comment, + [94375] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6937), 1, sym_identifier, - ACTIONS(3), 2, + STATE(3504), 2, + sym_line_comment, sym_block_comment, + [94389] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6939), 1, + anon_sym_SEMI, + STATE(3505), 2, sym_line_comment, + sym_block_comment, + [94403] = 1, + ACTIONS(6941), 1, + ts_builtin_sym_end, + [94407] = 1, + ACTIONS(6943), 1, + ts_builtin_sym_end, + [94411] = 1, + ACTIONS(6945), 1, + ts_builtin_sym_end, + [94415] = 1, + ACTIONS(6947), 1, + ts_builtin_sym_end, + [94419] = 1, + ACTIONS(6949), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(858)] = 0, - [SMALL_STATE(859)] = 129, - [SMALL_STATE(860)] = 258, - [SMALL_STATE(861)] = 387, - [SMALL_STATE(862)] = 516, - [SMALL_STATE(863)] = 645, - [SMALL_STATE(864)] = 774, - [SMALL_STATE(865)] = 903, - [SMALL_STATE(866)] = 1032, - [SMALL_STATE(867)] = 1161, - [SMALL_STATE(868)] = 1290, - [SMALL_STATE(869)] = 1419, - [SMALL_STATE(870)] = 1548, - [SMALL_STATE(871)] = 1677, - [SMALL_STATE(872)] = 1806, - [SMALL_STATE(873)] = 1935, - [SMALL_STATE(874)] = 2064, - [SMALL_STATE(875)] = 2193, - [SMALL_STATE(876)] = 2322, - [SMALL_STATE(877)] = 2451, - [SMALL_STATE(878)] = 2580, - [SMALL_STATE(879)] = 2709, - [SMALL_STATE(880)] = 2838, - [SMALL_STATE(881)] = 2967, - [SMALL_STATE(882)] = 3096, - [SMALL_STATE(883)] = 3225, - [SMALL_STATE(884)] = 3354, - [SMALL_STATE(885)] = 3483, - [SMALL_STATE(886)] = 3612, - [SMALL_STATE(887)] = 3741, - [SMALL_STATE(888)] = 3870, - [SMALL_STATE(889)] = 3999, - [SMALL_STATE(890)] = 4128, - [SMALL_STATE(891)] = 4257, - [SMALL_STATE(892)] = 4386, - [SMALL_STATE(893)] = 4515, - [SMALL_STATE(894)] = 4644, - [SMALL_STATE(895)] = 4773, - [SMALL_STATE(896)] = 4902, - [SMALL_STATE(897)] = 5031, - [SMALL_STATE(898)] = 5160, - [SMALL_STATE(899)] = 5289, - [SMALL_STATE(900)] = 5418, - [SMALL_STATE(901)] = 5547, - [SMALL_STATE(902)] = 5676, - [SMALL_STATE(903)] = 5805, - [SMALL_STATE(904)] = 5934, - [SMALL_STATE(905)] = 6063, - [SMALL_STATE(906)] = 6192, - [SMALL_STATE(907)] = 6321, - [SMALL_STATE(908)] = 6450, - [SMALL_STATE(909)] = 6579, - [SMALL_STATE(910)] = 6708, - [SMALL_STATE(911)] = 6837, - [SMALL_STATE(912)] = 6966, - [SMALL_STATE(913)] = 7095, - [SMALL_STATE(914)] = 7224, - [SMALL_STATE(915)] = 7353, - [SMALL_STATE(916)] = 7482, - [SMALL_STATE(917)] = 7611, - [SMALL_STATE(918)] = 7740, - [SMALL_STATE(919)] = 7869, - [SMALL_STATE(920)] = 7998, - [SMALL_STATE(921)] = 8127, - [SMALL_STATE(922)] = 8256, - [SMALL_STATE(923)] = 8385, - [SMALL_STATE(924)] = 8514, - [SMALL_STATE(925)] = 8643, - [SMALL_STATE(926)] = 8772, - [SMALL_STATE(927)] = 8901, - [SMALL_STATE(928)] = 9030, - [SMALL_STATE(929)] = 9159, - [SMALL_STATE(930)] = 9288, - [SMALL_STATE(931)] = 9417, - [SMALL_STATE(932)] = 9546, - [SMALL_STATE(933)] = 9675, - [SMALL_STATE(934)] = 9804, - [SMALL_STATE(935)] = 9933, - [SMALL_STATE(936)] = 10062, - [SMALL_STATE(937)] = 10191, - [SMALL_STATE(938)] = 10320, - [SMALL_STATE(939)] = 10449, - [SMALL_STATE(940)] = 10578, - [SMALL_STATE(941)] = 10707, - [SMALL_STATE(942)] = 10836, - [SMALL_STATE(943)] = 10965, - [SMALL_STATE(944)] = 11094, - [SMALL_STATE(945)] = 11223, - [SMALL_STATE(946)] = 11352, - [SMALL_STATE(947)] = 11481, - [SMALL_STATE(948)] = 11610, - [SMALL_STATE(949)] = 11739, - [SMALL_STATE(950)] = 11868, - [SMALL_STATE(951)] = 11997, - [SMALL_STATE(952)] = 12126, - [SMALL_STATE(953)] = 12255, - [SMALL_STATE(954)] = 12384, - [SMALL_STATE(955)] = 12513, - [SMALL_STATE(956)] = 12642, - [SMALL_STATE(957)] = 12771, - [SMALL_STATE(958)] = 12900, - [SMALL_STATE(959)] = 13029, - [SMALL_STATE(960)] = 13158, - [SMALL_STATE(961)] = 13287, - [SMALL_STATE(962)] = 13416, - [SMALL_STATE(963)] = 13545, - [SMALL_STATE(964)] = 13674, - [SMALL_STATE(965)] = 13803, - [SMALL_STATE(966)] = 13932, - [SMALL_STATE(967)] = 14061, - [SMALL_STATE(968)] = 14190, - [SMALL_STATE(969)] = 14319, - [SMALL_STATE(970)] = 14448, - [SMALL_STATE(971)] = 14577, - [SMALL_STATE(972)] = 14706, - [SMALL_STATE(973)] = 14835, - [SMALL_STATE(974)] = 14964, - [SMALL_STATE(975)] = 15093, - [SMALL_STATE(976)] = 15222, - [SMALL_STATE(977)] = 15351, - [SMALL_STATE(978)] = 15480, - [SMALL_STATE(979)] = 15609, - [SMALL_STATE(980)] = 15738, - [SMALL_STATE(981)] = 15867, - [SMALL_STATE(982)] = 15998, - [SMALL_STATE(983)] = 16127, - [SMALL_STATE(984)] = 16256, - [SMALL_STATE(985)] = 16385, - [SMALL_STATE(986)] = 16514, - [SMALL_STATE(987)] = 16643, - [SMALL_STATE(988)] = 16772, - [SMALL_STATE(989)] = 16901, - [SMALL_STATE(990)] = 17030, - [SMALL_STATE(991)] = 17159, - [SMALL_STATE(992)] = 17288, - [SMALL_STATE(993)] = 17417, - [SMALL_STATE(994)] = 17546, - [SMALL_STATE(995)] = 17675, - [SMALL_STATE(996)] = 17744, - [SMALL_STATE(997)] = 17813, - [SMALL_STATE(998)] = 17882, - [SMALL_STATE(999)] = 17950, - [SMALL_STATE(1000)] = 18012, - [SMALL_STATE(1001)] = 18074, - [SMALL_STATE(1002)] = 18145, - [SMALL_STATE(1003)] = 18213, - [SMALL_STATE(1004)] = 18281, - [SMALL_STATE(1005)] = 18349, - [SMALL_STATE(1006)] = 18410, - [SMALL_STATE(1007)] = 18475, - [SMALL_STATE(1008)] = 18532, - [SMALL_STATE(1009)] = 18597, - [SMALL_STATE(1010)] = 18662, - [SMALL_STATE(1011)] = 18719, - [SMALL_STATE(1012)] = 18776, - [SMALL_STATE(1013)] = 18837, - [SMALL_STATE(1014)] = 18894, - [SMALL_STATE(1015)] = 18955, - [SMALL_STATE(1016)] = 19020, - [SMALL_STATE(1017)] = 19077, - [SMALL_STATE(1018)] = 19138, - [SMALL_STATE(1019)] = 19195, - [SMALL_STATE(1020)] = 19252, - [SMALL_STATE(1021)] = 19309, - [SMALL_STATE(1022)] = 19366, - [SMALL_STATE(1023)] = 19424, - [SMALL_STATE(1024)] = 19480, - [SMALL_STATE(1025)] = 19542, - [SMALL_STATE(1026)] = 19598, - [SMALL_STATE(1027)] = 19654, - [SMALL_STATE(1028)] = 19710, - [SMALL_STATE(1029)] = 19766, - [SMALL_STATE(1030)] = 19822, - [SMALL_STATE(1031)] = 19880, - [SMALL_STATE(1032)] = 19936, - [SMALL_STATE(1033)] = 19992, - [SMALL_STATE(1034)] = 20048, - [SMALL_STATE(1035)] = 20112, - [SMALL_STATE(1036)] = 20169, - [SMALL_STATE(1037)] = 20226, - [SMALL_STATE(1038)] = 20285, - [SMALL_STATE(1039)] = 20342, - [SMALL_STATE(1040)] = 20397, - [SMALL_STATE(1041)] = 20452, - [SMALL_STATE(1042)] = 20507, - [SMALL_STATE(1043)] = 20564, - [SMALL_STATE(1044)] = 20621, - [SMALL_STATE(1045)] = 20678, - [SMALL_STATE(1046)] = 20733, - [SMALL_STATE(1047)] = 20788, - [SMALL_STATE(1048)] = 20847, - [SMALL_STATE(1049)] = 20904, - [SMALL_STATE(1050)] = 20959, - [SMALL_STATE(1051)] = 21016, - [SMALL_STATE(1052)] = 21073, - [SMALL_STATE(1053)] = 21128, - [SMALL_STATE(1054)] = 21185, - [SMALL_STATE(1055)] = 21240, - [SMALL_STATE(1056)] = 21297, - [SMALL_STATE(1057)] = 21354, - [SMALL_STATE(1058)] = 21409, - [SMALL_STATE(1059)] = 21464, - [SMALL_STATE(1060)] = 21519, - [SMALL_STATE(1061)] = 21612, - [SMALL_STATE(1062)] = 21667, - [SMALL_STATE(1063)] = 21722, - [SMALL_STATE(1064)] = 21815, - [SMALL_STATE(1065)] = 21874, - [SMALL_STATE(1066)] = 21931, - [SMALL_STATE(1067)] = 21986, - [SMALL_STATE(1068)] = 22043, - [SMALL_STATE(1069)] = 22098, - [SMALL_STATE(1070)] = 22153, - [SMALL_STATE(1071)] = 22210, - [SMALL_STATE(1072)] = 22265, - [SMALL_STATE(1073)] = 22322, - [SMALL_STATE(1074)] = 22377, - [SMALL_STATE(1075)] = 22434, - [SMALL_STATE(1076)] = 22491, - [SMALL_STATE(1077)] = 22545, - [SMALL_STATE(1078)] = 22599, - [SMALL_STATE(1079)] = 22653, - [SMALL_STATE(1080)] = 22707, - [SMALL_STATE(1081)] = 22761, - [SMALL_STATE(1082)] = 22815, - [SMALL_STATE(1083)] = 22869, - [SMALL_STATE(1084)] = 22923, - [SMALL_STATE(1085)] = 22977, - [SMALL_STATE(1086)] = 23031, - [SMALL_STATE(1087)] = 23085, - [SMALL_STATE(1088)] = 23139, - [SMALL_STATE(1089)] = 23193, - [SMALL_STATE(1090)] = 23247, - [SMALL_STATE(1091)] = 23301, - [SMALL_STATE(1092)] = 23355, - [SMALL_STATE(1093)] = 23409, - [SMALL_STATE(1094)] = 23463, - [SMALL_STATE(1095)] = 23517, - [SMALL_STATE(1096)] = 23571, - [SMALL_STATE(1097)] = 23625, - [SMALL_STATE(1098)] = 23679, - [SMALL_STATE(1099)] = 23733, - [SMALL_STATE(1100)] = 23787, - [SMALL_STATE(1101)] = 23841, - [SMALL_STATE(1102)] = 23895, - [SMALL_STATE(1103)] = 23949, - [SMALL_STATE(1104)] = 24003, - [SMALL_STATE(1105)] = 24057, - [SMALL_STATE(1106)] = 24111, - [SMALL_STATE(1107)] = 24165, - [SMALL_STATE(1108)] = 24219, - [SMALL_STATE(1109)] = 24273, - [SMALL_STATE(1110)] = 24327, - [SMALL_STATE(1111)] = 24381, - [SMALL_STATE(1112)] = 24435, - [SMALL_STATE(1113)] = 24489, - [SMALL_STATE(1114)] = 24543, - [SMALL_STATE(1115)] = 24597, - [SMALL_STATE(1116)] = 24651, - [SMALL_STATE(1117)] = 24705, - [SMALL_STATE(1118)] = 24759, - [SMALL_STATE(1119)] = 24813, - [SMALL_STATE(1120)] = 24867, - [SMALL_STATE(1121)] = 24921, - [SMALL_STATE(1122)] = 24975, - [SMALL_STATE(1123)] = 25029, - [SMALL_STATE(1124)] = 25083, - [SMALL_STATE(1125)] = 25137, - [SMALL_STATE(1126)] = 25191, - [SMALL_STATE(1127)] = 25245, - [SMALL_STATE(1128)] = 25299, - [SMALL_STATE(1129)] = 25353, - [SMALL_STATE(1130)] = 25407, - [SMALL_STATE(1131)] = 25461, - [SMALL_STATE(1132)] = 25515, - [SMALL_STATE(1133)] = 25569, - [SMALL_STATE(1134)] = 25623, - [SMALL_STATE(1135)] = 25677, - [SMALL_STATE(1136)] = 25731, - [SMALL_STATE(1137)] = 25785, - [SMALL_STATE(1138)] = 25839, - [SMALL_STATE(1139)] = 25893, - [SMALL_STATE(1140)] = 25947, - [SMALL_STATE(1141)] = 26001, - [SMALL_STATE(1142)] = 26055, - [SMALL_STATE(1143)] = 26109, - [SMALL_STATE(1144)] = 26163, - [SMALL_STATE(1145)] = 26217, - [SMALL_STATE(1146)] = 26271, - [SMALL_STATE(1147)] = 26325, - [SMALL_STATE(1148)] = 26379, - [SMALL_STATE(1149)] = 26433, - [SMALL_STATE(1150)] = 26487, - [SMALL_STATE(1151)] = 26541, - [SMALL_STATE(1152)] = 26595, - [SMALL_STATE(1153)] = 26649, - [SMALL_STATE(1154)] = 26703, - [SMALL_STATE(1155)] = 26757, - [SMALL_STATE(1156)] = 26811, - [SMALL_STATE(1157)] = 26865, - [SMALL_STATE(1158)] = 26919, - [SMALL_STATE(1159)] = 26973, - [SMALL_STATE(1160)] = 27027, - [SMALL_STATE(1161)] = 27081, - [SMALL_STATE(1162)] = 27135, - [SMALL_STATE(1163)] = 27189, - [SMALL_STATE(1164)] = 27243, - [SMALL_STATE(1165)] = 27297, - [SMALL_STATE(1166)] = 27351, - [SMALL_STATE(1167)] = 27405, - [SMALL_STATE(1168)] = 27459, - [SMALL_STATE(1169)] = 27513, - [SMALL_STATE(1170)] = 27567, - [SMALL_STATE(1171)] = 27621, - [SMALL_STATE(1172)] = 27679, - [SMALL_STATE(1173)] = 27733, - [SMALL_STATE(1174)] = 27787, - [SMALL_STATE(1175)] = 27841, - [SMALL_STATE(1176)] = 27895, - [SMALL_STATE(1177)] = 27949, - [SMALL_STATE(1178)] = 28003, - [SMALL_STATE(1179)] = 28057, - [SMALL_STATE(1180)] = 28111, - [SMALL_STATE(1181)] = 28165, - [SMALL_STATE(1182)] = 28219, - [SMALL_STATE(1183)] = 28273, - [SMALL_STATE(1184)] = 28327, - [SMALL_STATE(1185)] = 28381, - [SMALL_STATE(1186)] = 28435, - [SMALL_STATE(1187)] = 28489, - [SMALL_STATE(1188)] = 28543, - [SMALL_STATE(1189)] = 28597, - [SMALL_STATE(1190)] = 28651, - [SMALL_STATE(1191)] = 28705, - [SMALL_STATE(1192)] = 28759, - [SMALL_STATE(1193)] = 28813, - [SMALL_STATE(1194)] = 28867, - [SMALL_STATE(1195)] = 28921, - [SMALL_STATE(1196)] = 28975, - [SMALL_STATE(1197)] = 29029, - [SMALL_STATE(1198)] = 29083, - [SMALL_STATE(1199)] = 29137, - [SMALL_STATE(1200)] = 29191, - [SMALL_STATE(1201)] = 29245, - [SMALL_STATE(1202)] = 29299, - [SMALL_STATE(1203)] = 29353, - [SMALL_STATE(1204)] = 29407, - [SMALL_STATE(1205)] = 29461, - [SMALL_STATE(1206)] = 29515, - [SMALL_STATE(1207)] = 29569, - [SMALL_STATE(1208)] = 29623, - [SMALL_STATE(1209)] = 29677, - [SMALL_STATE(1210)] = 29731, - [SMALL_STATE(1211)] = 29785, - [SMALL_STATE(1212)] = 29839, - [SMALL_STATE(1213)] = 29893, - [SMALL_STATE(1214)] = 29947, - [SMALL_STATE(1215)] = 30001, - [SMALL_STATE(1216)] = 30055, - [SMALL_STATE(1217)] = 30109, - [SMALL_STATE(1218)] = 30163, - [SMALL_STATE(1219)] = 30217, - [SMALL_STATE(1220)] = 30277, - [SMALL_STATE(1221)] = 30331, - [SMALL_STATE(1222)] = 30391, - [SMALL_STATE(1223)] = 30445, - [SMALL_STATE(1224)] = 30499, - [SMALL_STATE(1225)] = 30553, - [SMALL_STATE(1226)] = 30607, - [SMALL_STATE(1227)] = 30661, - [SMALL_STATE(1228)] = 30715, - [SMALL_STATE(1229)] = 30769, - [SMALL_STATE(1230)] = 30823, - [SMALL_STATE(1231)] = 30877, - [SMALL_STATE(1232)] = 30931, - [SMALL_STATE(1233)] = 30985, - [SMALL_STATE(1234)] = 31039, - [SMALL_STATE(1235)] = 31093, - [SMALL_STATE(1236)] = 31147, - [SMALL_STATE(1237)] = 31201, - [SMALL_STATE(1238)] = 31255, - [SMALL_STATE(1239)] = 31309, - [SMALL_STATE(1240)] = 31363, - [SMALL_STATE(1241)] = 31417, - [SMALL_STATE(1242)] = 31471, - [SMALL_STATE(1243)] = 31525, - [SMALL_STATE(1244)] = 31579, - [SMALL_STATE(1245)] = 31633, - [SMALL_STATE(1246)] = 31687, - [SMALL_STATE(1247)] = 31741, - [SMALL_STATE(1248)] = 31795, - [SMALL_STATE(1249)] = 31849, - [SMALL_STATE(1250)] = 31903, - [SMALL_STATE(1251)] = 31957, - [SMALL_STATE(1252)] = 32011, - [SMALL_STATE(1253)] = 32065, - [SMALL_STATE(1254)] = 32119, - [SMALL_STATE(1255)] = 32173, - [SMALL_STATE(1256)] = 32227, - [SMALL_STATE(1257)] = 32281, - [SMALL_STATE(1258)] = 32335, - [SMALL_STATE(1259)] = 32389, - [SMALL_STATE(1260)] = 32443, - [SMALL_STATE(1261)] = 32497, - [SMALL_STATE(1262)] = 32551, - [SMALL_STATE(1263)] = 32605, - [SMALL_STATE(1264)] = 32659, - [SMALL_STATE(1265)] = 32713, - [SMALL_STATE(1266)] = 32767, - [SMALL_STATE(1267)] = 32821, - [SMALL_STATE(1268)] = 32875, - [SMALL_STATE(1269)] = 32929, - [SMALL_STATE(1270)] = 32983, - [SMALL_STATE(1271)] = 33037, - [SMALL_STATE(1272)] = 33091, - [SMALL_STATE(1273)] = 33145, - [SMALL_STATE(1274)] = 33199, - [SMALL_STATE(1275)] = 33253, - [SMALL_STATE(1276)] = 33307, - [SMALL_STATE(1277)] = 33361, - [SMALL_STATE(1278)] = 33419, - [SMALL_STATE(1279)] = 33473, - [SMALL_STATE(1280)] = 33527, - [SMALL_STATE(1281)] = 33581, - [SMALL_STATE(1282)] = 33635, - [SMALL_STATE(1283)] = 33689, - [SMALL_STATE(1284)] = 33743, - [SMALL_STATE(1285)] = 33797, - [SMALL_STATE(1286)] = 33851, - [SMALL_STATE(1287)] = 33905, - [SMALL_STATE(1288)] = 33959, - [SMALL_STATE(1289)] = 34013, - [SMALL_STATE(1290)] = 34067, - [SMALL_STATE(1291)] = 34121, - [SMALL_STATE(1292)] = 34175, - [SMALL_STATE(1293)] = 34229, - [SMALL_STATE(1294)] = 34283, - [SMALL_STATE(1295)] = 34337, - [SMALL_STATE(1296)] = 34391, - [SMALL_STATE(1297)] = 34445, - [SMALL_STATE(1298)] = 34499, - [SMALL_STATE(1299)] = 34553, - [SMALL_STATE(1300)] = 34607, - [SMALL_STATE(1301)] = 34661, - [SMALL_STATE(1302)] = 34715, - [SMALL_STATE(1303)] = 34769, - [SMALL_STATE(1304)] = 34823, - [SMALL_STATE(1305)] = 34877, - [SMALL_STATE(1306)] = 34931, - [SMALL_STATE(1307)] = 34985, - [SMALL_STATE(1308)] = 35039, - [SMALL_STATE(1309)] = 35093, - [SMALL_STATE(1310)] = 35147, - [SMALL_STATE(1311)] = 35201, - [SMALL_STATE(1312)] = 35255, - [SMALL_STATE(1313)] = 35309, - [SMALL_STATE(1314)] = 35363, - [SMALL_STATE(1315)] = 35417, - [SMALL_STATE(1316)] = 35471, - [SMALL_STATE(1317)] = 35525, - [SMALL_STATE(1318)] = 35579, - [SMALL_STATE(1319)] = 35633, - [SMALL_STATE(1320)] = 35687, - [SMALL_STATE(1321)] = 35741, - [SMALL_STATE(1322)] = 35795, - [SMALL_STATE(1323)] = 35849, - [SMALL_STATE(1324)] = 35903, - [SMALL_STATE(1325)] = 35957, - [SMALL_STATE(1326)] = 36011, - [SMALL_STATE(1327)] = 36065, - [SMALL_STATE(1328)] = 36119, - [SMALL_STATE(1329)] = 36173, - [SMALL_STATE(1330)] = 36227, - [SMALL_STATE(1331)] = 36281, - [SMALL_STATE(1332)] = 36335, - [SMALL_STATE(1333)] = 36389, - [SMALL_STATE(1334)] = 36443, - [SMALL_STATE(1335)] = 36497, - [SMALL_STATE(1336)] = 36551, - [SMALL_STATE(1337)] = 36605, - [SMALL_STATE(1338)] = 36659, - [SMALL_STATE(1339)] = 36713, - [SMALL_STATE(1340)] = 36767, - [SMALL_STATE(1341)] = 36821, - [SMALL_STATE(1342)] = 36875, - [SMALL_STATE(1343)] = 36929, - [SMALL_STATE(1344)] = 36983, - [SMALL_STATE(1345)] = 37037, - [SMALL_STATE(1346)] = 37091, - [SMALL_STATE(1347)] = 37145, - [SMALL_STATE(1348)] = 37199, - [SMALL_STATE(1349)] = 37253, - [SMALL_STATE(1350)] = 37307, - [SMALL_STATE(1351)] = 37361, - [SMALL_STATE(1352)] = 37415, - [SMALL_STATE(1353)] = 37469, - [SMALL_STATE(1354)] = 37523, - [SMALL_STATE(1355)] = 37577, - [SMALL_STATE(1356)] = 37631, - [SMALL_STATE(1357)] = 37685, - [SMALL_STATE(1358)] = 37739, - [SMALL_STATE(1359)] = 37793, - [SMALL_STATE(1360)] = 37847, - [SMALL_STATE(1361)] = 37901, - [SMALL_STATE(1362)] = 37955, - [SMALL_STATE(1363)] = 38009, - [SMALL_STATE(1364)] = 38063, - [SMALL_STATE(1365)] = 38117, - [SMALL_STATE(1366)] = 38171, - [SMALL_STATE(1367)] = 38225, - [SMALL_STATE(1368)] = 38279, - [SMALL_STATE(1369)] = 38333, - [SMALL_STATE(1370)] = 38387, - [SMALL_STATE(1371)] = 38441, - [SMALL_STATE(1372)] = 38495, - [SMALL_STATE(1373)] = 38549, - [SMALL_STATE(1374)] = 38603, - [SMALL_STATE(1375)] = 38657, - [SMALL_STATE(1376)] = 38711, - [SMALL_STATE(1377)] = 38765, - [SMALL_STATE(1378)] = 38819, - [SMALL_STATE(1379)] = 38873, - [SMALL_STATE(1380)] = 38927, - [SMALL_STATE(1381)] = 38981, - [SMALL_STATE(1382)] = 39035, - [SMALL_STATE(1383)] = 39089, - [SMALL_STATE(1384)] = 39143, - [SMALL_STATE(1385)] = 39203, - [SMALL_STATE(1386)] = 39257, - [SMALL_STATE(1387)] = 39311, - [SMALL_STATE(1388)] = 39365, - [SMALL_STATE(1389)] = 39419, - [SMALL_STATE(1390)] = 39473, - [SMALL_STATE(1391)] = 39527, - [SMALL_STATE(1392)] = 39581, - [SMALL_STATE(1393)] = 39635, - [SMALL_STATE(1394)] = 39689, - [SMALL_STATE(1395)] = 39743, - [SMALL_STATE(1396)] = 39797, - [SMALL_STATE(1397)] = 39851, - [SMALL_STATE(1398)] = 39905, - [SMALL_STATE(1399)] = 39959, - [SMALL_STATE(1400)] = 40013, - [SMALL_STATE(1401)] = 40067, - [SMALL_STATE(1402)] = 40121, - [SMALL_STATE(1403)] = 40175, - [SMALL_STATE(1404)] = 40229, - [SMALL_STATE(1405)] = 40283, - [SMALL_STATE(1406)] = 40337, - [SMALL_STATE(1407)] = 40391, - [SMALL_STATE(1408)] = 40445, - [SMALL_STATE(1409)] = 40499, - [SMALL_STATE(1410)] = 40555, - [SMALL_STATE(1411)] = 40609, - [SMALL_STATE(1412)] = 40671, - [SMALL_STATE(1413)] = 40725, - [SMALL_STATE(1414)] = 40779, - [SMALL_STATE(1415)] = 40833, - [SMALL_STATE(1416)] = 40887, - [SMALL_STATE(1417)] = 40941, - [SMALL_STATE(1418)] = 40997, - [SMALL_STATE(1419)] = 41051, - [SMALL_STATE(1420)] = 41105, - [SMALL_STATE(1421)] = 41159, - [SMALL_STATE(1422)] = 41213, - [SMALL_STATE(1423)] = 41267, - [SMALL_STATE(1424)] = 41321, - [SMALL_STATE(1425)] = 41375, - [SMALL_STATE(1426)] = 41429, - [SMALL_STATE(1427)] = 41483, - [SMALL_STATE(1428)] = 41537, - [SMALL_STATE(1429)] = 41591, - [SMALL_STATE(1430)] = 41644, - [SMALL_STATE(1431)] = 41697, - [SMALL_STATE(1432)] = 41752, - [SMALL_STATE(1433)] = 41809, - [SMALL_STATE(1434)] = 41862, - [SMALL_STATE(1435)] = 41917, - [SMALL_STATE(1436)] = 41970, - [SMALL_STATE(1437)] = 42059, - [SMALL_STATE(1438)] = 42148, - [SMALL_STATE(1439)] = 42201, - [SMALL_STATE(1440)] = 42254, - [SMALL_STATE(1441)] = 42319, - [SMALL_STATE(1442)] = 42403, - [SMALL_STATE(1443)] = 42487, - [SMALL_STATE(1444)] = 42549, - [SMALL_STATE(1445)] = 42621, - [SMALL_STATE(1446)] = 42697, - [SMALL_STATE(1447)] = 42767, - [SMALL_STATE(1448)] = 42827, - [SMALL_STATE(1449)] = 42907, - [SMALL_STATE(1450)] = 42991, - [SMALL_STATE(1451)] = 43075, - [SMALL_STATE(1452)] = 43161, - [SMALL_STATE(1453)] = 43223, - [SMALL_STATE(1454)] = 43291, - [SMALL_STATE(1455)] = 43371, - [SMALL_STATE(1456)] = 43457, - [SMALL_STATE(1457)] = 43519, - [SMALL_STATE(1458)] = 43597, - [SMALL_STATE(1459)] = 43661, - [SMALL_STATE(1460)] = 43745, - [SMALL_STATE(1461)] = 43807, - [SMALL_STATE(1462)] = 43893, - [SMALL_STATE(1463)] = 43959, - [SMALL_STATE(1464)] = 44019, - [SMALL_STATE(1465)] = 44103, - [SMALL_STATE(1466)] = 44192, - [SMALL_STATE(1467)] = 44281, - [SMALL_STATE(1468)] = 44334, - [SMALL_STATE(1469)] = 44389, - [SMALL_STATE(1470)] = 44478, - [SMALL_STATE(1471)] = 44567, - [SMALL_STATE(1472)] = 44622, - [SMALL_STATE(1473)] = 44681, - [SMALL_STATE(1474)] = 44740, - [SMALL_STATE(1475)] = 44795, - [SMALL_STATE(1476)] = 44854, - [SMALL_STATE(1477)] = 44943, - [SMALL_STATE(1478)] = 45032, - [SMALL_STATE(1479)] = 45121, - [SMALL_STATE(1480)] = 45210, - [SMALL_STATE(1481)] = 45263, - [SMALL_STATE(1482)] = 45320, - [SMALL_STATE(1483)] = 45371, - [SMALL_STATE(1484)] = 45460, - [SMALL_STATE(1485)] = 45515, - [SMALL_STATE(1486)] = 45574, - [SMALL_STATE(1487)] = 45627, - [SMALL_STATE(1488)] = 45684, - [SMALL_STATE(1489)] = 45737, - [SMALL_STATE(1490)] = 45787, - [SMALL_STATE(1491)] = 45837, - [SMALL_STATE(1492)] = 45891, - [SMALL_STATE(1493)] = 45945, - [SMALL_STATE(1494)] = 45995, - [SMALL_STATE(1495)] = 46049, - [SMALL_STATE(1496)] = 46099, - [SMALL_STATE(1497)] = 46151, - [SMALL_STATE(1498)] = 46203, - [SMALL_STATE(1499)] = 46257, - [SMALL_STATE(1500)] = 46307, - [SMALL_STATE(1501)] = 46357, - [SMALL_STATE(1502)] = 46407, - [SMALL_STATE(1503)] = 46461, - [SMALL_STATE(1504)] = 46515, - [SMALL_STATE(1505)] = 46565, - [SMALL_STATE(1506)] = 46619, - [SMALL_STATE(1507)] = 46695, - [SMALL_STATE(1508)] = 46771, - [SMALL_STATE(1509)] = 46821, - [SMALL_STATE(1510)] = 46871, - [SMALL_STATE(1511)] = 46947, - [SMALL_STATE(1512)] = 46997, - [SMALL_STATE(1513)] = 47073, - [SMALL_STATE(1514)] = 47122, - [SMALL_STATE(1515)] = 47173, - [SMALL_STATE(1516)] = 47222, - [SMALL_STATE(1517)] = 47311, - [SMALL_STATE(1518)] = 47360, - [SMALL_STATE(1519)] = 47413, - [SMALL_STATE(1520)] = 47464, - [SMALL_STATE(1521)] = 47553, - [SMALL_STATE(1522)] = 47642, - [SMALL_STATE(1523)] = 47693, - [SMALL_STATE(1524)] = 47744, - [SMALL_STATE(1525)] = 47793, - [SMALL_STATE(1526)] = 47882, - [SMALL_STATE(1527)] = 47931, - [SMALL_STATE(1528)] = 47980, - [SMALL_STATE(1529)] = 48031, - [SMALL_STATE(1530)] = 48082, - [SMALL_STATE(1531)] = 48133, - [SMALL_STATE(1532)] = 48222, - [SMALL_STATE(1533)] = 48273, - [SMALL_STATE(1534)] = 48322, - [SMALL_STATE(1535)] = 48411, - [SMALL_STATE(1536)] = 48462, - [SMALL_STATE(1537)] = 48551, - [SMALL_STATE(1538)] = 48602, - [SMALL_STATE(1539)] = 48691, - [SMALL_STATE(1540)] = 48780, - [SMALL_STATE(1541)] = 48831, - [SMALL_STATE(1542)] = 48882, - [SMALL_STATE(1543)] = 48971, - [SMALL_STATE(1544)] = 49060, - [SMALL_STATE(1545)] = 49111, - [SMALL_STATE(1546)] = 49162, - [SMALL_STATE(1547)] = 49213, - [SMALL_STATE(1548)] = 49264, - [SMALL_STATE(1549)] = 49313, - [SMALL_STATE(1550)] = 49362, - [SMALL_STATE(1551)] = 49411, - [SMALL_STATE(1552)] = 49462, - [SMALL_STATE(1553)] = 49511, - [SMALL_STATE(1554)] = 49562, - [SMALL_STATE(1555)] = 49613, - [SMALL_STATE(1556)] = 49664, - [SMALL_STATE(1557)] = 49753, - [SMALL_STATE(1558)] = 49802, - [SMALL_STATE(1559)] = 49851, - [SMALL_STATE(1560)] = 49900, - [SMALL_STATE(1561)] = 49949, - [SMALL_STATE(1562)] = 49998, - [SMALL_STATE(1563)] = 50047, - [SMALL_STATE(1564)] = 50098, - [SMALL_STATE(1565)] = 50147, - [SMALL_STATE(1566)] = 50196, - [SMALL_STATE(1567)] = 50247, - [SMALL_STATE(1568)] = 50296, - [SMALL_STATE(1569)] = 50345, - [SMALL_STATE(1570)] = 50396, - [SMALL_STATE(1571)] = 50444, - [SMALL_STATE(1572)] = 50492, - [SMALL_STATE(1573)] = 50540, - [SMALL_STATE(1574)] = 50588, - [SMALL_STATE(1575)] = 50636, - [SMALL_STATE(1576)] = 50684, - [SMALL_STATE(1577)] = 50732, - [SMALL_STATE(1578)] = 50814, - [SMALL_STATE(1579)] = 50900, - [SMALL_STATE(1580)] = 50948, - [SMALL_STATE(1581)] = 50996, - [SMALL_STATE(1582)] = 51082, - [SMALL_STATE(1583)] = 51168, - [SMALL_STATE(1584)] = 51254, - [SMALL_STATE(1585)] = 51302, - [SMALL_STATE(1586)] = 51350, - [SMALL_STATE(1587)] = 51398, - [SMALL_STATE(1588)] = 51446, - [SMALL_STATE(1589)] = 51494, - [SMALL_STATE(1590)] = 51542, - [SMALL_STATE(1591)] = 51590, - [SMALL_STATE(1592)] = 51638, - [SMALL_STATE(1593)] = 51686, - [SMALL_STATE(1594)] = 51734, - [SMALL_STATE(1595)] = 51782, - [SMALL_STATE(1596)] = 51830, - [SMALL_STATE(1597)] = 51884, - [SMALL_STATE(1598)] = 51932, - [SMALL_STATE(1599)] = 51980, - [SMALL_STATE(1600)] = 52060, - [SMALL_STATE(1601)] = 52114, - [SMALL_STATE(1602)] = 52162, - [SMALL_STATE(1603)] = 52244, - [SMALL_STATE(1604)] = 52326, - [SMALL_STATE(1605)] = 52408, - [SMALL_STATE(1606)] = 52456, - [SMALL_STATE(1607)] = 52504, - [SMALL_STATE(1608)] = 52580, - [SMALL_STATE(1609)] = 52628, - [SMALL_STATE(1610)] = 52714, - [SMALL_STATE(1611)] = 52762, - [SMALL_STATE(1612)] = 52842, - [SMALL_STATE(1613)] = 52890, - [SMALL_STATE(1614)] = 52938, - [SMALL_STATE(1615)] = 52986, - [SMALL_STATE(1616)] = 53034, - [SMALL_STATE(1617)] = 53082, - [SMALL_STATE(1618)] = 53162, - [SMALL_STATE(1619)] = 53210, - [SMALL_STATE(1620)] = 53258, - [SMALL_STATE(1621)] = 53306, - [SMALL_STATE(1622)] = 53354, - [SMALL_STATE(1623)] = 53434, - [SMALL_STATE(1624)] = 53482, - [SMALL_STATE(1625)] = 53530, - [SMALL_STATE(1626)] = 53578, - [SMALL_STATE(1627)] = 53626, - [SMALL_STATE(1628)] = 53674, - [SMALL_STATE(1629)] = 53722, - [SMALL_STATE(1630)] = 53802, - [SMALL_STATE(1631)] = 53850, - [SMALL_STATE(1632)] = 53898, - [SMALL_STATE(1633)] = 53974, - [SMALL_STATE(1634)] = 54054, - [SMALL_STATE(1635)] = 54102, - [SMALL_STATE(1636)] = 54150, - [SMALL_STATE(1637)] = 54198, - [SMALL_STATE(1638)] = 54280, - [SMALL_STATE(1639)] = 54328, - [SMALL_STATE(1640)] = 54376, - [SMALL_STATE(1641)] = 54424, - [SMALL_STATE(1642)] = 54472, - [SMALL_STATE(1643)] = 54520, - [SMALL_STATE(1644)] = 54568, - [SMALL_STATE(1645)] = 54616, - [SMALL_STATE(1646)] = 54702, - [SMALL_STATE(1647)] = 54750, - [SMALL_STATE(1648)] = 54798, - [SMALL_STATE(1649)] = 54880, - [SMALL_STATE(1650)] = 54928, - [SMALL_STATE(1651)] = 54976, - [SMALL_STATE(1652)] = 55024, - [SMALL_STATE(1653)] = 55072, - [SMALL_STATE(1654)] = 55120, - [SMALL_STATE(1655)] = 55168, - [SMALL_STATE(1656)] = 55216, - [SMALL_STATE(1657)] = 55298, - [SMALL_STATE(1658)] = 55346, - [SMALL_STATE(1659)] = 55394, - [SMALL_STATE(1660)] = 55442, - [SMALL_STATE(1661)] = 55490, - [SMALL_STATE(1662)] = 55538, - [SMALL_STATE(1663)] = 55586, - [SMALL_STATE(1664)] = 55640, - [SMALL_STATE(1665)] = 55688, - [SMALL_STATE(1666)] = 55768, - [SMALL_STATE(1667)] = 55816, - [SMALL_STATE(1668)] = 55896, - [SMALL_STATE(1669)] = 55944, - [SMALL_STATE(1670)] = 55992, - [SMALL_STATE(1671)] = 56040, - [SMALL_STATE(1672)] = 56120, - [SMALL_STATE(1673)] = 56180, - [SMALL_STATE(1674)] = 56228, - [SMALL_STATE(1675)] = 56302, - [SMALL_STATE(1676)] = 56374, - [SMALL_STATE(1677)] = 56422, - [SMALL_STATE(1678)] = 56498, - [SMALL_STATE(1679)] = 56546, - [SMALL_STATE(1680)] = 56612, - [SMALL_STATE(1681)] = 56660, - [SMALL_STATE(1682)] = 56728, - [SMALL_STATE(1683)] = 56776, - [SMALL_STATE(1684)] = 56840, - [SMALL_STATE(1685)] = 56902, - [SMALL_STATE(1686)] = 56950, - [SMALL_STATE(1687)] = 57030, - [SMALL_STATE(1688)] = 57088, - [SMALL_STATE(1689)] = 57168, - [SMALL_STATE(1690)] = 57228, - [SMALL_STATE(1691)] = 57302, - [SMALL_STATE(1692)] = 57374, - [SMALL_STATE(1693)] = 57450, - [SMALL_STATE(1694)] = 57498, - [SMALL_STATE(1695)] = 57564, - [SMALL_STATE(1696)] = 57632, - [SMALL_STATE(1697)] = 57696, - [SMALL_STATE(1698)] = 57758, - [SMALL_STATE(1699)] = 57806, - [SMALL_STATE(1700)] = 57886, - [SMALL_STATE(1701)] = 57966, - [SMALL_STATE(1702)] = 58022, - [SMALL_STATE(1703)] = 58080, - [SMALL_STATE(1704)] = 58128, - [SMALL_STATE(1705)] = 58208, - [SMALL_STATE(1706)] = 58256, - [SMALL_STATE(1707)] = 58304, - [SMALL_STATE(1708)] = 58352, - [SMALL_STATE(1709)] = 58400, - [SMALL_STATE(1710)] = 58480, - [SMALL_STATE(1711)] = 58562, - [SMALL_STATE(1712)] = 58610, - [SMALL_STATE(1713)] = 58658, - [SMALL_STATE(1714)] = 58725, - [SMALL_STATE(1715)] = 58804, - [SMALL_STATE(1716)] = 58887, - [SMALL_STATE(1717)] = 58968, - [SMALL_STATE(1718)] = 59043, - [SMALL_STATE(1719)] = 59124, - [SMALL_STATE(1720)] = 59205, - [SMALL_STATE(1721)] = 59286, - [SMALL_STATE(1722)] = 59357, - [SMALL_STATE(1723)] = 59440, - [SMALL_STATE(1724)] = 59523, - [SMALL_STATE(1725)] = 59596, - [SMALL_STATE(1726)] = 59655, - [SMALL_STATE(1727)] = 59734, - [SMALL_STATE(1728)] = 59817, - [SMALL_STATE(1729)] = 59900, - [SMALL_STATE(1730)] = 59979, - [SMALL_STATE(1731)] = 60062, - [SMALL_STATE(1732)] = 60145, - [SMALL_STATE(1733)] = 60228, - [SMALL_STATE(1734)] = 60309, - [SMALL_STATE(1735)] = 60388, - [SMALL_STATE(1736)] = 60471, - [SMALL_STATE(1737)] = 60554, - [SMALL_STATE(1738)] = 60637, - [SMALL_STATE(1739)] = 60718, - [SMALL_STATE(1740)] = 60801, - [SMALL_STATE(1741)] = 60858, - [SMALL_STATE(1742)] = 60941, - [SMALL_STATE(1743)] = 61022, - [SMALL_STATE(1744)] = 61101, - [SMALL_STATE(1745)] = 61184, - [SMALL_STATE(1746)] = 61267, - [SMALL_STATE(1747)] = 61350, - [SMALL_STATE(1748)] = 61433, - [SMALL_STATE(1749)] = 61516, - [SMALL_STATE(1750)] = 61599, - [SMALL_STATE(1751)] = 61682, - [SMALL_STATE(1752)] = 61765, - [SMALL_STATE(1753)] = 61846, - [SMALL_STATE(1754)] = 61925, - [SMALL_STATE(1755)] = 61984, - [SMALL_STATE(1756)] = 62067, - [SMALL_STATE(1757)] = 62150, - [SMALL_STATE(1758)] = 62233, - [SMALL_STATE(1759)] = 62298, - [SMALL_STATE(1760)] = 62377, - [SMALL_STATE(1761)] = 62458, - [SMALL_STATE(1762)] = 62525, - [SMALL_STATE(1763)] = 62606, - [SMALL_STATE(1764)] = 62687, - [SMALL_STATE(1765)] = 62770, - [SMALL_STATE(1766)] = 62851, - [SMALL_STATE(1767)] = 62924, - [SMALL_STATE(1768)] = 63003, - [SMALL_STATE(1769)] = 63082, - [SMALL_STATE(1770)] = 63157, - [SMALL_STATE(1771)] = 63238, - [SMALL_STATE(1772)] = 63317, - [SMALL_STATE(1773)] = 63398, - [SMALL_STATE(1774)] = 63469, - [SMALL_STATE(1775)] = 63550, - [SMALL_STATE(1776)] = 63631, - [SMALL_STATE(1777)] = 63714, - [SMALL_STATE(1778)] = 63789, - [SMALL_STATE(1779)] = 63870, - [SMALL_STATE(1780)] = 63933, - [SMALL_STATE(1781)] = 63998, - [SMALL_STATE(1782)] = 64081, - [SMALL_STATE(1783)] = 64164, - [SMALL_STATE(1784)] = 64245, - [SMALL_STATE(1785)] = 64328, - [SMALL_STATE(1786)] = 64403, - [SMALL_STATE(1787)] = 64486, - [SMALL_STATE(1788)] = 64567, - [SMALL_STATE(1789)] = 64650, - [SMALL_STATE(1790)] = 64711, - [SMALL_STATE(1791)] = 64790, - [SMALL_STATE(1792)] = 64869, - [SMALL_STATE(1793)] = 64952, - [SMALL_STATE(1794)] = 65035, - [SMALL_STATE(1795)] = 65114, - [SMALL_STATE(1796)] = 65197, - [SMALL_STATE(1797)] = 65280, - [SMALL_STATE(1798)] = 65363, - [SMALL_STATE(1799)] = 65446, - [SMALL_STATE(1800)] = 65529, - [SMALL_STATE(1801)] = 65612, - [SMALL_STATE(1802)] = 65695, - [SMALL_STATE(1803)] = 65778, - [SMALL_STATE(1804)] = 65861, - [SMALL_STATE(1805)] = 65944, - [SMALL_STATE(1806)] = 66027, - [SMALL_STATE(1807)] = 66090, - [SMALL_STATE(1808)] = 66169, - [SMALL_STATE(1809)] = 66252, - [SMALL_STATE(1810)] = 66335, - [SMALL_STATE(1811)] = 66416, - [SMALL_STATE(1812)] = 66473, - [SMALL_STATE(1813)] = 66556, - [SMALL_STATE(1814)] = 66617, - [SMALL_STATE(1815)] = 66700, - [SMALL_STATE(1816)] = 66783, - [SMALL_STATE(1817)] = 66854, - [SMALL_STATE(1818)] = 66937, - [SMALL_STATE(1819)] = 67017, - [SMALL_STATE(1820)] = 67097, - [SMALL_STATE(1821)] = 67175, - [SMALL_STATE(1822)] = 67255, - [SMALL_STATE(1823)] = 67333, - [SMALL_STATE(1824)] = 67413, - [SMALL_STATE(1825)] = 67493, - [SMALL_STATE(1826)] = 67573, - [SMALL_STATE(1827)] = 67653, - [SMALL_STATE(1828)] = 67733, - [SMALL_STATE(1829)] = 67813, - [SMALL_STATE(1830)] = 67881, - [SMALL_STATE(1831)] = 67961, - [SMALL_STATE(1832)] = 68041, - [SMALL_STATE(1833)] = 68121, - [SMALL_STATE(1834)] = 68201, - [SMALL_STATE(1835)] = 68281, - [SMALL_STATE(1836)] = 68361, - [SMALL_STATE(1837)] = 68441, - [SMALL_STATE(1838)] = 68521, - [SMALL_STATE(1839)] = 68601, - [SMALL_STATE(1840)] = 68681, - [SMALL_STATE(1841)] = 68761, - [SMALL_STATE(1842)] = 68841, - [SMALL_STATE(1843)] = 68921, - [SMALL_STATE(1844)] = 68989, - [SMALL_STATE(1845)] = 69069, - [SMALL_STATE(1846)] = 69149, - [SMALL_STATE(1847)] = 69229, - [SMALL_STATE(1848)] = 69309, - [SMALL_STATE(1849)] = 69389, - [SMALL_STATE(1850)] = 69469, - [SMALL_STATE(1851)] = 69549, - [SMALL_STATE(1852)] = 69629, - [SMALL_STATE(1853)] = 69694, - [SMALL_STATE(1854)] = 69759, - [SMALL_STATE(1855)] = 69824, - [SMALL_STATE(1856)] = 69889, - [SMALL_STATE(1857)] = 69954, - [SMALL_STATE(1858)] = 70022, - [SMALL_STATE(1859)] = 70090, - [SMALL_STATE(1860)] = 70158, - [SMALL_STATE(1861)] = 70226, - [SMALL_STATE(1862)] = 70294, - [SMALL_STATE(1863)] = 70362, - [SMALL_STATE(1864)] = 70430, - [SMALL_STATE(1865)] = 70498, - [SMALL_STATE(1866)] = 70538, - [SMALL_STATE(1867)] = 70578, - [SMALL_STATE(1868)] = 70618, - [SMALL_STATE(1869)] = 70673, - [SMALL_STATE(1870)] = 70728, - [SMALL_STATE(1871)] = 70783, - [SMALL_STATE(1872)] = 70838, - [SMALL_STATE(1873)] = 70893, - [SMALL_STATE(1874)] = 70948, - [SMALL_STATE(1875)] = 71003, - [SMALL_STATE(1876)] = 71055, - [SMALL_STATE(1877)] = 71107, - [SMALL_STATE(1878)] = 71137, - [SMALL_STATE(1879)] = 71179, - [SMALL_STATE(1880)] = 71209, - [SMALL_STATE(1881)] = 71248, - [SMALL_STATE(1882)] = 71279, - [SMALL_STATE(1883)] = 71326, - [SMALL_STATE(1884)] = 71357, - [SMALL_STATE(1885)] = 71388, - [SMALL_STATE(1886)] = 71419, - [SMALL_STATE(1887)] = 71458, - [SMALL_STATE(1888)] = 71497, - [SMALL_STATE(1889)] = 71531, - [SMALL_STATE(1890)] = 71565, - [SMALL_STATE(1891)] = 71599, - [SMALL_STATE(1892)] = 71633, - [SMALL_STATE(1893)] = 71660, - [SMALL_STATE(1894)] = 71689, - [SMALL_STATE(1895)] = 71714, - [SMALL_STATE(1896)] = 71743, - [SMALL_STATE(1897)] = 71770, - [SMALL_STATE(1898)] = 71799, - [SMALL_STATE(1899)] = 71826, - [SMALL_STATE(1900)] = 71853, - [SMALL_STATE(1901)] = 71882, - [SMALL_STATE(1902)] = 71908, - [SMALL_STATE(1903)] = 71948, - [SMALL_STATE(1904)] = 71986, - [SMALL_STATE(1905)] = 72012, - [SMALL_STATE(1906)] = 72066, - [SMALL_STATE(1907)] = 72092, - [SMALL_STATE(1908)] = 72146, - [SMALL_STATE(1909)] = 72172, - [SMALL_STATE(1910)] = 72198, - [SMALL_STATE(1911)] = 72224, - [SMALL_STATE(1912)] = 72261, - [SMALL_STATE(1913)] = 72286, - [SMALL_STATE(1914)] = 72311, - [SMALL_STATE(1915)] = 72338, - [SMALL_STATE(1916)] = 72361, - [SMALL_STATE(1917)] = 72386, - [SMALL_STATE(1918)] = 72409, - [SMALL_STATE(1919)] = 72436, - [SMALL_STATE(1920)] = 72459, - [SMALL_STATE(1921)] = 72484, - [SMALL_STATE(1922)] = 72509, - [SMALL_STATE(1923)] = 72536, - [SMALL_STATE(1924)] = 72583, - [SMALL_STATE(1925)] = 72610, - [SMALL_STATE(1926)] = 72637, - [SMALL_STATE(1927)] = 72662, - [SMALL_STATE(1928)] = 72687, - [SMALL_STATE(1929)] = 72710, - [SMALL_STATE(1930)] = 72737, - [SMALL_STATE(1931)] = 72760, - [SMALL_STATE(1932)] = 72807, - [SMALL_STATE(1933)] = 72856, - [SMALL_STATE(1934)] = 72879, - [SMALL_STATE(1935)] = 72904, - [SMALL_STATE(1936)] = 72927, - [SMALL_STATE(1937)] = 72950, - [SMALL_STATE(1938)] = 72985, - [SMALL_STATE(1939)] = 73008, - [SMALL_STATE(1940)] = 73030, - [SMALL_STATE(1941)] = 73052, - [SMALL_STATE(1942)] = 73074, - [SMALL_STATE(1943)] = 73096, - [SMALL_STATE(1944)] = 73118, - [SMALL_STATE(1945)] = 73140, - [SMALL_STATE(1946)] = 73162, - [SMALL_STATE(1947)] = 73184, - [SMALL_STATE(1948)] = 73206, - [SMALL_STATE(1949)] = 73228, - [SMALL_STATE(1950)] = 73252, - [SMALL_STATE(1951)] = 73274, - [SMALL_STATE(1952)] = 73312, - [SMALL_STATE(1953)] = 73334, - [SMALL_STATE(1954)] = 73356, - [SMALL_STATE(1955)] = 73378, - [SMALL_STATE(1956)] = 73400, - [SMALL_STATE(1957)] = 73422, - [SMALL_STATE(1958)] = 73444, - [SMALL_STATE(1959)] = 73468, - [SMALL_STATE(1960)] = 73490, - [SMALL_STATE(1961)] = 73512, - [SMALL_STATE(1962)] = 73534, - [SMALL_STATE(1963)] = 73556, - [SMALL_STATE(1964)] = 73578, - [SMALL_STATE(1965)] = 73600, - [SMALL_STATE(1966)] = 73622, - [SMALL_STATE(1967)] = 73644, - [SMALL_STATE(1968)] = 73666, - [SMALL_STATE(1969)] = 73688, - [SMALL_STATE(1970)] = 73713, - [SMALL_STATE(1971)] = 73758, - [SMALL_STATE(1972)] = 73781, - [SMALL_STATE(1973)] = 73810, - [SMALL_STATE(1974)] = 73832, - [SMALL_STATE(1975)] = 73858, - [SMALL_STATE(1976)] = 73884, - [SMALL_STATE(1977)] = 73910, - [SMALL_STATE(1978)] = 73936, - [SMALL_STATE(1979)] = 73960, - [SMALL_STATE(1980)] = 73982, - [SMALL_STATE(1981)] = 74008, - [SMALL_STATE(1982)] = 74034, - [SMALL_STATE(1983)] = 74060, - [SMALL_STATE(1984)] = 74086, - [SMALL_STATE(1985)] = 74112, - [SMALL_STATE(1986)] = 74138, - [SMALL_STATE(1987)] = 74176, - [SMALL_STATE(1988)] = 74202, - [SMALL_STATE(1989)] = 74228, - [SMALL_STATE(1990)] = 74259, - [SMALL_STATE(1991)] = 74281, - [SMALL_STATE(1992)] = 74313, - [SMALL_STATE(1993)] = 74345, - [SMALL_STATE(1994)] = 74363, - [SMALL_STATE(1995)] = 74385, - [SMALL_STATE(1996)] = 74417, - [SMALL_STATE(1997)] = 74441, - [SMALL_STATE(1998)] = 74473, - [SMALL_STATE(1999)] = 74497, - [SMALL_STATE(2000)] = 74519, - [SMALL_STATE(2001)] = 74541, - [SMALL_STATE(2002)] = 74573, - [SMALL_STATE(2003)] = 74601, - [SMALL_STATE(2004)] = 74619, - [SMALL_STATE(2005)] = 74637, - [SMALL_STATE(2006)] = 74659, - [SMALL_STATE(2007)] = 74681, - [SMALL_STATE(2008)] = 74705, - [SMALL_STATE(2009)] = 74727, - [SMALL_STATE(2010)] = 74759, - [SMALL_STATE(2011)] = 74791, - [SMALL_STATE(2012)] = 74815, - [SMALL_STATE(2013)] = 74837, - [SMALL_STATE(2014)] = 74869, - [SMALL_STATE(2015)] = 74891, - [SMALL_STATE(2016)] = 74913, - [SMALL_STATE(2017)] = 74931, - [SMALL_STATE(2018)] = 74963, - [SMALL_STATE(2019)] = 74981, - [SMALL_STATE(2020)] = 75009, - [SMALL_STATE(2021)] = 75031, - [SMALL_STATE(2022)] = 75053, - [SMALL_STATE(2023)] = 75070, - [SMALL_STATE(2024)] = 75087, - [SMALL_STATE(2025)] = 75116, - [SMALL_STATE(2026)] = 75133, - [SMALL_STATE(2027)] = 75150, - [SMALL_STATE(2028)] = 75167, - [SMALL_STATE(2029)] = 75184, - [SMALL_STATE(2030)] = 75201, - [SMALL_STATE(2031)] = 75218, - [SMALL_STATE(2032)] = 75251, - [SMALL_STATE(2033)] = 75268, - [SMALL_STATE(2034)] = 75285, - [SMALL_STATE(2035)] = 75302, - [SMALL_STATE(2036)] = 75327, - [SMALL_STATE(2037)] = 75344, - [SMALL_STATE(2038)] = 75361, - [SMALL_STATE(2039)] = 75378, - [SMALL_STATE(2040)] = 75395, - [SMALL_STATE(2041)] = 75412, - [SMALL_STATE(2042)] = 75429, - [SMALL_STATE(2043)] = 75446, - [SMALL_STATE(2044)] = 75463, - [SMALL_STATE(2045)] = 75480, - [SMALL_STATE(2046)] = 75509, - [SMALL_STATE(2047)] = 75534, - [SMALL_STATE(2048)] = 75551, - [SMALL_STATE(2049)] = 75568, - [SMALL_STATE(2050)] = 75585, - [SMALL_STATE(2051)] = 75602, - [SMALL_STATE(2052)] = 75635, - [SMALL_STATE(2053)] = 75668, - [SMALL_STATE(2054)] = 75695, - [SMALL_STATE(2055)] = 75728, - [SMALL_STATE(2056)] = 75745, - [SMALL_STATE(2057)] = 75770, - [SMALL_STATE(2058)] = 75799, - [SMALL_STATE(2059)] = 75816, - [SMALL_STATE(2060)] = 75845, - [SMALL_STATE(2061)] = 75862, - [SMALL_STATE(2062)] = 75879, - [SMALL_STATE(2063)] = 75896, - [SMALL_STATE(2064)] = 75913, - [SMALL_STATE(2065)] = 75930, - [SMALL_STATE(2066)] = 75959, - [SMALL_STATE(2067)] = 75984, - [SMALL_STATE(2068)] = 76015, - [SMALL_STATE(2069)] = 76032, - [SMALL_STATE(2070)] = 76049, - [SMALL_STATE(2071)] = 76075, - [SMALL_STATE(2072)] = 76093, - [SMALL_STATE(2073)] = 76125, - [SMALL_STATE(2074)] = 76155, - [SMALL_STATE(2075)] = 76177, - [SMALL_STATE(2076)] = 76203, - [SMALL_STATE(2077)] = 76233, - [SMALL_STATE(2078)] = 76259, - [SMALL_STATE(2079)] = 76281, - [SMALL_STATE(2080)] = 76303, - [SMALL_STATE(2081)] = 76329, - [SMALL_STATE(2082)] = 76355, - [SMALL_STATE(2083)] = 76381, - [SMALL_STATE(2084)] = 76411, - [SMALL_STATE(2085)] = 76441, - [SMALL_STATE(2086)] = 76473, - [SMALL_STATE(2087)] = 76503, - [SMALL_STATE(2088)] = 76535, - [SMALL_STATE(2089)] = 76565, - [SMALL_STATE(2090)] = 76591, - [SMALL_STATE(2091)] = 76621, - [SMALL_STATE(2092)] = 76647, - [SMALL_STATE(2093)] = 76669, - [SMALL_STATE(2094)] = 76699, - [SMALL_STATE(2095)] = 76729, - [SMALL_STATE(2096)] = 76755, - [SMALL_STATE(2097)] = 76777, - [SMALL_STATE(2098)] = 76797, - [SMALL_STATE(2099)] = 76823, - [SMALL_STATE(2100)] = 76853, - [SMALL_STATE(2101)] = 76879, - [SMALL_STATE(2102)] = 76909, - [SMALL_STATE(2103)] = 76927, - [SMALL_STATE(2104)] = 76945, - [SMALL_STATE(2105)] = 76975, - [SMALL_STATE(2106)] = 77005, - [SMALL_STATE(2107)] = 77033, - [SMALL_STATE(2108)] = 77063, - [SMALL_STATE(2109)] = 77085, - [SMALL_STATE(2110)] = 77115, - [SMALL_STATE(2111)] = 77145, - [SMALL_STATE(2112)] = 77175, - [SMALL_STATE(2113)] = 77205, - [SMALL_STATE(2114)] = 77235, - [SMALL_STATE(2115)] = 77261, - [SMALL_STATE(2116)] = 77281, - [SMALL_STATE(2117)] = 77299, - [SMALL_STATE(2118)] = 77329, - [SMALL_STATE(2119)] = 77361, - [SMALL_STATE(2120)] = 77387, - [SMALL_STATE(2121)] = 77413, - [SMALL_STATE(2122)] = 77439, - [SMALL_STATE(2123)] = 77465, - [SMALL_STATE(2124)] = 77487, - [SMALL_STATE(2125)] = 77507, - [SMALL_STATE(2126)] = 77527, - [SMALL_STATE(2127)] = 77547, - [SMALL_STATE(2128)] = 77577, - [SMALL_STATE(2129)] = 77607, - [SMALL_STATE(2130)] = 77636, - [SMALL_STATE(2131)] = 77663, - [SMALL_STATE(2132)] = 77692, - [SMALL_STATE(2133)] = 77721, - [SMALL_STATE(2134)] = 77744, - [SMALL_STATE(2135)] = 77759, - [SMALL_STATE(2136)] = 77788, - [SMALL_STATE(2137)] = 77815, - [SMALL_STATE(2138)] = 77844, - [SMALL_STATE(2139)] = 77873, - [SMALL_STATE(2140)] = 77900, - [SMALL_STATE(2141)] = 77927, - [SMALL_STATE(2142)] = 77954, - [SMALL_STATE(2143)] = 77981, - [SMALL_STATE(2144)] = 78002, - [SMALL_STATE(2145)] = 78017, - [SMALL_STATE(2146)] = 78046, - [SMALL_STATE(2147)] = 78061, - [SMALL_STATE(2148)] = 78090, - [SMALL_STATE(2149)] = 78119, - [SMALL_STATE(2150)] = 78134, - [SMALL_STATE(2151)] = 78163, - [SMALL_STATE(2152)] = 78190, - [SMALL_STATE(2153)] = 78217, - [SMALL_STATE(2154)] = 78232, - [SMALL_STATE(2155)] = 78261, - [SMALL_STATE(2156)] = 78276, - [SMALL_STATE(2157)] = 78305, - [SMALL_STATE(2158)] = 78320, - [SMALL_STATE(2159)] = 78347, - [SMALL_STATE(2160)] = 78376, - [SMALL_STATE(2161)] = 78403, - [SMALL_STATE(2162)] = 78432, - [SMALL_STATE(2163)] = 78461, - [SMALL_STATE(2164)] = 78490, - [SMALL_STATE(2165)] = 78517, - [SMALL_STATE(2166)] = 78544, - [SMALL_STATE(2167)] = 78571, - [SMALL_STATE(2168)] = 78600, - [SMALL_STATE(2169)] = 78629, - [SMALL_STATE(2170)] = 78656, - [SMALL_STATE(2171)] = 78685, - [SMALL_STATE(2172)] = 78712, - [SMALL_STATE(2173)] = 78741, - [SMALL_STATE(2174)] = 78770, - [SMALL_STATE(2175)] = 78789, - [SMALL_STATE(2176)] = 78816, - [SMALL_STATE(2177)] = 78845, - [SMALL_STATE(2178)] = 78872, - [SMALL_STATE(2179)] = 78901, - [SMALL_STATE(2180)] = 78928, - [SMALL_STATE(2181)] = 78949, - [SMALL_STATE(2182)] = 78978, - [SMALL_STATE(2183)] = 78993, - [SMALL_STATE(2184)] = 79022, - [SMALL_STATE(2185)] = 79051, - [SMALL_STATE(2186)] = 79070, - [SMALL_STATE(2187)] = 79099, - [SMALL_STATE(2188)] = 79128, - [SMALL_STATE(2189)] = 79157, - [SMALL_STATE(2190)] = 79186, - [SMALL_STATE(2191)] = 79205, - [SMALL_STATE(2192)] = 79221, - [SMALL_STATE(2193)] = 79237, - [SMALL_STATE(2194)] = 79263, - [SMALL_STATE(2195)] = 79289, - [SMALL_STATE(2196)] = 79313, - [SMALL_STATE(2197)] = 79337, - [SMALL_STATE(2198)] = 79363, - [SMALL_STATE(2199)] = 79385, - [SMALL_STATE(2200)] = 79409, - [SMALL_STATE(2201)] = 79429, - [SMALL_STATE(2202)] = 79455, - [SMALL_STATE(2203)] = 79481, - [SMALL_STATE(2204)] = 79501, - [SMALL_STATE(2205)] = 79527, - [SMALL_STATE(2206)] = 79549, - [SMALL_STATE(2207)] = 79573, - [SMALL_STATE(2208)] = 79599, - [SMALL_STATE(2209)] = 79625, - [SMALL_STATE(2210)] = 79651, - [SMALL_STATE(2211)] = 79677, - [SMALL_STATE(2212)] = 79703, - [SMALL_STATE(2213)] = 79727, - [SMALL_STATE(2214)] = 79747, - [SMALL_STATE(2215)] = 79769, - [SMALL_STATE(2216)] = 79795, - [SMALL_STATE(2217)] = 79811, - [SMALL_STATE(2218)] = 79837, - [SMALL_STATE(2219)] = 79863, - [SMALL_STATE(2220)] = 79887, - [SMALL_STATE(2221)] = 79913, - [SMALL_STATE(2222)] = 79939, - [SMALL_STATE(2223)] = 79963, - [SMALL_STATE(2224)] = 79987, - [SMALL_STATE(2225)] = 80013, - [SMALL_STATE(2226)] = 80039, - [SMALL_STATE(2227)] = 80065, - [SMALL_STATE(2228)] = 80091, - [SMALL_STATE(2229)] = 80117, - [SMALL_STATE(2230)] = 80137, - [SMALL_STATE(2231)] = 80159, - [SMALL_STATE(2232)] = 80185, - [SMALL_STATE(2233)] = 80209, - [SMALL_STATE(2234)] = 80231, - [SMALL_STATE(2235)] = 80255, - [SMALL_STATE(2236)] = 80271, - [SMALL_STATE(2237)] = 80297, - [SMALL_STATE(2238)] = 80323, - [SMALL_STATE(2239)] = 80339, - [SMALL_STATE(2240)] = 80355, - [SMALL_STATE(2241)] = 80372, - [SMALL_STATE(2242)] = 80395, - [SMALL_STATE(2243)] = 80412, - [SMALL_STATE(2244)] = 80435, - [SMALL_STATE(2245)] = 80458, - [SMALL_STATE(2246)] = 80475, - [SMALL_STATE(2247)] = 80498, - [SMALL_STATE(2248)] = 80521, - [SMALL_STATE(2249)] = 80544, - [SMALL_STATE(2250)] = 80567, - [SMALL_STATE(2251)] = 80590, - [SMALL_STATE(2252)] = 80613, - [SMALL_STATE(2253)] = 80636, - [SMALL_STATE(2254)] = 80659, - [SMALL_STATE(2255)] = 80676, - [SMALL_STATE(2256)] = 80699, - [SMALL_STATE(2257)] = 80722, - [SMALL_STATE(2258)] = 80739, - [SMALL_STATE(2259)] = 80754, - [SMALL_STATE(2260)] = 80775, - [SMALL_STATE(2261)] = 80798, - [SMALL_STATE(2262)] = 80817, - [SMALL_STATE(2263)] = 80832, - [SMALL_STATE(2264)] = 80855, - [SMALL_STATE(2265)] = 80878, - [SMALL_STATE(2266)] = 80895, - [SMALL_STATE(2267)] = 80918, - [SMALL_STATE(2268)] = 80939, - [SMALL_STATE(2269)] = 80956, - [SMALL_STATE(2270)] = 80979, - [SMALL_STATE(2271)] = 81002, - [SMALL_STATE(2272)] = 81017, - [SMALL_STATE(2273)] = 81040, - [SMALL_STATE(2274)] = 81063, - [SMALL_STATE(2275)] = 81086, - [SMALL_STATE(2276)] = 81109, - [SMALL_STATE(2277)] = 81124, - [SMALL_STATE(2278)] = 81147, - [SMALL_STATE(2279)] = 81170, - [SMALL_STATE(2280)] = 81191, - [SMALL_STATE(2281)] = 81214, - [SMALL_STATE(2282)] = 81237, - [SMALL_STATE(2283)] = 81260, - [SMALL_STATE(2284)] = 81283, - [SMALL_STATE(2285)] = 81306, - [SMALL_STATE(2286)] = 81329, - [SMALL_STATE(2287)] = 81346, - [SMALL_STATE(2288)] = 81369, - [SMALL_STATE(2289)] = 81384, - [SMALL_STATE(2290)] = 81407, - [SMALL_STATE(2291)] = 81424, - [SMALL_STATE(2292)] = 81447, - [SMALL_STATE(2293)] = 81470, - [SMALL_STATE(2294)] = 81493, - [SMALL_STATE(2295)] = 81508, - [SMALL_STATE(2296)] = 81527, - [SMALL_STATE(2297)] = 81548, - [SMALL_STATE(2298)] = 81569, - [SMALL_STATE(2299)] = 81584, - [SMALL_STATE(2300)] = 81601, - [SMALL_STATE(2301)] = 81624, - [SMALL_STATE(2302)] = 81647, - [SMALL_STATE(2303)] = 81670, - [SMALL_STATE(2304)] = 81691, - [SMALL_STATE(2305)] = 81710, - [SMALL_STATE(2306)] = 81729, - [SMALL_STATE(2307)] = 81752, - [SMALL_STATE(2308)] = 81775, - [SMALL_STATE(2309)] = 81798, - [SMALL_STATE(2310)] = 81821, - [SMALL_STATE(2311)] = 81844, - [SMALL_STATE(2312)] = 81867, - [SMALL_STATE(2313)] = 81890, - [SMALL_STATE(2314)] = 81907, - [SMALL_STATE(2315)] = 81924, - [SMALL_STATE(2316)] = 81947, - [SMALL_STATE(2317)] = 81970, - [SMALL_STATE(2318)] = 81993, - [SMALL_STATE(2319)] = 82016, - [SMALL_STATE(2320)] = 82039, - [SMALL_STATE(2321)] = 82062, - [SMALL_STATE(2322)] = 82079, - [SMALL_STATE(2323)] = 82102, - [SMALL_STATE(2324)] = 82125, - [SMALL_STATE(2325)] = 82148, - [SMALL_STATE(2326)] = 82171, - [SMALL_STATE(2327)] = 82194, - [SMALL_STATE(2328)] = 82212, - [SMALL_STATE(2329)] = 82224, - [SMALL_STATE(2330)] = 82242, - [SMALL_STATE(2331)] = 82262, - [SMALL_STATE(2332)] = 82280, - [SMALL_STATE(2333)] = 82300, - [SMALL_STATE(2334)] = 82312, - [SMALL_STATE(2335)] = 82328, - [SMALL_STATE(2336)] = 82348, - [SMALL_STATE(2337)] = 82368, - [SMALL_STATE(2338)] = 82386, - [SMALL_STATE(2339)] = 82404, - [SMALL_STATE(2340)] = 82416, - [SMALL_STATE(2341)] = 82428, - [SMALL_STATE(2342)] = 82448, - [SMALL_STATE(2343)] = 82468, - [SMALL_STATE(2344)] = 82488, - [SMALL_STATE(2345)] = 82502, - [SMALL_STATE(2346)] = 82522, - [SMALL_STATE(2347)] = 82542, - [SMALL_STATE(2348)] = 82562, - [SMALL_STATE(2349)] = 82582, - [SMALL_STATE(2350)] = 82602, - [SMALL_STATE(2351)] = 82622, - [SMALL_STATE(2352)] = 82640, - [SMALL_STATE(2353)] = 82660, - [SMALL_STATE(2354)] = 82680, - [SMALL_STATE(2355)] = 82692, - [SMALL_STATE(2356)] = 82710, - [SMALL_STATE(2357)] = 82730, - [SMALL_STATE(2358)] = 82750, - [SMALL_STATE(2359)] = 82762, - [SMALL_STATE(2360)] = 82782, - [SMALL_STATE(2361)] = 82798, - [SMALL_STATE(2362)] = 82810, - [SMALL_STATE(2363)] = 82822, - [SMALL_STATE(2364)] = 82834, - [SMALL_STATE(2365)] = 82846, - [SMALL_STATE(2366)] = 82866, - [SMALL_STATE(2367)] = 82886, - [SMALL_STATE(2368)] = 82906, - [SMALL_STATE(2369)] = 82926, - [SMALL_STATE(2370)] = 82938, - [SMALL_STATE(2371)] = 82950, - [SMALL_STATE(2372)] = 82962, - [SMALL_STATE(2373)] = 82982, - [SMALL_STATE(2374)] = 82994, - [SMALL_STATE(2375)] = 83012, - [SMALL_STATE(2376)] = 83024, - [SMALL_STATE(2377)] = 83044, - [SMALL_STATE(2378)] = 83064, - [SMALL_STATE(2379)] = 83082, - [SMALL_STATE(2380)] = 83098, - [SMALL_STATE(2381)] = 83114, - [SMALL_STATE(2382)] = 83130, - [SMALL_STATE(2383)] = 83146, - [SMALL_STATE(2384)] = 83158, - [SMALL_STATE(2385)] = 83174, - [SMALL_STATE(2386)] = 83194, - [SMALL_STATE(2387)] = 83214, - [SMALL_STATE(2388)] = 83234, - [SMALL_STATE(2389)] = 83250, - [SMALL_STATE(2390)] = 83266, - [SMALL_STATE(2391)] = 83286, - [SMALL_STATE(2392)] = 83302, - [SMALL_STATE(2393)] = 83322, - [SMALL_STATE(2394)] = 83342, - [SMALL_STATE(2395)] = 83362, - [SMALL_STATE(2396)] = 83382, - [SMALL_STATE(2397)] = 83398, - [SMALL_STATE(2398)] = 83416, - [SMALL_STATE(2399)] = 83430, - [SMALL_STATE(2400)] = 83448, - [SMALL_STATE(2401)] = 83468, - [SMALL_STATE(2402)] = 83480, - [SMALL_STATE(2403)] = 83492, - [SMALL_STATE(2404)] = 83506, - [SMALL_STATE(2405)] = 83518, - [SMALL_STATE(2406)] = 83538, - [SMALL_STATE(2407)] = 83556, - [SMALL_STATE(2408)] = 83576, - [SMALL_STATE(2409)] = 83588, - [SMALL_STATE(2410)] = 83608, - [SMALL_STATE(2411)] = 83620, - [SMALL_STATE(2412)] = 83640, - [SMALL_STATE(2413)] = 83660, - [SMALL_STATE(2414)] = 83680, - [SMALL_STATE(2415)] = 83700, - [SMALL_STATE(2416)] = 83720, - [SMALL_STATE(2417)] = 83740, - [SMALL_STATE(2418)] = 83760, - [SMALL_STATE(2419)] = 83772, - [SMALL_STATE(2420)] = 83789, - [SMALL_STATE(2421)] = 83804, - [SMALL_STATE(2422)] = 83819, - [SMALL_STATE(2423)] = 83834, - [SMALL_STATE(2424)] = 83851, - [SMALL_STATE(2425)] = 83868, - [SMALL_STATE(2426)] = 83885, - [SMALL_STATE(2427)] = 83902, - [SMALL_STATE(2428)] = 83919, - [SMALL_STATE(2429)] = 83934, - [SMALL_STATE(2430)] = 83951, - [SMALL_STATE(2431)] = 83968, - [SMALL_STATE(2432)] = 83985, - [SMALL_STATE(2433)] = 84000, - [SMALL_STATE(2434)] = 84017, - [SMALL_STATE(2435)] = 84034, - [SMALL_STATE(2436)] = 84049, - [SMALL_STATE(2437)] = 84066, - [SMALL_STATE(2438)] = 84081, - [SMALL_STATE(2439)] = 84098, - [SMALL_STATE(2440)] = 84113, - [SMALL_STATE(2441)] = 84130, - [SMALL_STATE(2442)] = 84147, - [SMALL_STATE(2443)] = 84164, - [SMALL_STATE(2444)] = 84181, - [SMALL_STATE(2445)] = 84196, - [SMALL_STATE(2446)] = 84213, - [SMALL_STATE(2447)] = 84230, - [SMALL_STATE(2448)] = 84247, - [SMALL_STATE(2449)] = 84264, - [SMALL_STATE(2450)] = 84281, - [SMALL_STATE(2451)] = 84296, - [SMALL_STATE(2452)] = 84311, - [SMALL_STATE(2453)] = 84324, - [SMALL_STATE(2454)] = 84341, - [SMALL_STATE(2455)] = 84358, - [SMALL_STATE(2456)] = 84375, - [SMALL_STATE(2457)] = 84390, - [SMALL_STATE(2458)] = 84405, - [SMALL_STATE(2459)] = 84422, - [SMALL_STATE(2460)] = 84437, - [SMALL_STATE(2461)] = 84454, - [SMALL_STATE(2462)] = 84471, - [SMALL_STATE(2463)] = 84488, - [SMALL_STATE(2464)] = 84505, - [SMALL_STATE(2465)] = 84522, - [SMALL_STATE(2466)] = 84539, - [SMALL_STATE(2467)] = 84554, - [SMALL_STATE(2468)] = 84569, - [SMALL_STATE(2469)] = 84584, - [SMALL_STATE(2470)] = 84601, - [SMALL_STATE(2471)] = 84618, - [SMALL_STATE(2472)] = 84635, - [SMALL_STATE(2473)] = 84652, - [SMALL_STATE(2474)] = 84665, - [SMALL_STATE(2475)] = 84682, - [SMALL_STATE(2476)] = 84699, - [SMALL_STATE(2477)] = 84716, - [SMALL_STATE(2478)] = 84731, - [SMALL_STATE(2479)] = 84748, - [SMALL_STATE(2480)] = 84765, - [SMALL_STATE(2481)] = 84778, - [SMALL_STATE(2482)] = 84791, - [SMALL_STATE(2483)] = 84808, - [SMALL_STATE(2484)] = 84821, - [SMALL_STATE(2485)] = 84834, - [SMALL_STATE(2486)] = 84851, - [SMALL_STATE(2487)] = 84868, - [SMALL_STATE(2488)] = 84885, - [SMALL_STATE(2489)] = 84902, - [SMALL_STATE(2490)] = 84919, - [SMALL_STATE(2491)] = 84936, - [SMALL_STATE(2492)] = 84953, - [SMALL_STATE(2493)] = 84970, - [SMALL_STATE(2494)] = 84987, - [SMALL_STATE(2495)] = 85004, - [SMALL_STATE(2496)] = 85017, - [SMALL_STATE(2497)] = 85030, - [SMALL_STATE(2498)] = 85043, - [SMALL_STATE(2499)] = 85060, - [SMALL_STATE(2500)] = 85077, - [SMALL_STATE(2501)] = 85094, - [SMALL_STATE(2502)] = 85109, - [SMALL_STATE(2503)] = 85126, - [SMALL_STATE(2504)] = 85143, - [SMALL_STATE(2505)] = 85156, - [SMALL_STATE(2506)] = 85169, - [SMALL_STATE(2507)] = 85186, - [SMALL_STATE(2508)] = 85203, - [SMALL_STATE(2509)] = 85220, - [SMALL_STATE(2510)] = 85237, - [SMALL_STATE(2511)] = 85254, - [SMALL_STATE(2512)] = 85269, - [SMALL_STATE(2513)] = 85284, - [SMALL_STATE(2514)] = 85295, - [SMALL_STATE(2515)] = 85312, - [SMALL_STATE(2516)] = 85327, - [SMALL_STATE(2517)] = 85344, - [SMALL_STATE(2518)] = 85361, - [SMALL_STATE(2519)] = 85378, - [SMALL_STATE(2520)] = 85393, - [SMALL_STATE(2521)] = 85410, - [SMALL_STATE(2522)] = 85427, - [SMALL_STATE(2523)] = 85444, - [SMALL_STATE(2524)] = 85459, - [SMALL_STATE(2525)] = 85476, - [SMALL_STATE(2526)] = 85493, - [SMALL_STATE(2527)] = 85508, - [SMALL_STATE(2528)] = 85521, - [SMALL_STATE(2529)] = 85538, - [SMALL_STATE(2530)] = 85555, - [SMALL_STATE(2531)] = 85570, - [SMALL_STATE(2532)] = 85587, - [SMALL_STATE(2533)] = 85604, - [SMALL_STATE(2534)] = 85621, - [SMALL_STATE(2535)] = 85638, - [SMALL_STATE(2536)] = 85655, - [SMALL_STATE(2537)] = 85672, - [SMALL_STATE(2538)] = 85689, - [SMALL_STATE(2539)] = 85704, - [SMALL_STATE(2540)] = 85721, - [SMALL_STATE(2541)] = 85738, - [SMALL_STATE(2542)] = 85755, - [SMALL_STATE(2543)] = 85772, - [SMALL_STATE(2544)] = 85789, - [SMALL_STATE(2545)] = 85804, - [SMALL_STATE(2546)] = 85821, - [SMALL_STATE(2547)] = 85838, - [SMALL_STATE(2548)] = 85855, - [SMALL_STATE(2549)] = 85868, - [SMALL_STATE(2550)] = 85885, - [SMALL_STATE(2551)] = 85902, - [SMALL_STATE(2552)] = 85919, - [SMALL_STATE(2553)] = 85934, - [SMALL_STATE(2554)] = 85951, - [SMALL_STATE(2555)] = 85968, - [SMALL_STATE(2556)] = 85985, - [SMALL_STATE(2557)] = 86002, - [SMALL_STATE(2558)] = 86019, - [SMALL_STATE(2559)] = 86036, - [SMALL_STATE(2560)] = 86053, - [SMALL_STATE(2561)] = 86070, - [SMALL_STATE(2562)] = 86087, - [SMALL_STATE(2563)] = 86104, - [SMALL_STATE(2564)] = 86121, - [SMALL_STATE(2565)] = 86138, - [SMALL_STATE(2566)] = 86155, - [SMALL_STATE(2567)] = 86172, - [SMALL_STATE(2568)] = 86189, - [SMALL_STATE(2569)] = 86200, - [SMALL_STATE(2570)] = 86215, - [SMALL_STATE(2571)] = 86232, - [SMALL_STATE(2572)] = 86249, - [SMALL_STATE(2573)] = 86266, - [SMALL_STATE(2574)] = 86283, - [SMALL_STATE(2575)] = 86300, - [SMALL_STATE(2576)] = 86317, - [SMALL_STATE(2577)] = 86334, - [SMALL_STATE(2578)] = 86351, - [SMALL_STATE(2579)] = 86368, - [SMALL_STATE(2580)] = 86385, - [SMALL_STATE(2581)] = 86402, - [SMALL_STATE(2582)] = 86417, - [SMALL_STATE(2583)] = 86434, - [SMALL_STATE(2584)] = 86451, - [SMALL_STATE(2585)] = 86468, - [SMALL_STATE(2586)] = 86485, - [SMALL_STATE(2587)] = 86502, - [SMALL_STATE(2588)] = 86519, - [SMALL_STATE(2589)] = 86536, - [SMALL_STATE(2590)] = 86553, - [SMALL_STATE(2591)] = 86570, - [SMALL_STATE(2592)] = 86587, - [SMALL_STATE(2593)] = 86604, - [SMALL_STATE(2594)] = 86621, - [SMALL_STATE(2595)] = 86638, - [SMALL_STATE(2596)] = 86655, - [SMALL_STATE(2597)] = 86672, - [SMALL_STATE(2598)] = 86689, - [SMALL_STATE(2599)] = 86706, - [SMALL_STATE(2600)] = 86723, - [SMALL_STATE(2601)] = 86740, - [SMALL_STATE(2602)] = 86755, - [SMALL_STATE(2603)] = 86766, - [SMALL_STATE(2604)] = 86777, - [SMALL_STATE(2605)] = 86790, - [SMALL_STATE(2606)] = 86807, - [SMALL_STATE(2607)] = 86822, - [SMALL_STATE(2608)] = 86839, - [SMALL_STATE(2609)] = 86852, - [SMALL_STATE(2610)] = 86869, - [SMALL_STATE(2611)] = 86886, - [SMALL_STATE(2612)] = 86903, - [SMALL_STATE(2613)] = 86920, - [SMALL_STATE(2614)] = 86937, - [SMALL_STATE(2615)] = 86954, - [SMALL_STATE(2616)] = 86971, - [SMALL_STATE(2617)] = 86988, - [SMALL_STATE(2618)] = 87005, - [SMALL_STATE(2619)] = 87018, - [SMALL_STATE(2620)] = 87035, - [SMALL_STATE(2621)] = 87052, - [SMALL_STATE(2622)] = 87069, - [SMALL_STATE(2623)] = 87086, - [SMALL_STATE(2624)] = 87103, - [SMALL_STATE(2625)] = 87120, - [SMALL_STATE(2626)] = 87137, - [SMALL_STATE(2627)] = 87154, - [SMALL_STATE(2628)] = 87171, - [SMALL_STATE(2629)] = 87188, - [SMALL_STATE(2630)] = 87205, - [SMALL_STATE(2631)] = 87222, - [SMALL_STATE(2632)] = 87239, - [SMALL_STATE(2633)] = 87256, - [SMALL_STATE(2634)] = 87273, - [SMALL_STATE(2635)] = 87290, - [SMALL_STATE(2636)] = 87307, - [SMALL_STATE(2637)] = 87324, - [SMALL_STATE(2638)] = 87341, - [SMALL_STATE(2639)] = 87358, - [SMALL_STATE(2640)] = 87375, - [SMALL_STATE(2641)] = 87392, - [SMALL_STATE(2642)] = 87409, - [SMALL_STATE(2643)] = 87426, - [SMALL_STATE(2644)] = 87439, - [SMALL_STATE(2645)] = 87456, - [SMALL_STATE(2646)] = 87471, - [SMALL_STATE(2647)] = 87488, - [SMALL_STATE(2648)] = 87505, - [SMALL_STATE(2649)] = 87522, - [SMALL_STATE(2650)] = 87539, - [SMALL_STATE(2651)] = 87556, - [SMALL_STATE(2652)] = 87570, - [SMALL_STATE(2653)] = 87584, - [SMALL_STATE(2654)] = 87594, - [SMALL_STATE(2655)] = 87604, - [SMALL_STATE(2656)] = 87618, - [SMALL_STATE(2657)] = 87628, - [SMALL_STATE(2658)] = 87642, - [SMALL_STATE(2659)] = 87656, - [SMALL_STATE(2660)] = 87670, - [SMALL_STATE(2661)] = 87684, - [SMALL_STATE(2662)] = 87698, - [SMALL_STATE(2663)] = 87710, - [SMALL_STATE(2664)] = 87724, - [SMALL_STATE(2665)] = 87738, - [SMALL_STATE(2666)] = 87752, - [SMALL_STATE(2667)] = 87764, - [SMALL_STATE(2668)] = 87778, - [SMALL_STATE(2669)] = 87792, - [SMALL_STATE(2670)] = 87804, - [SMALL_STATE(2671)] = 87814, - [SMALL_STATE(2672)] = 87828, - [SMALL_STATE(2673)] = 87842, - [SMALL_STATE(2674)] = 87852, - [SMALL_STATE(2675)] = 87866, - [SMALL_STATE(2676)] = 87876, - [SMALL_STATE(2677)] = 87886, - [SMALL_STATE(2678)] = 87900, - [SMALL_STATE(2679)] = 87914, - [SMALL_STATE(2680)] = 87926, - [SMALL_STATE(2681)] = 87940, - [SMALL_STATE(2682)] = 87954, - [SMALL_STATE(2683)] = 87968, - [SMALL_STATE(2684)] = 87982, - [SMALL_STATE(2685)] = 87996, - [SMALL_STATE(2686)] = 88010, - [SMALL_STATE(2687)] = 88022, - [SMALL_STATE(2688)] = 88036, - [SMALL_STATE(2689)] = 88050, - [SMALL_STATE(2690)] = 88062, - [SMALL_STATE(2691)] = 88076, - [SMALL_STATE(2692)] = 88090, - [SMALL_STATE(2693)] = 88104, - [SMALL_STATE(2694)] = 88118, - [SMALL_STATE(2695)] = 88132, - [SMALL_STATE(2696)] = 88146, - [SMALL_STATE(2697)] = 88160, - [SMALL_STATE(2698)] = 88174, - [SMALL_STATE(2699)] = 88186, - [SMALL_STATE(2700)] = 88200, - [SMALL_STATE(2701)] = 88214, - [SMALL_STATE(2702)] = 88224, - [SMALL_STATE(2703)] = 88238, - [SMALL_STATE(2704)] = 88248, - [SMALL_STATE(2705)] = 88258, - [SMALL_STATE(2706)] = 88272, - [SMALL_STATE(2707)] = 88282, - [SMALL_STATE(2708)] = 88296, - [SMALL_STATE(2709)] = 88306, - [SMALL_STATE(2710)] = 88320, - [SMALL_STATE(2711)] = 88330, - [SMALL_STATE(2712)] = 88344, - [SMALL_STATE(2713)] = 88354, - [SMALL_STATE(2714)] = 88366, - [SMALL_STATE(2715)] = 88380, - [SMALL_STATE(2716)] = 88394, - [SMALL_STATE(2717)] = 88408, - [SMALL_STATE(2718)] = 88420, - [SMALL_STATE(2719)] = 88434, - [SMALL_STATE(2720)] = 88448, - [SMALL_STATE(2721)] = 88462, - [SMALL_STATE(2722)] = 88472, - [SMALL_STATE(2723)] = 88486, - [SMALL_STATE(2724)] = 88496, - [SMALL_STATE(2725)] = 88510, - [SMALL_STATE(2726)] = 88524, - [SMALL_STATE(2727)] = 88534, - [SMALL_STATE(2728)] = 88544, - [SMALL_STATE(2729)] = 88558, - [SMALL_STATE(2730)] = 88570, - [SMALL_STATE(2731)] = 88580, - [SMALL_STATE(2732)] = 88590, - [SMALL_STATE(2733)] = 88604, - [SMALL_STATE(2734)] = 88618, - [SMALL_STATE(2735)] = 88632, - [SMALL_STATE(2736)] = 88642, - [SMALL_STATE(2737)] = 88654, - [SMALL_STATE(2738)] = 88664, - [SMALL_STATE(2739)] = 88678, - [SMALL_STATE(2740)] = 88692, - [SMALL_STATE(2741)] = 88702, - [SMALL_STATE(2742)] = 88716, - [SMALL_STATE(2743)] = 88730, - [SMALL_STATE(2744)] = 88744, - [SMALL_STATE(2745)] = 88754, - [SMALL_STATE(2746)] = 88768, - [SMALL_STATE(2747)] = 88782, - [SMALL_STATE(2748)] = 88796, - [SMALL_STATE(2749)] = 88806, - [SMALL_STATE(2750)] = 88820, - [SMALL_STATE(2751)] = 88834, - [SMALL_STATE(2752)] = 88848, - [SMALL_STATE(2753)] = 88862, - [SMALL_STATE(2754)] = 88874, - [SMALL_STATE(2755)] = 88888, - [SMALL_STATE(2756)] = 88902, - [SMALL_STATE(2757)] = 88916, - [SMALL_STATE(2758)] = 88928, - [SMALL_STATE(2759)] = 88942, - [SMALL_STATE(2760)] = 88952, - [SMALL_STATE(2761)] = 88966, - [SMALL_STATE(2762)] = 88980, - [SMALL_STATE(2763)] = 88994, - [SMALL_STATE(2764)] = 89006, - [SMALL_STATE(2765)] = 89016, - [SMALL_STATE(2766)] = 89026, - [SMALL_STATE(2767)] = 89040, - [SMALL_STATE(2768)] = 89054, - [SMALL_STATE(2769)] = 89068, - [SMALL_STATE(2770)] = 89080, - [SMALL_STATE(2771)] = 89094, - [SMALL_STATE(2772)] = 89106, - [SMALL_STATE(2773)] = 89120, - [SMALL_STATE(2774)] = 89134, - [SMALL_STATE(2775)] = 89144, - [SMALL_STATE(2776)] = 89158, - [SMALL_STATE(2777)] = 89172, - [SMALL_STATE(2778)] = 89182, - [SMALL_STATE(2779)] = 89192, - [SMALL_STATE(2780)] = 89202, - [SMALL_STATE(2781)] = 89216, - [SMALL_STATE(2782)] = 89230, - [SMALL_STATE(2783)] = 89244, - [SMALL_STATE(2784)] = 89258, - [SMALL_STATE(2785)] = 89268, - [SMALL_STATE(2786)] = 89282, - [SMALL_STATE(2787)] = 89296, - [SMALL_STATE(2788)] = 89310, - [SMALL_STATE(2789)] = 89324, - [SMALL_STATE(2790)] = 89338, - [SMALL_STATE(2791)] = 89348, - [SMALL_STATE(2792)] = 89362, - [SMALL_STATE(2793)] = 89376, - [SMALL_STATE(2794)] = 89390, - [SMALL_STATE(2795)] = 89402, - [SMALL_STATE(2796)] = 89416, - [SMALL_STATE(2797)] = 89430, - [SMALL_STATE(2798)] = 89444, - [SMALL_STATE(2799)] = 89458, - [SMALL_STATE(2800)] = 89472, - [SMALL_STATE(2801)] = 89482, - [SMALL_STATE(2802)] = 89496, - [SMALL_STATE(2803)] = 89506, - [SMALL_STATE(2804)] = 89520, - [SMALL_STATE(2805)] = 89534, - [SMALL_STATE(2806)] = 89548, - [SMALL_STATE(2807)] = 89562, - [SMALL_STATE(2808)] = 89576, - [SMALL_STATE(2809)] = 89590, - [SMALL_STATE(2810)] = 89604, - [SMALL_STATE(2811)] = 89616, - [SMALL_STATE(2812)] = 89630, - [SMALL_STATE(2813)] = 89642, - [SMALL_STATE(2814)] = 89656, - [SMALL_STATE(2815)] = 89670, - [SMALL_STATE(2816)] = 89684, - [SMALL_STATE(2817)] = 89694, - [SMALL_STATE(2818)] = 89708, - [SMALL_STATE(2819)] = 89722, - [SMALL_STATE(2820)] = 89736, - [SMALL_STATE(2821)] = 89748, - [SMALL_STATE(2822)] = 89762, - [SMALL_STATE(2823)] = 89776, - [SMALL_STATE(2824)] = 89790, - [SMALL_STATE(2825)] = 89804, - [SMALL_STATE(2826)] = 89818, - [SMALL_STATE(2827)] = 89832, - [SMALL_STATE(2828)] = 89844, - [SMALL_STATE(2829)] = 89858, - [SMALL_STATE(2830)] = 89872, - [SMALL_STATE(2831)] = 89886, - [SMALL_STATE(2832)] = 89896, - [SMALL_STATE(2833)] = 89906, - [SMALL_STATE(2834)] = 89920, - [SMALL_STATE(2835)] = 89930, - [SMALL_STATE(2836)] = 89944, - [SMALL_STATE(2837)] = 89958, - [SMALL_STATE(2838)] = 89970, - [SMALL_STATE(2839)] = 89984, - [SMALL_STATE(2840)] = 89996, - [SMALL_STATE(2841)] = 90010, - [SMALL_STATE(2842)] = 90024, - [SMALL_STATE(2843)] = 90038, - [SMALL_STATE(2844)] = 90052, - [SMALL_STATE(2845)] = 90066, - [SMALL_STATE(2846)] = 90080, - [SMALL_STATE(2847)] = 90094, - [SMALL_STATE(2848)] = 90108, - [SMALL_STATE(2849)] = 90122, - [SMALL_STATE(2850)] = 90136, - [SMALL_STATE(2851)] = 90148, - [SMALL_STATE(2852)] = 90162, - [SMALL_STATE(2853)] = 90176, - [SMALL_STATE(2854)] = 90190, - [SMALL_STATE(2855)] = 90202, - [SMALL_STATE(2856)] = 90216, - [SMALL_STATE(2857)] = 90230, - [SMALL_STATE(2858)] = 90244, - [SMALL_STATE(2859)] = 90258, - [SMALL_STATE(2860)] = 90272, - [SMALL_STATE(2861)] = 90286, - [SMALL_STATE(2862)] = 90300, - [SMALL_STATE(2863)] = 90312, - [SMALL_STATE(2864)] = 90326, - [SMALL_STATE(2865)] = 90340, - [SMALL_STATE(2866)] = 90354, - [SMALL_STATE(2867)] = 90366, - [SMALL_STATE(2868)] = 90380, - [SMALL_STATE(2869)] = 90392, - [SMALL_STATE(2870)] = 90406, - [SMALL_STATE(2871)] = 90418, - [SMALL_STATE(2872)] = 90432, - [SMALL_STATE(2873)] = 90446, - [SMALL_STATE(2874)] = 90460, - [SMALL_STATE(2875)] = 90472, - [SMALL_STATE(2876)] = 90486, - [SMALL_STATE(2877)] = 90500, - [SMALL_STATE(2878)] = 90514, - [SMALL_STATE(2879)] = 90528, - [SMALL_STATE(2880)] = 90540, - [SMALL_STATE(2881)] = 90552, - [SMALL_STATE(2882)] = 90562, - [SMALL_STATE(2883)] = 90572, - [SMALL_STATE(2884)] = 90586, - [SMALL_STATE(2885)] = 90600, - [SMALL_STATE(2886)] = 90614, - [SMALL_STATE(2887)] = 90624, - [SMALL_STATE(2888)] = 90634, - [SMALL_STATE(2889)] = 90648, - [SMALL_STATE(2890)] = 90658, - [SMALL_STATE(2891)] = 90668, - [SMALL_STATE(2892)] = 90678, - [SMALL_STATE(2893)] = 90688, - [SMALL_STATE(2894)] = 90702, - [SMALL_STATE(2895)] = 90716, - [SMALL_STATE(2896)] = 90726, - [SMALL_STATE(2897)] = 90740, - [SMALL_STATE(2898)] = 90750, - [SMALL_STATE(2899)] = 90762, - [SMALL_STATE(2900)] = 90776, - [SMALL_STATE(2901)] = 90790, - [SMALL_STATE(2902)] = 90804, - [SMALL_STATE(2903)] = 90818, - [SMALL_STATE(2904)] = 90832, - [SMALL_STATE(2905)] = 90846, - [SMALL_STATE(2906)] = 90860, - [SMALL_STATE(2907)] = 90874, - [SMALL_STATE(2908)] = 90884, - [SMALL_STATE(2909)] = 90898, - [SMALL_STATE(2910)] = 90912, - [SMALL_STATE(2911)] = 90926, - [SMALL_STATE(2912)] = 90940, - [SMALL_STATE(2913)] = 90954, - [SMALL_STATE(2914)] = 90968, - [SMALL_STATE(2915)] = 90982, - [SMALL_STATE(2916)] = 90996, - [SMALL_STATE(2917)] = 91010, - [SMALL_STATE(2918)] = 91024, - [SMALL_STATE(2919)] = 91034, - [SMALL_STATE(2920)] = 91048, - [SMALL_STATE(2921)] = 91058, - [SMALL_STATE(2922)] = 91072, - [SMALL_STATE(2923)] = 91086, - [SMALL_STATE(2924)] = 91100, - [SMALL_STATE(2925)] = 91114, - [SMALL_STATE(2926)] = 91128, - [SMALL_STATE(2927)] = 91140, - [SMALL_STATE(2928)] = 91154, - [SMALL_STATE(2929)] = 91168, - [SMALL_STATE(2930)] = 91178, - [SMALL_STATE(2931)] = 91192, - [SMALL_STATE(2932)] = 91206, - [SMALL_STATE(2933)] = 91220, - [SMALL_STATE(2934)] = 91234, - [SMALL_STATE(2935)] = 91248, - [SMALL_STATE(2936)] = 91259, - [SMALL_STATE(2937)] = 91270, - [SMALL_STATE(2938)] = 91281, - [SMALL_STATE(2939)] = 91290, - [SMALL_STATE(2940)] = 91301, - [SMALL_STATE(2941)] = 91312, - [SMALL_STATE(2942)] = 91323, - [SMALL_STATE(2943)] = 91334, - [SMALL_STATE(2944)] = 91345, - [SMALL_STATE(2945)] = 91356, - [SMALL_STATE(2946)] = 91367, - [SMALL_STATE(2947)] = 91378, - [SMALL_STATE(2948)] = 91389, - [SMALL_STATE(2949)] = 91400, - [SMALL_STATE(2950)] = 91411, - [SMALL_STATE(2951)] = 91422, - [SMALL_STATE(2952)] = 91433, - [SMALL_STATE(2953)] = 91444, - [SMALL_STATE(2954)] = 91455, - [SMALL_STATE(2955)] = 91466, - [SMALL_STATE(2956)] = 91475, - [SMALL_STATE(2957)] = 91486, - [SMALL_STATE(2958)] = 91497, - [SMALL_STATE(2959)] = 91508, - [SMALL_STATE(2960)] = 91519, - [SMALL_STATE(2961)] = 91530, - [SMALL_STATE(2962)] = 91541, - [SMALL_STATE(2963)] = 91550, - [SMALL_STATE(2964)] = 91561, - [SMALL_STATE(2965)] = 91572, - [SMALL_STATE(2966)] = 91583, - [SMALL_STATE(2967)] = 91592, - [SMALL_STATE(2968)] = 91603, - [SMALL_STATE(2969)] = 91614, - [SMALL_STATE(2970)] = 91625, - [SMALL_STATE(2971)] = 91636, - [SMALL_STATE(2972)] = 91647, - [SMALL_STATE(2973)] = 91658, - [SMALL_STATE(2974)] = 91669, - [SMALL_STATE(2975)] = 91680, - [SMALL_STATE(2976)] = 91691, - [SMALL_STATE(2977)] = 91702, - [SMALL_STATE(2978)] = 91713, - [SMALL_STATE(2979)] = 91722, - [SMALL_STATE(2980)] = 91733, - [SMALL_STATE(2981)] = 91744, - [SMALL_STATE(2982)] = 91755, - [SMALL_STATE(2983)] = 91766, - [SMALL_STATE(2984)] = 91777, - [SMALL_STATE(2985)] = 91788, - [SMALL_STATE(2986)] = 91799, - [SMALL_STATE(2987)] = 91810, - [SMALL_STATE(2988)] = 91819, - [SMALL_STATE(2989)] = 91830, - [SMALL_STATE(2990)] = 91841, - [SMALL_STATE(2991)] = 91852, - [SMALL_STATE(2992)] = 91863, - [SMALL_STATE(2993)] = 91874, - [SMALL_STATE(2994)] = 91885, - [SMALL_STATE(2995)] = 91894, - [SMALL_STATE(2996)] = 91903, - [SMALL_STATE(2997)] = 91914, - [SMALL_STATE(2998)] = 91925, - [SMALL_STATE(2999)] = 91936, - [SMALL_STATE(3000)] = 91947, - [SMALL_STATE(3001)] = 91956, - [SMALL_STATE(3002)] = 91967, - [SMALL_STATE(3003)] = 91976, - [SMALL_STATE(3004)] = 91987, - [SMALL_STATE(3005)] = 91998, - [SMALL_STATE(3006)] = 92007, - [SMALL_STATE(3007)] = 92016, - [SMALL_STATE(3008)] = 92025, - [SMALL_STATE(3009)] = 92036, - [SMALL_STATE(3010)] = 92047, - [SMALL_STATE(3011)] = 92058, - [SMALL_STATE(3012)] = 92069, - [SMALL_STATE(3013)] = 92080, - [SMALL_STATE(3014)] = 92091, - [SMALL_STATE(3015)] = 92102, - [SMALL_STATE(3016)] = 92113, - [SMALL_STATE(3017)] = 92124, - [SMALL_STATE(3018)] = 92133, - [SMALL_STATE(3019)] = 92144, - [SMALL_STATE(3020)] = 92155, - [SMALL_STATE(3021)] = 92166, - [SMALL_STATE(3022)] = 92177, - [SMALL_STATE(3023)] = 92188, - [SMALL_STATE(3024)] = 92199, - [SMALL_STATE(3025)] = 92210, - [SMALL_STATE(3026)] = 92221, - [SMALL_STATE(3027)] = 92232, - [SMALL_STATE(3028)] = 92241, - [SMALL_STATE(3029)] = 92250, - [SMALL_STATE(3030)] = 92259, - [SMALL_STATE(3031)] = 92270, - [SMALL_STATE(3032)] = 92281, - [SMALL_STATE(3033)] = 92292, - [SMALL_STATE(3034)] = 92301, - [SMALL_STATE(3035)] = 92310, - [SMALL_STATE(3036)] = 92321, - [SMALL_STATE(3037)] = 92332, - [SMALL_STATE(3038)] = 92341, - [SMALL_STATE(3039)] = 92350, - [SMALL_STATE(3040)] = 92361, - [SMALL_STATE(3041)] = 92372, - [SMALL_STATE(3042)] = 92383, - [SMALL_STATE(3043)] = 92392, - [SMALL_STATE(3044)] = 92401, - [SMALL_STATE(3045)] = 92410, - [SMALL_STATE(3046)] = 92421, - [SMALL_STATE(3047)] = 92432, - [SMALL_STATE(3048)] = 92443, - [SMALL_STATE(3049)] = 92454, - [SMALL_STATE(3050)] = 92465, - [SMALL_STATE(3051)] = 92476, - [SMALL_STATE(3052)] = 92487, - [SMALL_STATE(3053)] = 92498, - [SMALL_STATE(3054)] = 92509, - [SMALL_STATE(3055)] = 92520, - [SMALL_STATE(3056)] = 92531, - [SMALL_STATE(3057)] = 92542, - [SMALL_STATE(3058)] = 92553, - [SMALL_STATE(3059)] = 92564, - [SMALL_STATE(3060)] = 92575, - [SMALL_STATE(3061)] = 92586, - [SMALL_STATE(3062)] = 92597, - [SMALL_STATE(3063)] = 92608, - [SMALL_STATE(3064)] = 92619, - [SMALL_STATE(3065)] = 92628, - [SMALL_STATE(3066)] = 92637, - [SMALL_STATE(3067)] = 92648, - [SMALL_STATE(3068)] = 92659, - [SMALL_STATE(3069)] = 92670, - [SMALL_STATE(3070)] = 92681, - [SMALL_STATE(3071)] = 92692, - [SMALL_STATE(3072)] = 92703, - [SMALL_STATE(3073)] = 92714, - [SMALL_STATE(3074)] = 92725, - [SMALL_STATE(3075)] = 92734, - [SMALL_STATE(3076)] = 92743, - [SMALL_STATE(3077)] = 92752, - [SMALL_STATE(3078)] = 92763, - [SMALL_STATE(3079)] = 92774, - [SMALL_STATE(3080)] = 92785, - [SMALL_STATE(3081)] = 92794, - [SMALL_STATE(3082)] = 92805, - [SMALL_STATE(3083)] = 92814, - [SMALL_STATE(3084)] = 92823, - [SMALL_STATE(3085)] = 92834, - [SMALL_STATE(3086)] = 92845, - [SMALL_STATE(3087)] = 92856, - [SMALL_STATE(3088)] = 92867, - [SMALL_STATE(3089)] = 92878, - [SMALL_STATE(3090)] = 92887, - [SMALL_STATE(3091)] = 92896, - [SMALL_STATE(3092)] = 92907, - [SMALL_STATE(3093)] = 92918, - [SMALL_STATE(3094)] = 92929, - [SMALL_STATE(3095)] = 92940, - [SMALL_STATE(3096)] = 92951, - [SMALL_STATE(3097)] = 92962, - [SMALL_STATE(3098)] = 92973, - [SMALL_STATE(3099)] = 92984, - [SMALL_STATE(3100)] = 92995, - [SMALL_STATE(3101)] = 93006, - [SMALL_STATE(3102)] = 93017, - [SMALL_STATE(3103)] = 93026, - [SMALL_STATE(3104)] = 93037, - [SMALL_STATE(3105)] = 93048, - [SMALL_STATE(3106)] = 93059, - [SMALL_STATE(3107)] = 93070, - [SMALL_STATE(3108)] = 93081, - [SMALL_STATE(3109)] = 93090, - [SMALL_STATE(3110)] = 93099, - [SMALL_STATE(3111)] = 93110, - [SMALL_STATE(3112)] = 93121, - [SMALL_STATE(3113)] = 93130, - [SMALL_STATE(3114)] = 93141, - [SMALL_STATE(3115)] = 93152, - [SMALL_STATE(3116)] = 93163, - [SMALL_STATE(3117)] = 93174, - [SMALL_STATE(3118)] = 93185, - [SMALL_STATE(3119)] = 93196, - [SMALL_STATE(3120)] = 93207, - [SMALL_STATE(3121)] = 93218, - [SMALL_STATE(3122)] = 93229, - [SMALL_STATE(3123)] = 93240, - [SMALL_STATE(3124)] = 93251, - [SMALL_STATE(3125)] = 93262, - [SMALL_STATE(3126)] = 93273, - [SMALL_STATE(3127)] = 93284, - [SMALL_STATE(3128)] = 93295, - [SMALL_STATE(3129)] = 93306, - [SMALL_STATE(3130)] = 93317, - [SMALL_STATE(3131)] = 93328, - [SMALL_STATE(3132)] = 93339, - [SMALL_STATE(3133)] = 93350, - [SMALL_STATE(3134)] = 93361, - [SMALL_STATE(3135)] = 93372, - [SMALL_STATE(3136)] = 93383, - [SMALL_STATE(3137)] = 93392, - [SMALL_STATE(3138)] = 93403, - [SMALL_STATE(3139)] = 93412, - [SMALL_STATE(3140)] = 93423, - [SMALL_STATE(3141)] = 93434, - [SMALL_STATE(3142)] = 93445, - [SMALL_STATE(3143)] = 93456, - [SMALL_STATE(3144)] = 93465, - [SMALL_STATE(3145)] = 93476, - [SMALL_STATE(3146)] = 93487, - [SMALL_STATE(3147)] = 93498, - [SMALL_STATE(3148)] = 93509, - [SMALL_STATE(3149)] = 93520, - [SMALL_STATE(3150)] = 93531, - [SMALL_STATE(3151)] = 93542, - [SMALL_STATE(3152)] = 93551, - [SMALL_STATE(3153)] = 93562, - [SMALL_STATE(3154)] = 93573, - [SMALL_STATE(3155)] = 93584, - [SMALL_STATE(3156)] = 93595, - [SMALL_STATE(3157)] = 93606, - [SMALL_STATE(3158)] = 93617, - [SMALL_STATE(3159)] = 93628, - [SMALL_STATE(3160)] = 93639, - [SMALL_STATE(3161)] = 93650, - [SMALL_STATE(3162)] = 93661, - [SMALL_STATE(3163)] = 93672, - [SMALL_STATE(3164)] = 93683, - [SMALL_STATE(3165)] = 93694, - [SMALL_STATE(3166)] = 93705, - [SMALL_STATE(3167)] = 93716, - [SMALL_STATE(3168)] = 93727, - [SMALL_STATE(3169)] = 93738, - [SMALL_STATE(3170)] = 93749, - [SMALL_STATE(3171)] = 93758, - [SMALL_STATE(3172)] = 93769, - [SMALL_STATE(3173)] = 93780, - [SMALL_STATE(3174)] = 93791, - [SMALL_STATE(3175)] = 93802, - [SMALL_STATE(3176)] = 93813, - [SMALL_STATE(3177)] = 93824, - [SMALL_STATE(3178)] = 93835, - [SMALL_STATE(3179)] = 93846, - [SMALL_STATE(3180)] = 93857, - [SMALL_STATE(3181)] = 93868, - [SMALL_STATE(3182)] = 93879, - [SMALL_STATE(3183)] = 93890, - [SMALL_STATE(3184)] = 93901, - [SMALL_STATE(3185)] = 93912, - [SMALL_STATE(3186)] = 93923, - [SMALL_STATE(3187)] = 93934, - [SMALL_STATE(3188)] = 93945, - [SMALL_STATE(3189)] = 93956, - [SMALL_STATE(3190)] = 93967, - [SMALL_STATE(3191)] = 93978, - [SMALL_STATE(3192)] = 93989, - [SMALL_STATE(3193)] = 94000, - [SMALL_STATE(3194)] = 94011, - [SMALL_STATE(3195)] = 94022, - [SMALL_STATE(3196)] = 94030, - [SMALL_STATE(3197)] = 94038, - [SMALL_STATE(3198)] = 94046, - [SMALL_STATE(3199)] = 94054, - [SMALL_STATE(3200)] = 94062, - [SMALL_STATE(3201)] = 94070, - [SMALL_STATE(3202)] = 94078, - [SMALL_STATE(3203)] = 94086, - [SMALL_STATE(3204)] = 94094, - [SMALL_STATE(3205)] = 94102, - [SMALL_STATE(3206)] = 94110, - [SMALL_STATE(3207)] = 94118, - [SMALL_STATE(3208)] = 94126, - [SMALL_STATE(3209)] = 94134, - [SMALL_STATE(3210)] = 94142, - [SMALL_STATE(3211)] = 94150, - [SMALL_STATE(3212)] = 94158, - [SMALL_STATE(3213)] = 94166, - [SMALL_STATE(3214)] = 94174, - [SMALL_STATE(3215)] = 94182, - [SMALL_STATE(3216)] = 94190, - [SMALL_STATE(3217)] = 94198, - [SMALL_STATE(3218)] = 94206, - [SMALL_STATE(3219)] = 94214, - [SMALL_STATE(3220)] = 94222, - [SMALL_STATE(3221)] = 94230, - [SMALL_STATE(3222)] = 94238, - [SMALL_STATE(3223)] = 94246, - [SMALL_STATE(3224)] = 94254, - [SMALL_STATE(3225)] = 94262, - [SMALL_STATE(3226)] = 94270, - [SMALL_STATE(3227)] = 94278, - [SMALL_STATE(3228)] = 94286, - [SMALL_STATE(3229)] = 94294, - [SMALL_STATE(3230)] = 94302, - [SMALL_STATE(3231)] = 94310, - [SMALL_STATE(3232)] = 94318, - [SMALL_STATE(3233)] = 94326, - [SMALL_STATE(3234)] = 94334, - [SMALL_STATE(3235)] = 94342, - [SMALL_STATE(3236)] = 94350, - [SMALL_STATE(3237)] = 94358, - [SMALL_STATE(3238)] = 94366, - [SMALL_STATE(3239)] = 94374, - [SMALL_STATE(3240)] = 94382, - [SMALL_STATE(3241)] = 94390, - [SMALL_STATE(3242)] = 94398, - [SMALL_STATE(3243)] = 94406, - [SMALL_STATE(3244)] = 94414, - [SMALL_STATE(3245)] = 94422, - [SMALL_STATE(3246)] = 94430, - [SMALL_STATE(3247)] = 94438, - [SMALL_STATE(3248)] = 94446, - [SMALL_STATE(3249)] = 94454, - [SMALL_STATE(3250)] = 94462, - [SMALL_STATE(3251)] = 94470, - [SMALL_STATE(3252)] = 94478, - [SMALL_STATE(3253)] = 94486, - [SMALL_STATE(3254)] = 94494, - [SMALL_STATE(3255)] = 94502, - [SMALL_STATE(3256)] = 94510, - [SMALL_STATE(3257)] = 94518, - [SMALL_STATE(3258)] = 94526, - [SMALL_STATE(3259)] = 94534, - [SMALL_STATE(3260)] = 94542, - [SMALL_STATE(3261)] = 94550, - [SMALL_STATE(3262)] = 94558, - [SMALL_STATE(3263)] = 94566, - [SMALL_STATE(3264)] = 94574, - [SMALL_STATE(3265)] = 94582, - [SMALL_STATE(3266)] = 94590, - [SMALL_STATE(3267)] = 94598, - [SMALL_STATE(3268)] = 94606, - [SMALL_STATE(3269)] = 94614, - [SMALL_STATE(3270)] = 94622, - [SMALL_STATE(3271)] = 94630, - [SMALL_STATE(3272)] = 94638, - [SMALL_STATE(3273)] = 94646, - [SMALL_STATE(3274)] = 94654, - [SMALL_STATE(3275)] = 94662, - [SMALL_STATE(3276)] = 94670, - [SMALL_STATE(3277)] = 94678, - [SMALL_STATE(3278)] = 94686, - [SMALL_STATE(3279)] = 94694, - [SMALL_STATE(3280)] = 94702, - [SMALL_STATE(3281)] = 94710, - [SMALL_STATE(3282)] = 94718, - [SMALL_STATE(3283)] = 94726, - [SMALL_STATE(3284)] = 94734, - [SMALL_STATE(3285)] = 94742, - [SMALL_STATE(3286)] = 94750, - [SMALL_STATE(3287)] = 94758, - [SMALL_STATE(3288)] = 94766, - [SMALL_STATE(3289)] = 94774, - [SMALL_STATE(3290)] = 94782, - [SMALL_STATE(3291)] = 94790, - [SMALL_STATE(3292)] = 94798, - [SMALL_STATE(3293)] = 94806, - [SMALL_STATE(3294)] = 94814, - [SMALL_STATE(3295)] = 94822, - [SMALL_STATE(3296)] = 94830, - [SMALL_STATE(3297)] = 94838, - [SMALL_STATE(3298)] = 94846, - [SMALL_STATE(3299)] = 94854, - [SMALL_STATE(3300)] = 94862, - [SMALL_STATE(3301)] = 94870, - [SMALL_STATE(3302)] = 94878, - [SMALL_STATE(3303)] = 94886, - [SMALL_STATE(3304)] = 94894, - [SMALL_STATE(3305)] = 94902, - [SMALL_STATE(3306)] = 94910, - [SMALL_STATE(3307)] = 94918, - [SMALL_STATE(3308)] = 94926, - [SMALL_STATE(3309)] = 94934, - [SMALL_STATE(3310)] = 94942, - [SMALL_STATE(3311)] = 94950, - [SMALL_STATE(3312)] = 94958, - [SMALL_STATE(3313)] = 94966, - [SMALL_STATE(3314)] = 94974, - [SMALL_STATE(3315)] = 94982, - [SMALL_STATE(3316)] = 94990, - [SMALL_STATE(3317)] = 94998, - [SMALL_STATE(3318)] = 95006, - [SMALL_STATE(3319)] = 95014, - [SMALL_STATE(3320)] = 95022, - [SMALL_STATE(3321)] = 95030, - [SMALL_STATE(3322)] = 95038, - [SMALL_STATE(3323)] = 95046, - [SMALL_STATE(3324)] = 95054, - [SMALL_STATE(3325)] = 95062, - [SMALL_STATE(3326)] = 95070, - [SMALL_STATE(3327)] = 95078, - [SMALL_STATE(3328)] = 95086, - [SMALL_STATE(3329)] = 95094, - [SMALL_STATE(3330)] = 95102, - [SMALL_STATE(3331)] = 95110, - [SMALL_STATE(3332)] = 95118, - [SMALL_STATE(3333)] = 95126, - [SMALL_STATE(3334)] = 95134, - [SMALL_STATE(3335)] = 95142, - [SMALL_STATE(3336)] = 95150, - [SMALL_STATE(3337)] = 95158, - [SMALL_STATE(3338)] = 95166, - [SMALL_STATE(3339)] = 95174, - [SMALL_STATE(3340)] = 95182, - [SMALL_STATE(3341)] = 95190, - [SMALL_STATE(3342)] = 95198, - [SMALL_STATE(3343)] = 95206, - [SMALL_STATE(3344)] = 95214, - [SMALL_STATE(3345)] = 95222, - [SMALL_STATE(3346)] = 95230, - [SMALL_STATE(3347)] = 95238, - [SMALL_STATE(3348)] = 95246, - [SMALL_STATE(3349)] = 95254, - [SMALL_STATE(3350)] = 95262, - [SMALL_STATE(3351)] = 95270, - [SMALL_STATE(3352)] = 95278, - [SMALL_STATE(3353)] = 95286, - [SMALL_STATE(3354)] = 95294, - [SMALL_STATE(3355)] = 95302, - [SMALL_STATE(3356)] = 95310, - [SMALL_STATE(3357)] = 95318, - [SMALL_STATE(3358)] = 95326, - [SMALL_STATE(3359)] = 95334, - [SMALL_STATE(3360)] = 95342, - [SMALL_STATE(3361)] = 95350, - [SMALL_STATE(3362)] = 95358, - [SMALL_STATE(3363)] = 95366, - [SMALL_STATE(3364)] = 95374, - [SMALL_STATE(3365)] = 95382, - [SMALL_STATE(3366)] = 95390, - [SMALL_STATE(3367)] = 95398, - [SMALL_STATE(3368)] = 95406, - [SMALL_STATE(3369)] = 95414, - [SMALL_STATE(3370)] = 95422, - [SMALL_STATE(3371)] = 95430, - [SMALL_STATE(3372)] = 95438, - [SMALL_STATE(3373)] = 95446, - [SMALL_STATE(3374)] = 95454, - [SMALL_STATE(3375)] = 95462, - [SMALL_STATE(3376)] = 95470, - [SMALL_STATE(3377)] = 95478, - [SMALL_STATE(3378)] = 95486, - [SMALL_STATE(3379)] = 95494, - [SMALL_STATE(3380)] = 95502, - [SMALL_STATE(3381)] = 95510, - [SMALL_STATE(3382)] = 95518, - [SMALL_STATE(3383)] = 95526, - [SMALL_STATE(3384)] = 95534, - [SMALL_STATE(3385)] = 95542, - [SMALL_STATE(3386)] = 95550, - [SMALL_STATE(3387)] = 95558, - [SMALL_STATE(3388)] = 95566, - [SMALL_STATE(3389)] = 95574, - [SMALL_STATE(3390)] = 95582, - [SMALL_STATE(3391)] = 95590, - [SMALL_STATE(3392)] = 95598, - [SMALL_STATE(3393)] = 95606, - [SMALL_STATE(3394)] = 95614, - [SMALL_STATE(3395)] = 95622, - [SMALL_STATE(3396)] = 95630, - [SMALL_STATE(3397)] = 95638, - [SMALL_STATE(3398)] = 95646, - [SMALL_STATE(3399)] = 95654, - [SMALL_STATE(3400)] = 95662, - [SMALL_STATE(3401)] = 95670, - [SMALL_STATE(3402)] = 95678, - [SMALL_STATE(3403)] = 95686, - [SMALL_STATE(3404)] = 95694, - [SMALL_STATE(3405)] = 95702, - [SMALL_STATE(3406)] = 95710, - [SMALL_STATE(3407)] = 95718, - [SMALL_STATE(3408)] = 95726, - [SMALL_STATE(3409)] = 95734, - [SMALL_STATE(3410)] = 95742, - [SMALL_STATE(3411)] = 95750, - [SMALL_STATE(3412)] = 95758, - [SMALL_STATE(3413)] = 95766, - [SMALL_STATE(3414)] = 95774, - [SMALL_STATE(3415)] = 95782, - [SMALL_STATE(3416)] = 95790, - [SMALL_STATE(3417)] = 95798, - [SMALL_STATE(3418)] = 95806, - [SMALL_STATE(3419)] = 95814, - [SMALL_STATE(3420)] = 95822, - [SMALL_STATE(3421)] = 95830, - [SMALL_STATE(3422)] = 95838, - [SMALL_STATE(3423)] = 95846, - [SMALL_STATE(3424)] = 95854, - [SMALL_STATE(3425)] = 95862, - [SMALL_STATE(3426)] = 95870, - [SMALL_STATE(3427)] = 95878, - [SMALL_STATE(3428)] = 95886, - [SMALL_STATE(3429)] = 95894, - [SMALL_STATE(3430)] = 95902, - [SMALL_STATE(3431)] = 95910, - [SMALL_STATE(3432)] = 95918, - [SMALL_STATE(3433)] = 95926, - [SMALL_STATE(3434)] = 95934, - [SMALL_STATE(3435)] = 95942, - [SMALL_STATE(3436)] = 95950, - [SMALL_STATE(3437)] = 95958, - [SMALL_STATE(3438)] = 95966, - [SMALL_STATE(3439)] = 95974, - [SMALL_STATE(3440)] = 95982, - [SMALL_STATE(3441)] = 95990, - [SMALL_STATE(3442)] = 95998, - [SMALL_STATE(3443)] = 96006, - [SMALL_STATE(3444)] = 96014, - [SMALL_STATE(3445)] = 96022, - [SMALL_STATE(3446)] = 96030, - [SMALL_STATE(3447)] = 96038, - [SMALL_STATE(3448)] = 96046, - [SMALL_STATE(3449)] = 96054, - [SMALL_STATE(3450)] = 96062, - [SMALL_STATE(3451)] = 96070, - [SMALL_STATE(3452)] = 96078, - [SMALL_STATE(3453)] = 96086, - [SMALL_STATE(3454)] = 96094, - [SMALL_STATE(3455)] = 96102, - [SMALL_STATE(3456)] = 96110, - [SMALL_STATE(3457)] = 96118, - [SMALL_STATE(3458)] = 96126, - [SMALL_STATE(3459)] = 96134, - [SMALL_STATE(3460)] = 96142, - [SMALL_STATE(3461)] = 96150, - [SMALL_STATE(3462)] = 96158, - [SMALL_STATE(3463)] = 96166, - [SMALL_STATE(3464)] = 96174, - [SMALL_STATE(3465)] = 96182, - [SMALL_STATE(3466)] = 96190, - [SMALL_STATE(3467)] = 96198, - [SMALL_STATE(3468)] = 96206, - [SMALL_STATE(3469)] = 96214, + [SMALL_STATE(1006)] = 0, + [SMALL_STATE(1007)] = 75, + [SMALL_STATE(1008)] = 150, + [SMALL_STATE(1009)] = 225, + [SMALL_STATE(1010)] = 299, + [SMALL_STATE(1011)] = 367, + [SMALL_STATE(1012)] = 435, + [SMALL_STATE(1013)] = 512, + [SMALL_STATE(1014)] = 586, + [SMALL_STATE(1015)] = 660, + [SMALL_STATE(1016)] = 734, + [SMALL_STATE(1017)] = 797, + [SMALL_STATE(1018)] = 860, + [SMALL_STATE(1019)] = 923, + [SMALL_STATE(1020)] = 986, + [SMALL_STATE(1021)] = 1049, + [SMALL_STATE(1022)] = 1112, + [SMALL_STATE(1023)] = 1183, + [SMALL_STATE(1024)] = 1250, + [SMALL_STATE(1025)] = 1321, + [SMALL_STATE(1026)] = 1384, + [SMALL_STATE(1027)] = 1451, + [SMALL_STATE(1028)] = 1518, + [SMALL_STATE(1029)] = 1589, + [SMALL_STATE(1030)] = 1656, + [SMALL_STATE(1031)] = 1719, + [SMALL_STATE(1032)] = 1782, + [SMALL_STATE(1033)] = 1853, + [SMALL_STATE(1034)] = 1917, + [SMALL_STATE(1035)] = 1981, + [SMALL_STATE(1036)] = 2043, + [SMALL_STATE(1037)] = 2105, + [SMALL_STATE(1038)] = 2175, + [SMALL_STATE(1039)] = 2237, + [SMALL_STATE(1040)] = 2299, + [SMALL_STATE(1041)] = 2361, + [SMALL_STATE(1042)] = 2429, + [SMALL_STATE(1043)] = 2491, + [SMALL_STATE(1044)] = 2553, + [SMALL_STATE(1045)] = 2615, + [SMALL_STATE(1046)] = 2677, + [SMALL_STATE(1047)] = 2740, + [SMALL_STATE(1048)] = 2801, + [SMALL_STATE(1049)] = 2862, + [SMALL_STATE(1050)] = 2961, + [SMALL_STATE(1051)] = 3024, + [SMALL_STATE(1052)] = 3087, + [SMALL_STATE(1053)] = 3150, + [SMALL_STATE(1054)] = 3213, + [SMALL_STATE(1055)] = 3276, + [SMALL_STATE(1056)] = 3339, + [SMALL_STATE(1057)] = 3400, + [SMALL_STATE(1058)] = 3461, + [SMALL_STATE(1059)] = 3522, + [SMALL_STATE(1060)] = 3583, + [SMALL_STATE(1061)] = 3644, + [SMALL_STATE(1062)] = 3705, + [SMALL_STATE(1063)] = 3768, + [SMALL_STATE(1064)] = 3829, + [SMALL_STATE(1065)] = 3892, + [SMALL_STATE(1066)] = 3953, + [SMALL_STATE(1067)] = 4014, + [SMALL_STATE(1068)] = 4075, + [SMALL_STATE(1069)] = 4138, + [SMALL_STATE(1070)] = 4199, + [SMALL_STATE(1071)] = 4262, + [SMALL_STATE(1072)] = 4325, + [SMALL_STATE(1073)] = 4388, + [SMALL_STATE(1074)] = 4487, + [SMALL_STATE(1075)] = 4548, + [SMALL_STATE(1076)] = 4611, + [SMALL_STATE(1077)] = 4676, + [SMALL_STATE(1078)] = 4739, + [SMALL_STATE(1079)] = 4800, + [SMALL_STATE(1080)] = 4861, + [SMALL_STATE(1081)] = 4922, + [SMALL_STATE(1082)] = 4985, + [SMALL_STATE(1083)] = 5046, + [SMALL_STATE(1084)] = 5111, + [SMALL_STATE(1085)] = 5172, + [SMALL_STATE(1086)] = 5235, + [SMALL_STATE(1087)] = 5298, + [SMALL_STATE(1088)] = 5363, + [SMALL_STATE(1089)] = 5423, + [SMALL_STATE(1090)] = 5483, + [SMALL_STATE(1091)] = 5543, + [SMALL_STATE(1092)] = 5603, + [SMALL_STATE(1093)] = 5663, + [SMALL_STATE(1094)] = 5723, + [SMALL_STATE(1095)] = 5783, + [SMALL_STATE(1096)] = 5843, + [SMALL_STATE(1097)] = 5903, + [SMALL_STATE(1098)] = 5963, + [SMALL_STATE(1099)] = 6023, + [SMALL_STATE(1100)] = 6083, + [SMALL_STATE(1101)] = 6143, + [SMALL_STATE(1102)] = 6203, + [SMALL_STATE(1103)] = 6263, + [SMALL_STATE(1104)] = 6323, + [SMALL_STATE(1105)] = 6383, + [SMALL_STATE(1106)] = 6443, + [SMALL_STATE(1107)] = 6503, + [SMALL_STATE(1108)] = 6563, + [SMALL_STATE(1109)] = 6623, + [SMALL_STATE(1110)] = 6683, + [SMALL_STATE(1111)] = 6743, + [SMALL_STATE(1112)] = 6803, + [SMALL_STATE(1113)] = 6863, + [SMALL_STATE(1114)] = 6923, + [SMALL_STATE(1115)] = 6983, + [SMALL_STATE(1116)] = 7043, + [SMALL_STATE(1117)] = 7103, + [SMALL_STATE(1118)] = 7163, + [SMALL_STATE(1119)] = 7223, + [SMALL_STATE(1120)] = 7283, + [SMALL_STATE(1121)] = 7343, + [SMALL_STATE(1122)] = 7403, + [SMALL_STATE(1123)] = 7463, + [SMALL_STATE(1124)] = 7523, + [SMALL_STATE(1125)] = 7583, + [SMALL_STATE(1126)] = 7643, + [SMALL_STATE(1127)] = 7703, + [SMALL_STATE(1128)] = 7763, + [SMALL_STATE(1129)] = 7823, + [SMALL_STATE(1130)] = 7883, + [SMALL_STATE(1131)] = 7943, + [SMALL_STATE(1132)] = 8003, + [SMALL_STATE(1133)] = 8063, + [SMALL_STATE(1134)] = 8123, + [SMALL_STATE(1135)] = 8183, + [SMALL_STATE(1136)] = 8243, + [SMALL_STATE(1137)] = 8303, + [SMALL_STATE(1138)] = 8363, + [SMALL_STATE(1139)] = 8423, + [SMALL_STATE(1140)] = 8483, + [SMALL_STATE(1141)] = 8543, + [SMALL_STATE(1142)] = 8603, + [SMALL_STATE(1143)] = 8663, + [SMALL_STATE(1144)] = 8723, + [SMALL_STATE(1145)] = 8783, + [SMALL_STATE(1146)] = 8843, + [SMALL_STATE(1147)] = 8903, + [SMALL_STATE(1148)] = 8963, + [SMALL_STATE(1149)] = 9023, + [SMALL_STATE(1150)] = 9083, + [SMALL_STATE(1151)] = 9143, + [SMALL_STATE(1152)] = 9203, + [SMALL_STATE(1153)] = 9263, + [SMALL_STATE(1154)] = 9323, + [SMALL_STATE(1155)] = 9383, + [SMALL_STATE(1156)] = 9443, + [SMALL_STATE(1157)] = 9503, + [SMALL_STATE(1158)] = 9563, + [SMALL_STATE(1159)] = 9623, + [SMALL_STATE(1160)] = 9683, + [SMALL_STATE(1161)] = 9743, + [SMALL_STATE(1162)] = 9803, + [SMALL_STATE(1163)] = 9863, + [SMALL_STATE(1164)] = 9923, + [SMALL_STATE(1165)] = 9983, + [SMALL_STATE(1166)] = 10043, + [SMALL_STATE(1167)] = 10103, + [SMALL_STATE(1168)] = 10163, + [SMALL_STATE(1169)] = 10223, + [SMALL_STATE(1170)] = 10283, + [SMALL_STATE(1171)] = 10343, + [SMALL_STATE(1172)] = 10403, + [SMALL_STATE(1173)] = 10463, + [SMALL_STATE(1174)] = 10523, + [SMALL_STATE(1175)] = 10583, + [SMALL_STATE(1176)] = 10643, + [SMALL_STATE(1177)] = 10703, + [SMALL_STATE(1178)] = 10763, + [SMALL_STATE(1179)] = 10823, + [SMALL_STATE(1180)] = 10883, + [SMALL_STATE(1181)] = 10943, + [SMALL_STATE(1182)] = 11003, + [SMALL_STATE(1183)] = 11063, + [SMALL_STATE(1184)] = 11123, + [SMALL_STATE(1185)] = 11183, + [SMALL_STATE(1186)] = 11243, + [SMALL_STATE(1187)] = 11303, + [SMALL_STATE(1188)] = 11363, + [SMALL_STATE(1189)] = 11423, + [SMALL_STATE(1190)] = 11483, + [SMALL_STATE(1191)] = 11543, + [SMALL_STATE(1192)] = 11603, + [SMALL_STATE(1193)] = 11663, + [SMALL_STATE(1194)] = 11723, + [SMALL_STATE(1195)] = 11783, + [SMALL_STATE(1196)] = 11843, + [SMALL_STATE(1197)] = 11903, + [SMALL_STATE(1198)] = 11963, + [SMALL_STATE(1199)] = 12023, + [SMALL_STATE(1200)] = 12083, + [SMALL_STATE(1201)] = 12143, + [SMALL_STATE(1202)] = 12203, + [SMALL_STATE(1203)] = 12263, + [SMALL_STATE(1204)] = 12323, + [SMALL_STATE(1205)] = 12387, + [SMALL_STATE(1206)] = 12447, + [SMALL_STATE(1207)] = 12507, + [SMALL_STATE(1208)] = 12567, + [SMALL_STATE(1209)] = 12627, + [SMALL_STATE(1210)] = 12687, + [SMALL_STATE(1211)] = 12747, + [SMALL_STATE(1212)] = 12807, + [SMALL_STATE(1213)] = 12867, + [SMALL_STATE(1214)] = 12927, + [SMALL_STATE(1215)] = 12987, + [SMALL_STATE(1216)] = 13047, + [SMALL_STATE(1217)] = 13107, + [SMALL_STATE(1218)] = 13167, + [SMALL_STATE(1219)] = 13227, + [SMALL_STATE(1220)] = 13287, + [SMALL_STATE(1221)] = 13347, + [SMALL_STATE(1222)] = 13407, + [SMALL_STATE(1223)] = 13467, + [SMALL_STATE(1224)] = 13527, + [SMALL_STATE(1225)] = 13587, + [SMALL_STATE(1226)] = 13647, + [SMALL_STATE(1227)] = 13707, + [SMALL_STATE(1228)] = 13767, + [SMALL_STATE(1229)] = 13827, + [SMALL_STATE(1230)] = 13887, + [SMALL_STATE(1231)] = 13947, + [SMALL_STATE(1232)] = 14007, + [SMALL_STATE(1233)] = 14067, + [SMALL_STATE(1234)] = 14127, + [SMALL_STATE(1235)] = 14187, + [SMALL_STATE(1236)] = 14247, + [SMALL_STATE(1237)] = 14307, + [SMALL_STATE(1238)] = 14367, + [SMALL_STATE(1239)] = 14427, + [SMALL_STATE(1240)] = 14487, + [SMALL_STATE(1241)] = 14547, + [SMALL_STATE(1242)] = 14607, + [SMALL_STATE(1243)] = 14667, + [SMALL_STATE(1244)] = 14727, + [SMALL_STATE(1245)] = 14787, + [SMALL_STATE(1246)] = 14847, + [SMALL_STATE(1247)] = 14907, + [SMALL_STATE(1248)] = 14967, + [SMALL_STATE(1249)] = 15027, + [SMALL_STATE(1250)] = 15087, + [SMALL_STATE(1251)] = 15147, + [SMALL_STATE(1252)] = 15207, + [SMALL_STATE(1253)] = 15267, + [SMALL_STATE(1254)] = 15327, + [SMALL_STATE(1255)] = 15393, + [SMALL_STATE(1256)] = 15453, + [SMALL_STATE(1257)] = 15513, + [SMALL_STATE(1258)] = 15573, + [SMALL_STATE(1259)] = 15633, + [SMALL_STATE(1260)] = 15693, + [SMALL_STATE(1261)] = 15753, + [SMALL_STATE(1262)] = 15813, + [SMALL_STATE(1263)] = 15873, + [SMALL_STATE(1264)] = 15933, + [SMALL_STATE(1265)] = 15993, + [SMALL_STATE(1266)] = 16053, + [SMALL_STATE(1267)] = 16113, + [SMALL_STATE(1268)] = 16173, + [SMALL_STATE(1269)] = 16233, + [SMALL_STATE(1270)] = 16293, + [SMALL_STATE(1271)] = 16353, + [SMALL_STATE(1272)] = 16413, + [SMALL_STATE(1273)] = 16473, + [SMALL_STATE(1274)] = 16533, + [SMALL_STATE(1275)] = 16593, + [SMALL_STATE(1276)] = 16653, + [SMALL_STATE(1277)] = 16713, + [SMALL_STATE(1278)] = 16773, + [SMALL_STATE(1279)] = 16833, + [SMALL_STATE(1280)] = 16899, + [SMALL_STATE(1281)] = 16959, + [SMALL_STATE(1282)] = 17019, + [SMALL_STATE(1283)] = 17079, + [SMALL_STATE(1284)] = 17139, + [SMALL_STATE(1285)] = 17203, + [SMALL_STATE(1286)] = 17263, + [SMALL_STATE(1287)] = 17323, + [SMALL_STATE(1288)] = 17383, + [SMALL_STATE(1289)] = 17443, + [SMALL_STATE(1290)] = 17503, + [SMALL_STATE(1291)] = 17563, + [SMALL_STATE(1292)] = 17623, + [SMALL_STATE(1293)] = 17683, + [SMALL_STATE(1294)] = 17743, + [SMALL_STATE(1295)] = 17803, + [SMALL_STATE(1296)] = 17863, + [SMALL_STATE(1297)] = 17923, + [SMALL_STATE(1298)] = 17983, + [SMALL_STATE(1299)] = 18043, + [SMALL_STATE(1300)] = 18103, + [SMALL_STATE(1301)] = 18163, + [SMALL_STATE(1302)] = 18223, + [SMALL_STATE(1303)] = 18283, + [SMALL_STATE(1304)] = 18343, + [SMALL_STATE(1305)] = 18403, + [SMALL_STATE(1306)] = 18463, + [SMALL_STATE(1307)] = 18523, + [SMALL_STATE(1308)] = 18583, + [SMALL_STATE(1309)] = 18643, + [SMALL_STATE(1310)] = 18703, + [SMALL_STATE(1311)] = 18763, + [SMALL_STATE(1312)] = 18823, + [SMALL_STATE(1313)] = 18883, + [SMALL_STATE(1314)] = 18943, + [SMALL_STATE(1315)] = 19003, + [SMALL_STATE(1316)] = 19063, + [SMALL_STATE(1317)] = 19123, + [SMALL_STATE(1318)] = 19183, + [SMALL_STATE(1319)] = 19243, + [SMALL_STATE(1320)] = 19303, + [SMALL_STATE(1321)] = 19363, + [SMALL_STATE(1322)] = 19423, + [SMALL_STATE(1323)] = 19483, + [SMALL_STATE(1324)] = 19543, + [SMALL_STATE(1325)] = 19603, + [SMALL_STATE(1326)] = 19663, + [SMALL_STATE(1327)] = 19723, + [SMALL_STATE(1328)] = 19783, + [SMALL_STATE(1329)] = 19843, + [SMALL_STATE(1330)] = 19903, + [SMALL_STATE(1331)] = 19963, + [SMALL_STATE(1332)] = 20023, + [SMALL_STATE(1333)] = 20083, + [SMALL_STATE(1334)] = 20143, + [SMALL_STATE(1335)] = 20203, + [SMALL_STATE(1336)] = 20263, + [SMALL_STATE(1337)] = 20323, + [SMALL_STATE(1338)] = 20383, + [SMALL_STATE(1339)] = 20443, + [SMALL_STATE(1340)] = 20503, + [SMALL_STATE(1341)] = 20563, + [SMALL_STATE(1342)] = 20623, + [SMALL_STATE(1343)] = 20683, + [SMALL_STATE(1344)] = 20743, + [SMALL_STATE(1345)] = 20803, + [SMALL_STATE(1346)] = 20863, + [SMALL_STATE(1347)] = 20923, + [SMALL_STATE(1348)] = 20983, + [SMALL_STATE(1349)] = 21043, + [SMALL_STATE(1350)] = 21103, + [SMALL_STATE(1351)] = 21163, + [SMALL_STATE(1352)] = 21223, + [SMALL_STATE(1353)] = 21283, + [SMALL_STATE(1354)] = 21343, + [SMALL_STATE(1355)] = 21403, + [SMALL_STATE(1356)] = 21463, + [SMALL_STATE(1357)] = 21523, + [SMALL_STATE(1358)] = 21583, + [SMALL_STATE(1359)] = 21643, + [SMALL_STATE(1360)] = 21703, + [SMALL_STATE(1361)] = 21763, + [SMALL_STATE(1362)] = 21823, + [SMALL_STATE(1363)] = 21883, + [SMALL_STATE(1364)] = 21943, + [SMALL_STATE(1365)] = 22003, + [SMALL_STATE(1366)] = 22063, + [SMALL_STATE(1367)] = 22123, + [SMALL_STATE(1368)] = 22183, + [SMALL_STATE(1369)] = 22243, + [SMALL_STATE(1370)] = 22303, + [SMALL_STATE(1371)] = 22363, + [SMALL_STATE(1372)] = 22423, + [SMALL_STATE(1373)] = 22483, + [SMALL_STATE(1374)] = 22543, + [SMALL_STATE(1375)] = 22603, + [SMALL_STATE(1376)] = 22663, + [SMALL_STATE(1377)] = 22723, + [SMALL_STATE(1378)] = 22783, + [SMALL_STATE(1379)] = 22843, + [SMALL_STATE(1380)] = 22903, + [SMALL_STATE(1381)] = 22963, + [SMALL_STATE(1382)] = 23023, + [SMALL_STATE(1383)] = 23083, + [SMALL_STATE(1384)] = 23143, + [SMALL_STATE(1385)] = 23203, + [SMALL_STATE(1386)] = 23263, + [SMALL_STATE(1387)] = 23323, + [SMALL_STATE(1388)] = 23383, + [SMALL_STATE(1389)] = 23443, + [SMALL_STATE(1390)] = 23503, + [SMALL_STATE(1391)] = 23563, + [SMALL_STATE(1392)] = 23623, + [SMALL_STATE(1393)] = 23683, + [SMALL_STATE(1394)] = 23743, + [SMALL_STATE(1395)] = 23803, + [SMALL_STATE(1396)] = 23863, + [SMALL_STATE(1397)] = 23923, + [SMALL_STATE(1398)] = 23983, + [SMALL_STATE(1399)] = 24043, + [SMALL_STATE(1400)] = 24103, + [SMALL_STATE(1401)] = 24163, + [SMALL_STATE(1402)] = 24229, + [SMALL_STATE(1403)] = 24289, + [SMALL_STATE(1404)] = 24349, + [SMALL_STATE(1405)] = 24409, + [SMALL_STATE(1406)] = 24469, + [SMALL_STATE(1407)] = 24529, + [SMALL_STATE(1408)] = 24589, + [SMALL_STATE(1409)] = 24649, + [SMALL_STATE(1410)] = 24709, + [SMALL_STATE(1411)] = 24769, + [SMALL_STATE(1412)] = 24829, + [SMALL_STATE(1413)] = 24889, + [SMALL_STATE(1414)] = 24949, + [SMALL_STATE(1415)] = 25009, + [SMALL_STATE(1416)] = 25069, + [SMALL_STATE(1417)] = 25129, + [SMALL_STATE(1418)] = 25189, + [SMALL_STATE(1419)] = 25249, + [SMALL_STATE(1420)] = 25309, + [SMALL_STATE(1421)] = 25369, + [SMALL_STATE(1422)] = 25429, + [SMALL_STATE(1423)] = 25489, + [SMALL_STATE(1424)] = 25549, + [SMALL_STATE(1425)] = 25609, + [SMALL_STATE(1426)] = 25671, + [SMALL_STATE(1427)] = 25731, + [SMALL_STATE(1428)] = 25791, + [SMALL_STATE(1429)] = 25859, + [SMALL_STATE(1430)] = 25919, + [SMALL_STATE(1431)] = 25979, + [SMALL_STATE(1432)] = 26039, + [SMALL_STATE(1433)] = 26101, + [SMALL_STATE(1434)] = 26161, + [SMALL_STATE(1435)] = 26221, + [SMALL_STATE(1436)] = 26281, + [SMALL_STATE(1437)] = 26341, + [SMALL_STATE(1438)] = 26401, + [SMALL_STATE(1439)] = 26461, + [SMALL_STATE(1440)] = 26521, + [SMALL_STATE(1441)] = 26581, + [SMALL_STATE(1442)] = 26641, + [SMALL_STATE(1443)] = 26701, + [SMALL_STATE(1444)] = 26761, + [SMALL_STATE(1445)] = 26821, + [SMALL_STATE(1446)] = 26881, + [SMALL_STATE(1447)] = 26941, + [SMALL_STATE(1448)] = 27000, + [SMALL_STATE(1449)] = 27061, + [SMALL_STATE(1450)] = 27124, + [SMALL_STATE(1451)] = 27195, + [SMALL_STATE(1452)] = 27254, + [SMALL_STATE(1453)] = 27315, + [SMALL_STATE(1454)] = 27374, + [SMALL_STATE(1455)] = 27433, + [SMALL_STATE(1456)] = 27528, + [SMALL_STATE(1457)] = 27587, + [SMALL_STATE(1458)] = 27646, + [SMALL_STATE(1459)] = 27741, + [SMALL_STATE(1460)] = 27833, + [SMALL_STATE(1461)] = 27905, + [SMALL_STATE(1462)] = 27997, + [SMALL_STATE(1463)] = 28065, + [SMALL_STATE(1464)] = 28131, + [SMALL_STATE(1465)] = 28221, + [SMALL_STATE(1466)] = 28289, + [SMALL_STATE(1467)] = 28381, + [SMALL_STATE(1468)] = 28449, + [SMALL_STATE(1469)] = 28539, + [SMALL_STATE(1470)] = 28605, + [SMALL_STATE(1471)] = 28695, + [SMALL_STATE(1472)] = 28763, + [SMALL_STATE(1473)] = 28853, + [SMALL_STATE(1474)] = 28927, + [SMALL_STATE(1475)] = 29005, + [SMALL_STATE(1476)] = 29081, + [SMALL_STATE(1477)] = 29171, + [SMALL_STATE(1478)] = 29257, + [SMALL_STATE(1479)] = 29343, + [SMALL_STATE(1480)] = 29425, + [SMALL_STATE(1481)] = 29515, + [SMALL_STATE(1482)] = 29599, + [SMALL_STATE(1483)] = 29669, + [SMALL_STATE(1484)] = 29766, + [SMALL_STATE(1485)] = 29827, + [SMALL_STATE(1486)] = 29886, + [SMALL_STATE(1487)] = 29945, + [SMALL_STATE(1488)] = 30010, + [SMALL_STATE(1489)] = 30107, + [SMALL_STATE(1490)] = 30204, + [SMALL_STATE(1491)] = 30261, + [SMALL_STATE(1492)] = 30358, + [SMALL_STATE(1493)] = 30421, + [SMALL_STATE(1494)] = 30518, + [SMALL_STATE(1495)] = 30583, + [SMALL_STATE(1496)] = 30644, + [SMALL_STATE(1497)] = 30703, + [SMALL_STATE(1498)] = 30764, + [SMALL_STATE(1499)] = 30825, + [SMALL_STATE(1500)] = 30890, + [SMALL_STATE(1501)] = 30955, + [SMALL_STATE(1502)] = 31052, + [SMALL_STATE(1503)] = 31149, + [SMALL_STATE(1504)] = 31208, + [SMALL_STATE(1505)] = 31271, + [SMALL_STATE(1506)] = 31368, + [SMALL_STATE(1507)] = 31465, + [SMALL_STATE(1508)] = 31522, + [SMALL_STATE(1509)] = 31578, + [SMALL_STATE(1510)] = 31638, + [SMALL_STATE(1511)] = 31698, + [SMALL_STATE(1512)] = 31754, + [SMALL_STATE(1513)] = 31812, + [SMALL_STATE(1514)] = 31868, + [SMALL_STATE(1515)] = 31924, + [SMALL_STATE(1516)] = 31980, + [SMALL_STATE(1517)] = 32040, + [SMALL_STATE(1518)] = 32096, + [SMALL_STATE(1519)] = 32152, + [SMALL_STATE(1520)] = 32212, + [SMALL_STATE(1521)] = 32270, + [SMALL_STATE(1522)] = 32326, + [SMALL_STATE(1523)] = 32382, + [SMALL_STATE(1524)] = 32464, + [SMALL_STATE(1525)] = 32520, + [SMALL_STATE(1526)] = 32602, + [SMALL_STATE(1527)] = 32658, + [SMALL_STATE(1528)] = 32718, + [SMALL_STATE(1529)] = 32778, + [SMALL_STATE(1530)] = 32860, + [SMALL_STATE(1531)] = 32920, + [SMALL_STATE(1532)] = 33002, + [SMALL_STATE(1533)] = 33057, + [SMALL_STATE(1534)] = 33114, + [SMALL_STATE(1535)] = 33169, + [SMALL_STATE(1536)] = 33264, + [SMALL_STATE(1537)] = 33321, + [SMALL_STATE(1538)] = 33416, + [SMALL_STATE(1539)] = 33473, + [SMALL_STATE(1540)] = 33528, + [SMALL_STATE(1541)] = 33583, + [SMALL_STATE(1542)] = 33678, + [SMALL_STATE(1543)] = 33735, + [SMALL_STATE(1544)] = 33830, + [SMALL_STATE(1545)] = 33925, + [SMALL_STATE(1546)] = 33980, + [SMALL_STATE(1547)] = 34035, + [SMALL_STATE(1548)] = 34092, + [SMALL_STATE(1549)] = 34149, + [SMALL_STATE(1550)] = 34204, + [SMALL_STATE(1551)] = 34263, + [SMALL_STATE(1552)] = 34358, + [SMALL_STATE(1553)] = 34415, + [SMALL_STATE(1554)] = 34510, + [SMALL_STATE(1555)] = 34567, + [SMALL_STATE(1556)] = 34624, + [SMALL_STATE(1557)] = 34719, + [SMALL_STATE(1558)] = 34776, + [SMALL_STATE(1559)] = 34833, + [SMALL_STATE(1560)] = 34888, + [SMALL_STATE(1561)] = 34943, + [SMALL_STATE(1562)] = 35038, + [SMALL_STATE(1563)] = 35133, + [SMALL_STATE(1564)] = 35228, + [SMALL_STATE(1565)] = 35283, + [SMALL_STATE(1566)] = 35340, + [SMALL_STATE(1567)] = 35397, + [SMALL_STATE(1568)] = 35454, + [SMALL_STATE(1569)] = 35511, + [SMALL_STATE(1570)] = 35566, + [SMALL_STATE(1571)] = 35621, + [SMALL_STATE(1572)] = 35678, + [SMALL_STATE(1573)] = 35733, + [SMALL_STATE(1574)] = 35790, + [SMALL_STATE(1575)] = 35845, + [SMALL_STATE(1576)] = 35940, + [SMALL_STATE(1577)] = 35997, + [SMALL_STATE(1578)] = 36052, + [SMALL_STATE(1579)] = 36107, + [SMALL_STATE(1580)] = 36164, + [SMALL_STATE(1581)] = 36221, + [SMALL_STATE(1582)] = 36278, + [SMALL_STATE(1583)] = 36333, + [SMALL_STATE(1584)] = 36388, + [SMALL_STATE(1585)] = 36443, + [SMALL_STATE(1586)] = 36498, + [SMALL_STATE(1587)] = 36555, + [SMALL_STATE(1588)] = 36612, + [SMALL_STATE(1589)] = 36667, + [SMALL_STATE(1590)] = 36755, + [SMALL_STATE(1591)] = 36809, + [SMALL_STATE(1592)] = 36863, + [SMALL_STATE(1593)] = 36917, + [SMALL_STATE(1594)] = 36971, + [SMALL_STATE(1595)] = 37025, + [SMALL_STATE(1596)] = 37079, + [SMALL_STATE(1597)] = 37167, + [SMALL_STATE(1598)] = 37259, + [SMALL_STATE(1599)] = 37351, + [SMALL_STATE(1600)] = 37405, + [SMALL_STATE(1601)] = 37459, + [SMALL_STATE(1602)] = 37513, + [SMALL_STATE(1603)] = 37567, + [SMALL_STATE(1604)] = 37621, + [SMALL_STATE(1605)] = 37713, + [SMALL_STATE(1606)] = 37767, + [SMALL_STATE(1607)] = 37859, + [SMALL_STATE(1608)] = 37913, + [SMALL_STATE(1609)] = 37999, + [SMALL_STATE(1610)] = 38053, + [SMALL_STATE(1611)] = 38107, + [SMALL_STATE(1612)] = 38189, + [SMALL_STATE(1613)] = 38243, + [SMALL_STATE(1614)] = 38297, + [SMALL_STATE(1615)] = 38351, + [SMALL_STATE(1616)] = 38405, + [SMALL_STATE(1617)] = 38459, + [SMALL_STATE(1618)] = 38513, + [SMALL_STATE(1619)] = 38599, + [SMALL_STATE(1620)] = 38653, + [SMALL_STATE(1621)] = 38707, + [SMALL_STATE(1622)] = 38761, + [SMALL_STATE(1623)] = 38847, + [SMALL_STATE(1624)] = 38901, + [SMALL_STATE(1625)] = 38955, + [SMALL_STATE(1626)] = 39009, + [SMALL_STATE(1627)] = 39063, + [SMALL_STATE(1628)] = 39117, + [SMALL_STATE(1629)] = 39209, + [SMALL_STATE(1630)] = 39263, + [SMALL_STATE(1631)] = 39317, + [SMALL_STATE(1632)] = 39371, + [SMALL_STATE(1633)] = 39425, + [SMALL_STATE(1634)] = 39485, + [SMALL_STATE(1635)] = 39539, + [SMALL_STATE(1636)] = 39593, + [SMALL_STATE(1637)] = 39681, + [SMALL_STATE(1638)] = 39741, + [SMALL_STATE(1639)] = 39829, + [SMALL_STATE(1640)] = 39917, + [SMALL_STATE(1641)] = 39971, + [SMALL_STATE(1642)] = 40025, + [SMALL_STATE(1643)] = 40079, + [SMALL_STATE(1644)] = 40133, + [SMALL_STATE(1645)] = 40187, + [SMALL_STATE(1646)] = 40241, + [SMALL_STATE(1647)] = 40295, + [SMALL_STATE(1648)] = 40349, + [SMALL_STATE(1649)] = 40403, + [SMALL_STATE(1650)] = 40457, + [SMALL_STATE(1651)] = 40511, + [SMALL_STATE(1652)] = 40597, + [SMALL_STATE(1653)] = 40651, + [SMALL_STATE(1654)] = 40717, + [SMALL_STATE(1655)] = 40771, + [SMALL_STATE(1656)] = 40851, + [SMALL_STATE(1657)] = 40929, + [SMALL_STATE(1658)] = 41017, + [SMALL_STATE(1659)] = 41099, + [SMALL_STATE(1660)] = 41185, + [SMALL_STATE(1661)] = 41257, + [SMALL_STATE(1662)] = 41331, + [SMALL_STATE(1663)] = 41385, + [SMALL_STATE(1664)] = 41455, + [SMALL_STATE(1665)] = 41509, + [SMALL_STATE(1666)] = 41577, + [SMALL_STATE(1667)] = 41663, + [SMALL_STATE(1668)] = 41717, + [SMALL_STATE(1669)] = 41771, + [SMALL_STATE(1670)] = 41853, + [SMALL_STATE(1671)] = 41939, + [SMALL_STATE(1672)] = 41993, + [SMALL_STATE(1673)] = 42047, + [SMALL_STATE(1674)] = 42101, + [SMALL_STATE(1675)] = 42155, + [SMALL_STATE(1676)] = 42209, + [SMALL_STATE(1677)] = 42263, + [SMALL_STATE(1678)] = 42317, + [SMALL_STATE(1679)] = 42403, + [SMALL_STATE(1680)] = 42457, + [SMALL_STATE(1681)] = 42511, + [SMALL_STATE(1682)] = 42575, + [SMALL_STATE(1683)] = 42629, + [SMALL_STATE(1684)] = 42683, + [SMALL_STATE(1685)] = 42737, + [SMALL_STATE(1686)] = 42791, + [SMALL_STATE(1687)] = 42879, + [SMALL_STATE(1688)] = 42967, + [SMALL_STATE(1689)] = 43021, + [SMALL_STATE(1690)] = 43107, + [SMALL_STATE(1691)] = 43161, + [SMALL_STATE(1692)] = 43215, + [SMALL_STATE(1693)] = 43269, + [SMALL_STATE(1694)] = 43357, + [SMALL_STATE(1695)] = 43411, + [SMALL_STATE(1696)] = 43465, + [SMALL_STATE(1697)] = 43519, + [SMALL_STATE(1698)] = 43573, + [SMALL_STATE(1699)] = 43627, + [SMALL_STATE(1700)] = 43681, + [SMALL_STATE(1701)] = 43735, + [SMALL_STATE(1702)] = 43795, + [SMALL_STATE(1703)] = 43881, + [SMALL_STATE(1704)] = 43947, + [SMALL_STATE(1705)] = 44027, + [SMALL_STATE(1706)] = 44105, + [SMALL_STATE(1707)] = 44187, + [SMALL_STATE(1708)] = 44241, + [SMALL_STATE(1709)] = 44313, + [SMALL_STATE(1710)] = 44401, + [SMALL_STATE(1711)] = 44475, + [SMALL_STATE(1712)] = 44545, + [SMALL_STATE(1713)] = 44637, + [SMALL_STATE(1714)] = 44705, + [SMALL_STATE(1715)] = 44759, + [SMALL_STATE(1716)] = 44845, + [SMALL_STATE(1717)] = 44907, + [SMALL_STATE(1718)] = 44971, + [SMALL_STATE(1719)] = 45025, + [SMALL_STATE(1720)] = 45079, + [SMALL_STATE(1721)] = 45133, + [SMALL_STATE(1722)] = 45219, + [SMALL_STATE(1723)] = 45307, + [SMALL_STATE(1724)] = 45361, + [SMALL_STATE(1725)] = 45415, + [SMALL_STATE(1726)] = 45469, + [SMALL_STATE(1727)] = 45523, + [SMALL_STATE(1728)] = 45577, + [SMALL_STATE(1729)] = 45631, + [SMALL_STATE(1730)] = 45685, + [SMALL_STATE(1731)] = 45739, + [SMALL_STATE(1732)] = 45793, + [SMALL_STATE(1733)] = 45847, + [SMALL_STATE(1734)] = 45901, + [SMALL_STATE(1735)] = 45955, + [SMALL_STATE(1736)] = 46009, + [SMALL_STATE(1737)] = 46063, + [SMALL_STATE(1738)] = 46148, + [SMALL_STATE(1739)] = 46235, + [SMALL_STATE(1740)] = 46324, + [SMALL_STATE(1741)] = 46409, + [SMALL_STATE(1742)] = 46498, + [SMALL_STATE(1743)] = 46587, + [SMALL_STATE(1744)] = 46664, + [SMALL_STATE(1745)] = 46751, + [SMALL_STATE(1746)] = 46840, + [SMALL_STATE(1747)] = 46927, + [SMALL_STATE(1748)] = 46990, + [SMALL_STATE(1749)] = 47079, + [SMALL_STATE(1750)] = 47168, + [SMALL_STATE(1751)] = 47257, + [SMALL_STATE(1752)] = 47342, + [SMALL_STATE(1753)] = 47409, + [SMALL_STATE(1754)] = 47496, + [SMALL_STATE(1755)] = 47565, + [SMALL_STATE(1756)] = 47638, + [SMALL_STATE(1757)] = 47727, + [SMALL_STATE(1758)] = 47816, + [SMALL_STATE(1759)] = 47887, + [SMALL_STATE(1760)] = 47976, + [SMALL_STATE(1761)] = 48061, + [SMALL_STATE(1762)] = 48150, + [SMALL_STATE(1763)] = 48239, + [SMALL_STATE(1764)] = 48328, + [SMALL_STATE(1765)] = 48409, + [SMALL_STATE(1766)] = 48498, + [SMALL_STATE(1767)] = 48579, + [SMALL_STATE(1768)] = 48668, + [SMALL_STATE(1769)] = 48755, + [SMALL_STATE(1770)] = 48842, + [SMALL_STATE(1771)] = 48929, + [SMALL_STATE(1772)] = 49006, + [SMALL_STATE(1773)] = 49077, + [SMALL_STATE(1774)] = 49166, + [SMALL_STATE(1775)] = 49245, + [SMALL_STATE(1776)] = 49310, + [SMALL_STATE(1777)] = 49383, + [SMALL_STATE(1778)] = 49472, + [SMALL_STATE(1779)] = 49557, + [SMALL_STATE(1780)] = 49642, + [SMALL_STATE(1781)] = 49727, + [SMALL_STATE(1782)] = 49796, + [SMALL_STATE(1783)] = 49885, + [SMALL_STATE(1784)] = 49972, + [SMALL_STATE(1785)] = 50057, + [SMALL_STATE(1786)] = 50144, + [SMALL_STATE(1787)] = 50225, + [SMALL_STATE(1788)] = 50310, + [SMALL_STATE(1789)] = 50399, + [SMALL_STATE(1790)] = 50488, + [SMALL_STATE(1791)] = 50577, + [SMALL_STATE(1792)] = 50666, + [SMALL_STATE(1793)] = 50733, + [SMALL_STATE(1794)] = 50822, + [SMALL_STATE(1795)] = 50909, + [SMALL_STATE(1796)] = 50998, + [SMALL_STATE(1797)] = 51087, + [SMALL_STATE(1798)] = 51176, + [SMALL_STATE(1799)] = 51265, + [SMALL_STATE(1800)] = 51352, + [SMALL_STATE(1801)] = 51441, + [SMALL_STATE(1802)] = 51526, + [SMALL_STATE(1803)] = 51605, + [SMALL_STATE(1804)] = 51694, + [SMALL_STATE(1805)] = 51783, + [SMALL_STATE(1806)] = 51868, + [SMALL_STATE(1807)] = 51953, + [SMALL_STATE(1808)] = 52042, + [SMALL_STATE(1809)] = 52121, + [SMALL_STATE(1810)] = 52184, + [SMALL_STATE(1811)] = 52271, + [SMALL_STATE(1812)] = 52358, + [SMALL_STATE(1813)] = 52445, + [SMALL_STATE(1814)] = 52534, + [SMALL_STATE(1815)] = 52623, + [SMALL_STATE(1816)] = 52712, + [SMALL_STATE(1817)] = 52799, + [SMALL_STATE(1818)] = 52888, + [SMALL_STATE(1819)] = 52975, + [SMALL_STATE(1820)] = 53064, + [SMALL_STATE(1821)] = 53151, + [SMALL_STATE(1822)] = 53236, + [SMALL_STATE(1823)] = 53323, + [SMALL_STATE(1824)] = 53404, + [SMALL_STATE(1825)] = 53493, + [SMALL_STATE(1826)] = 53582, + [SMALL_STATE(1827)] = 53669, + [SMALL_STATE(1828)] = 53758, + [SMALL_STATE(1829)] = 53847, + [SMALL_STATE(1830)] = 53932, + [SMALL_STATE(1831)] = 54019, + [SMALL_STATE(1832)] = 54108, + [SMALL_STATE(1833)] = 54173, + [SMALL_STATE(1834)] = 54262, + [SMALL_STATE(1835)] = 54351, + [SMALL_STATE(1836)] = 54440, + [SMALL_STATE(1837)] = 54529, + [SMALL_STATE(1838)] = 54618, + [SMALL_STATE(1839)] = 54707, + [SMALL_STATE(1840)] = 54796, + [SMALL_STATE(1841)] = 54885, + [SMALL_STATE(1842)] = 54974, + [SMALL_STATE(1843)] = 55060, + [SMALL_STATE(1844)] = 55146, + [SMALL_STATE(1845)] = 55232, + [SMALL_STATE(1846)] = 55318, + [SMALL_STATE(1847)] = 55404, + [SMALL_STATE(1848)] = 55490, + [SMALL_STATE(1849)] = 55566, + [SMALL_STATE(1850)] = 55652, + [SMALL_STATE(1851)] = 55738, + [SMALL_STATE(1852)] = 55822, + [SMALL_STATE(1853)] = 55908, + [SMALL_STATE(1854)] = 55994, + [SMALL_STATE(1855)] = 56078, + [SMALL_STATE(1856)] = 56164, + [SMALL_STATE(1857)] = 56250, + [SMALL_STATE(1858)] = 56336, + [SMALL_STATE(1859)] = 56422, + [SMALL_STATE(1860)] = 56508, + [SMALL_STATE(1861)] = 56594, + [SMALL_STATE(1862)] = 56680, + [SMALL_STATE(1863)] = 56766, + [SMALL_STATE(1864)] = 56852, + [SMALL_STATE(1865)] = 56938, + [SMALL_STATE(1866)] = 57024, + [SMALL_STATE(1867)] = 57100, + [SMALL_STATE(1868)] = 57186, + [SMALL_STATE(1869)] = 57272, + [SMALL_STATE(1870)] = 57358, + [SMALL_STATE(1871)] = 57444, + [SMALL_STATE(1872)] = 57530, + [SMALL_STATE(1873)] = 57616, + [SMALL_STATE(1874)] = 57702, + [SMALL_STATE(1875)] = 57788, + [SMALL_STATE(1876)] = 57874, + [SMALL_STATE(1877)] = 57947, + [SMALL_STATE(1878)] = 58020, + [SMALL_STATE(1879)] = 58093, + [SMALL_STATE(1880)] = 58166, + [SMALL_STATE(1881)] = 58239, + [SMALL_STATE(1882)] = 58313, + [SMALL_STATE(1883)] = 58387, + [SMALL_STATE(1884)] = 58461, + [SMALL_STATE(1885)] = 58535, + [SMALL_STATE(1886)] = 58609, + [SMALL_STATE(1887)] = 58683, + [SMALL_STATE(1888)] = 58757, + [SMALL_STATE(1889)] = 58831, + [SMALL_STATE(1890)] = 58877, + [SMALL_STATE(1891)] = 58923, + [SMALL_STATE(1892)] = 58969, + [SMALL_STATE(1893)] = 59030, + [SMALL_STATE(1894)] = 59091, + [SMALL_STATE(1895)] = 59152, + [SMALL_STATE(1896)] = 59213, + [SMALL_STATE(1897)] = 59274, + [SMALL_STATE(1898)] = 59335, + [SMALL_STATE(1899)] = 59396, + [SMALL_STATE(1900)] = 59454, + [SMALL_STATE(1901)] = 59512, + [SMALL_STATE(1902)] = 59548, + [SMALL_STATE(1903)] = 59596, + [SMALL_STATE(1904)] = 59632, + [SMALL_STATE(1905)] = 59685, + [SMALL_STATE(1906)] = 59722, + [SMALL_STATE(1907)] = 59767, + [SMALL_STATE(1908)] = 59812, + [SMALL_STATE(1909)] = 59849, + [SMALL_STATE(1910)] = 59886, + [SMALL_STATE(1911)] = 59931, + [SMALL_STATE(1912)] = 59968, + [SMALL_STATE(1913)] = 60008, + [SMALL_STATE(1914)] = 60048, + [SMALL_STATE(1915)] = 60088, + [SMALL_STATE(1916)] = 60128, + [SMALL_STATE(1917)] = 60161, + [SMALL_STATE(1918)] = 60196, + [SMALL_STATE(1919)] = 60229, + [SMALL_STATE(1920)] = 60262, + [SMALL_STATE(1921)] = 60293, + [SMALL_STATE(1922)] = 60328, + [SMALL_STATE(1923)] = 60363, + [SMALL_STATE(1924)] = 60396, + [SMALL_STATE(1925)] = 60431, + [SMALL_STATE(1926)] = 60475, + [SMALL_STATE(1927)] = 60507, + [SMALL_STATE(1928)] = 60567, + [SMALL_STATE(1929)] = 60599, + [SMALL_STATE(1930)] = 60631, + [SMALL_STATE(1931)] = 60663, + [SMALL_STATE(1932)] = 60723, + [SMALL_STATE(1933)] = 60769, + [SMALL_STATE(1934)] = 60801, + [SMALL_STATE(1935)] = 60833, + [SMALL_STATE(1936)] = 60866, + [SMALL_STATE(1937)] = 60899, + [SMALL_STATE(1938)] = 60932, + [SMALL_STATE(1939)] = 60961, + [SMALL_STATE(1940)] = 60990, + [SMALL_STATE(1941)] = 61043, + [SMALL_STATE(1942)] = 61074, + [SMALL_STATE(1943)] = 61103, + [SMALL_STATE(1944)] = 61146, + [SMALL_STATE(1945)] = 61177, + [SMALL_STATE(1946)] = 61206, + [SMALL_STATE(1947)] = 61237, + [SMALL_STATE(1948)] = 61268, + [SMALL_STATE(1949)] = 61297, + [SMALL_STATE(1950)] = 61328, + [SMALL_STATE(1951)] = 61361, + [SMALL_STATE(1952)] = 61390, + [SMALL_STATE(1953)] = 61443, + [SMALL_STATE(1954)] = 61472, + [SMALL_STATE(1955)] = 61501, + [SMALL_STATE(1956)] = 61532, + [SMALL_STATE(1957)] = 61563, + [SMALL_STATE(1958)] = 61596, + [SMALL_STATE(1959)] = 61627, + [SMALL_STATE(1960)] = 61656, + [SMALL_STATE(1961)] = 61689, + [SMALL_STATE(1962)] = 61744, + [SMALL_STATE(1963)] = 61785, + [SMALL_STATE(1964)] = 61813, + [SMALL_STATE(1965)] = 61843, + [SMALL_STATE(1966)] = 61871, + [SMALL_STATE(1967)] = 61899, + [SMALL_STATE(1968)] = 61927, + [SMALL_STATE(1969)] = 61955, + [SMALL_STATE(1970)] = 61983, + [SMALL_STATE(1971)] = 62011, + [SMALL_STATE(1972)] = 62039, + [SMALL_STATE(1973)] = 62067, + [SMALL_STATE(1974)] = 62095, + [SMALL_STATE(1975)] = 62123, + [SMALL_STATE(1976)] = 62151, + [SMALL_STATE(1977)] = 62179, + [SMALL_STATE(1978)] = 62207, + [SMALL_STATE(1979)] = 62235, + [SMALL_STATE(1980)] = 62263, + [SMALL_STATE(1981)] = 62291, + [SMALL_STATE(1982)] = 62319, + [SMALL_STATE(1983)] = 62347, + [SMALL_STATE(1984)] = 62375, + [SMALL_STATE(1985)] = 62403, + [SMALL_STATE(1986)] = 62431, + [SMALL_STATE(1987)] = 62459, + [SMALL_STATE(1988)] = 62487, + [SMALL_STATE(1989)] = 62517, + [SMALL_STATE(1990)] = 62545, + [SMALL_STATE(1991)] = 62589, + [SMALL_STATE(1992)] = 62617, + [SMALL_STATE(1993)] = 62645, + [SMALL_STATE(1994)] = 62676, + [SMALL_STATE(1995)] = 62727, + [SMALL_STATE(1996)] = 62762, + [SMALL_STATE(1997)] = 62791, + [SMALL_STATE(1998)] = 62821, + [SMALL_STATE(1999)] = 62853, + [SMALL_STATE(2000)] = 62885, + [SMALL_STATE(2001)] = 62917, + [SMALL_STATE(2002)] = 62949, + [SMALL_STATE(2003)] = 62981, + [SMALL_STATE(2004)] = 63013, + [SMALL_STATE(2005)] = 63045, + [SMALL_STATE(2006)] = 63077, + [SMALL_STATE(2007)] = 63109, + [SMALL_STATE(2008)] = 63141, + [SMALL_STATE(2009)] = 63173, + [SMALL_STATE(2010)] = 63217, + [SMALL_STATE(2011)] = 63249, + [SMALL_STATE(2012)] = 63277, + [SMALL_STATE(2013)] = 63305, + [SMALL_STATE(2014)] = 63342, + [SMALL_STATE(2015)] = 63372, + [SMALL_STATE(2016)] = 63400, + [SMALL_STATE(2017)] = 63428, + [SMALL_STATE(2018)] = 63456, + [SMALL_STATE(2019)] = 63484, + [SMALL_STATE(2020)] = 63522, + [SMALL_STATE(2021)] = 63546, + [SMALL_STATE(2022)] = 63574, + [SMALL_STATE(2023)] = 63604, + [SMALL_STATE(2024)] = 63642, + [SMALL_STATE(2025)] = 63680, + [SMALL_STATE(2026)] = 63704, + [SMALL_STATE(2027)] = 63732, + [SMALL_STATE(2028)] = 63760, + [SMALL_STATE(2029)] = 63798, + [SMALL_STATE(2030)] = 63826, + [SMALL_STATE(2031)] = 63850, + [SMALL_STATE(2032)] = 63884, + [SMALL_STATE(2033)] = 63922, + [SMALL_STATE(2034)] = 63960, + [SMALL_STATE(2035)] = 63990, + [SMALL_STATE(2036)] = 64018, + [SMALL_STATE(2037)] = 64046, + [SMALL_STATE(2038)] = 64070, + [SMALL_STATE(2039)] = 64094, + [SMALL_STATE(2040)] = 64132, + [SMALL_STATE(2041)] = 64170, + [SMALL_STATE(2042)] = 64200, + [SMALL_STATE(2043)] = 64228, + [SMALL_STATE(2044)] = 64256, + [SMALL_STATE(2045)] = 64294, + [SMALL_STATE(2046)] = 64328, + [SMALL_STATE(2047)] = 64351, + [SMALL_STATE(2048)] = 64382, + [SMALL_STATE(2049)] = 64423, + [SMALL_STATE(2050)] = 64464, + [SMALL_STATE(2051)] = 64487, + [SMALL_STATE(2052)] = 64510, + [SMALL_STATE(2053)] = 64533, + [SMALL_STATE(2054)] = 64556, + [SMALL_STATE(2055)] = 64579, + [SMALL_STATE(2056)] = 64602, + [SMALL_STATE(2057)] = 64625, + [SMALL_STATE(2058)] = 64662, + [SMALL_STATE(2059)] = 64697, + [SMALL_STATE(2060)] = 64732, + [SMALL_STATE(2061)] = 64755, + [SMALL_STATE(2062)] = 64790, + [SMALL_STATE(2063)] = 64813, + [SMALL_STATE(2064)] = 64836, + [SMALL_STATE(2065)] = 64859, + [SMALL_STATE(2066)] = 64882, + [SMALL_STATE(2067)] = 64905, + [SMALL_STATE(2068)] = 64928, + [SMALL_STATE(2069)] = 64951, + [SMALL_STATE(2070)] = 64974, + [SMALL_STATE(2071)] = 64997, + [SMALL_STATE(2072)] = 65020, + [SMALL_STATE(2073)] = 65051, + [SMALL_STATE(2074)] = 65074, + [SMALL_STATE(2075)] = 65097, + [SMALL_STATE(2076)] = 65120, + [SMALL_STATE(2077)] = 65161, + [SMALL_STATE(2078)] = 65192, + [SMALL_STATE(2079)] = 65229, + [SMALL_STATE(2080)] = 65252, + [SMALL_STATE(2081)] = 65275, + [SMALL_STATE(2082)] = 65298, + [SMALL_STATE(2083)] = 65335, + [SMALL_STATE(2084)] = 65366, + [SMALL_STATE(2085)] = 65389, + [SMALL_STATE(2086)] = 65412, + [SMALL_STATE(2087)] = 65435, + [SMALL_STATE(2088)] = 65458, + [SMALL_STATE(2089)] = 65481, + [SMALL_STATE(2090)] = 65504, + [SMALL_STATE(2091)] = 65537, + [SMALL_STATE(2092)] = 65560, + [SMALL_STATE(2093)] = 65583, + [SMALL_STATE(2094)] = 65624, + [SMALL_STATE(2095)] = 65662, + [SMALL_STATE(2096)] = 65698, + [SMALL_STATE(2097)] = 65730, + [SMALL_STATE(2098)] = 65762, + [SMALL_STATE(2099)] = 65794, + [SMALL_STATE(2100)] = 65828, + [SMALL_STATE(2101)] = 65866, + [SMALL_STATE(2102)] = 65904, + [SMALL_STATE(2103)] = 65932, + [SMALL_STATE(2104)] = 65970, + [SMALL_STATE(2105)] = 65994, + [SMALL_STATE(2106)] = 66030, + [SMALL_STATE(2107)] = 66064, + [SMALL_STATE(2108)] = 66096, + [SMALL_STATE(2109)] = 66134, + [SMALL_STATE(2110)] = 66158, + [SMALL_STATE(2111)] = 66190, + [SMALL_STATE(2112)] = 66218, + [SMALL_STATE(2113)] = 66242, + [SMALL_STATE(2114)] = 66270, + [SMALL_STATE(2115)] = 66298, + [SMALL_STATE(2116)] = 66334, + [SMALL_STATE(2117)] = 66370, + [SMALL_STATE(2118)] = 66404, + [SMALL_STATE(2119)] = 66442, + [SMALL_STATE(2120)] = 66466, + [SMALL_STATE(2121)] = 66500, + [SMALL_STATE(2122)] = 66528, + [SMALL_STATE(2123)] = 66562, + [SMALL_STATE(2124)] = 66600, + [SMALL_STATE(2125)] = 66638, + [SMALL_STATE(2126)] = 66662, + [SMALL_STATE(2127)] = 66700, + [SMALL_STATE(2128)] = 66736, + [SMALL_STATE(2129)] = 66772, + [SMALL_STATE(2130)] = 66804, + [SMALL_STATE(2131)] = 66842, + [SMALL_STATE(2132)] = 66868, + [SMALL_STATE(2133)] = 66906, + [SMALL_STATE(2134)] = 66944, + [SMALL_STATE(2135)] = 66976, + [SMALL_STATE(2136)] = 67014, + [SMALL_STATE(2137)] = 67050, + [SMALL_STATE(2138)] = 67078, + [SMALL_STATE(2139)] = 67114, + [SMALL_STATE(2140)] = 67146, + [SMALL_STATE(2141)] = 67178, + [SMALL_STATE(2142)] = 67206, + [SMALL_STATE(2143)] = 67244, + [SMALL_STATE(2144)] = 67280, + [SMALL_STATE(2145)] = 67316, + [SMALL_STATE(2146)] = 67354, + [SMALL_STATE(2147)] = 67386, + [SMALL_STATE(2148)] = 67418, + [SMALL_STATE(2149)] = 67444, + [SMALL_STATE(2150)] = 67470, + [SMALL_STATE(2151)] = 67496, + [SMALL_STATE(2152)] = 67528, + [SMALL_STATE(2153)] = 67566, + [SMALL_STATE(2154)] = 67593, + [SMALL_STATE(2155)] = 67628, + [SMALL_STATE(2156)] = 67653, + [SMALL_STATE(2157)] = 67688, + [SMALL_STATE(2158)] = 67713, + [SMALL_STATE(2159)] = 67748, + [SMALL_STATE(2160)] = 67783, + [SMALL_STATE(2161)] = 67818, + [SMALL_STATE(2162)] = 67853, + [SMALL_STATE(2163)] = 67888, + [SMALL_STATE(2164)] = 67923, + [SMALL_STATE(2165)] = 67958, + [SMALL_STATE(2166)] = 67993, + [SMALL_STATE(2167)] = 68028, + [SMALL_STATE(2168)] = 68063, + [SMALL_STATE(2169)] = 68092, + [SMALL_STATE(2170)] = 68127, + [SMALL_STATE(2171)] = 68162, + [SMALL_STATE(2172)] = 68197, + [SMALL_STATE(2173)] = 68232, + [SMALL_STATE(2174)] = 68265, + [SMALL_STATE(2175)] = 68298, + [SMALL_STATE(2176)] = 68333, + [SMALL_STATE(2177)] = 68358, + [SMALL_STATE(2178)] = 68393, + [SMALL_STATE(2179)] = 68424, + [SMALL_STATE(2180)] = 68457, + [SMALL_STATE(2181)] = 68478, + [SMALL_STATE(2182)] = 68511, + [SMALL_STATE(2183)] = 68532, + [SMALL_STATE(2184)] = 68553, + [SMALL_STATE(2185)] = 68574, + [SMALL_STATE(2186)] = 68595, + [SMALL_STATE(2187)] = 68630, + [SMALL_STATE(2188)] = 68665, + [SMALL_STATE(2189)] = 68696, + [SMALL_STATE(2190)] = 68729, + [SMALL_STATE(2191)] = 68762, + [SMALL_STATE(2192)] = 68797, + [SMALL_STATE(2193)] = 68830, + [SMALL_STATE(2194)] = 68865, + [SMALL_STATE(2195)] = 68898, + [SMALL_STATE(2196)] = 68933, + [SMALL_STATE(2197)] = 68968, + [SMALL_STATE(2198)] = 68989, + [SMALL_STATE(2199)] = 69024, + [SMALL_STATE(2200)] = 69045, + [SMALL_STATE(2201)] = 69080, + [SMALL_STATE(2202)] = 69115, + [SMALL_STATE(2203)] = 69150, + [SMALL_STATE(2204)] = 69185, + [SMALL_STATE(2205)] = 69206, + [SMALL_STATE(2206)] = 69241, + [SMALL_STATE(2207)] = 69276, + [SMALL_STATE(2208)] = 69311, + [SMALL_STATE(2209)] = 69346, + [SMALL_STATE(2210)] = 69381, + [SMALL_STATE(2211)] = 69414, + [SMALL_STATE(2212)] = 69449, + [SMALL_STATE(2213)] = 69484, + [SMALL_STATE(2214)] = 69519, + [SMALL_STATE(2215)] = 69554, + [SMALL_STATE(2216)] = 69586, + [SMALL_STATE(2217)] = 69618, + [SMALL_STATE(2218)] = 69640, + [SMALL_STATE(2219)] = 69662, + [SMALL_STATE(2220)] = 69684, + [SMALL_STATE(2221)] = 69712, + [SMALL_STATE(2222)] = 69738, + [SMALL_STATE(2223)] = 69770, + [SMALL_STATE(2224)] = 69802, + [SMALL_STATE(2225)] = 69828, + [SMALL_STATE(2226)] = 69860, + [SMALL_STATE(2227)] = 69890, + [SMALL_STATE(2228)] = 69922, + [SMALL_STATE(2229)] = 69954, + [SMALL_STATE(2230)] = 69984, + [SMALL_STATE(2231)] = 70014, + [SMALL_STATE(2232)] = 70042, + [SMALL_STATE(2233)] = 70072, + [SMALL_STATE(2234)] = 70102, + [SMALL_STATE(2235)] = 70134, + [SMALL_STATE(2236)] = 70160, + [SMALL_STATE(2237)] = 70188, + [SMALL_STATE(2238)] = 70220, + [SMALL_STATE(2239)] = 70250, + [SMALL_STATE(2240)] = 70282, + [SMALL_STATE(2241)] = 70314, + [SMALL_STATE(2242)] = 70346, + [SMALL_STATE(2243)] = 70378, + [SMALL_STATE(2244)] = 70400, + [SMALL_STATE(2245)] = 70428, + [SMALL_STATE(2246)] = 70456, + [SMALL_STATE(2247)] = 70482, + [SMALL_STATE(2248)] = 70514, + [SMALL_STATE(2249)] = 70546, + [SMALL_STATE(2250)] = 70578, + [SMALL_STATE(2251)] = 70610, + [SMALL_STATE(2252)] = 70642, + [SMALL_STATE(2253)] = 70674, + [SMALL_STATE(2254)] = 70706, + [SMALL_STATE(2255)] = 70728, + [SMALL_STATE(2256)] = 70760, + [SMALL_STATE(2257)] = 70790, + [SMALL_STATE(2258)] = 70822, + [SMALL_STATE(2259)] = 70852, + [SMALL_STATE(2260)] = 70882, + [SMALL_STATE(2261)] = 70912, + [SMALL_STATE(2262)] = 70944, + [SMALL_STATE(2263)] = 70966, + [SMALL_STATE(2264)] = 70998, + [SMALL_STATE(2265)] = 71027, + [SMALL_STATE(2266)] = 71054, + [SMALL_STATE(2267)] = 71083, + [SMALL_STATE(2268)] = 71112, + [SMALL_STATE(2269)] = 71141, + [SMALL_STATE(2270)] = 71170, + [SMALL_STATE(2271)] = 71199, + [SMALL_STATE(2272)] = 71228, + [SMALL_STATE(2273)] = 71257, + [SMALL_STATE(2274)] = 71286, + [SMALL_STATE(2275)] = 71315, + [SMALL_STATE(2276)] = 71338, + [SMALL_STATE(2277)] = 71361, + [SMALL_STATE(2278)] = 71390, + [SMALL_STATE(2279)] = 71419, + [SMALL_STATE(2280)] = 71448, + [SMALL_STATE(2281)] = 71475, + [SMALL_STATE(2282)] = 71498, + [SMALL_STATE(2283)] = 71527, + [SMALL_STATE(2284)] = 71552, + [SMALL_STATE(2285)] = 71573, + [SMALL_STATE(2286)] = 71602, + [SMALL_STATE(2287)] = 71631, + [SMALL_STATE(2288)] = 71654, + [SMALL_STATE(2289)] = 71683, + [SMALL_STATE(2290)] = 71712, + [SMALL_STATE(2291)] = 71739, + [SMALL_STATE(2292)] = 71768, + [SMALL_STATE(2293)] = 71791, + [SMALL_STATE(2294)] = 71814, + [SMALL_STATE(2295)] = 71843, + [SMALL_STATE(2296)] = 71872, + [SMALL_STATE(2297)] = 71901, + [SMALL_STATE(2298)] = 71924, + [SMALL_STATE(2299)] = 71953, + [SMALL_STATE(2300)] = 71982, + [SMALL_STATE(2301)] = 72011, + [SMALL_STATE(2302)] = 72040, + [SMALL_STATE(2303)] = 72069, + [SMALL_STATE(2304)] = 72098, + [SMALL_STATE(2305)] = 72127, + [SMALL_STATE(2306)] = 72156, + [SMALL_STATE(2307)] = 72177, + [SMALL_STATE(2308)] = 72200, + [SMALL_STATE(2309)] = 72229, + [SMALL_STATE(2310)] = 72254, + [SMALL_STATE(2311)] = 72283, + [SMALL_STATE(2312)] = 72312, + [SMALL_STATE(2313)] = 72335, + [SMALL_STATE(2314)] = 72364, + [SMALL_STATE(2315)] = 72393, + [SMALL_STATE(2316)] = 72420, + [SMALL_STATE(2317)] = 72449, + [SMALL_STATE(2318)] = 72478, + [SMALL_STATE(2319)] = 72507, + [SMALL_STATE(2320)] = 72530, + [SMALL_STATE(2321)] = 72559, + [SMALL_STATE(2322)] = 72588, + [SMALL_STATE(2323)] = 72617, + [SMALL_STATE(2324)] = 72646, + [SMALL_STATE(2325)] = 72675, + [SMALL_STATE(2326)] = 72702, + [SMALL_STATE(2327)] = 72731, + [SMALL_STATE(2328)] = 72752, + [SMALL_STATE(2329)] = 72777, + [SMALL_STATE(2330)] = 72806, + [SMALL_STATE(2331)] = 72835, + [SMALL_STATE(2332)] = 72858, + [SMALL_STATE(2333)] = 72887, + [SMALL_STATE(2334)] = 72914, + [SMALL_STATE(2335)] = 72943, + [SMALL_STATE(2336)] = 72968, + [SMALL_STATE(2337)] = 72989, + [SMALL_STATE(2338)] = 73018, + [SMALL_STATE(2339)] = 73047, + [SMALL_STATE(2340)] = 73068, + [SMALL_STATE(2341)] = 73091, + [SMALL_STATE(2342)] = 73120, + [SMALL_STATE(2343)] = 73149, + [SMALL_STATE(2344)] = 73178, + [SMALL_STATE(2345)] = 73207, + [SMALL_STATE(2346)] = 73228, + [SMALL_STATE(2347)] = 73247, + [SMALL_STATE(2348)] = 73270, + [SMALL_STATE(2349)] = 73299, + [SMALL_STATE(2350)] = 73328, + [SMALL_STATE(2351)] = 73357, + [SMALL_STATE(2352)] = 73378, + [SMALL_STATE(2353)] = 73396, + [SMALL_STATE(2354)] = 73422, + [SMALL_STATE(2355)] = 73446, + [SMALL_STATE(2356)] = 73472, + [SMALL_STATE(2357)] = 73498, + [SMALL_STATE(2358)] = 73524, + [SMALL_STATE(2359)] = 73550, + [SMALL_STATE(2360)] = 73568, + [SMALL_STATE(2361)] = 73594, + [SMALL_STATE(2362)] = 73620, + [SMALL_STATE(2363)] = 73644, + [SMALL_STATE(2364)] = 73662, + [SMALL_STATE(2365)] = 73688, + [SMALL_STATE(2366)] = 73706, + [SMALL_STATE(2367)] = 73732, + [SMALL_STATE(2368)] = 73758, + [SMALL_STATE(2369)] = 73784, + [SMALL_STATE(2370)] = 73810, + [SMALL_STATE(2371)] = 73828, + [SMALL_STATE(2372)] = 73854, + [SMALL_STATE(2373)] = 73876, + [SMALL_STATE(2374)] = 73900, + [SMALL_STATE(2375)] = 73926, + [SMALL_STATE(2376)] = 73946, + [SMALL_STATE(2377)] = 73964, + [SMALL_STATE(2378)] = 73982, + [SMALL_STATE(2379)] = 74008, + [SMALL_STATE(2380)] = 74034, + [SMALL_STATE(2381)] = 74052, + [SMALL_STATE(2382)] = 74070, + [SMALL_STATE(2383)] = 74096, + [SMALL_STATE(2384)] = 74114, + [SMALL_STATE(2385)] = 74132, + [SMALL_STATE(2386)] = 74158, + [SMALL_STATE(2387)] = 74184, + [SMALL_STATE(2388)] = 74210, + [SMALL_STATE(2389)] = 74236, + [SMALL_STATE(2390)] = 74260, + [SMALL_STATE(2391)] = 74286, + [SMALL_STATE(2392)] = 74306, + [SMALL_STATE(2393)] = 74332, + [SMALL_STATE(2394)] = 74352, + [SMALL_STATE(2395)] = 74378, + [SMALL_STATE(2396)] = 74400, + [SMALL_STATE(2397)] = 74426, + [SMALL_STATE(2398)] = 74444, + [SMALL_STATE(2399)] = 74462, + [SMALL_STATE(2400)] = 74480, + [SMALL_STATE(2401)] = 74498, + [SMALL_STATE(2402)] = 74516, + [SMALL_STATE(2403)] = 74538, + [SMALL_STATE(2404)] = 74564, + [SMALL_STATE(2405)] = 74590, + [SMALL_STATE(2406)] = 74616, + [SMALL_STATE(2407)] = 74642, + [SMALL_STATE(2408)] = 74668, + [SMALL_STATE(2409)] = 74690, + [SMALL_STATE(2410)] = 74710, + [SMALL_STATE(2411)] = 74734, + [SMALL_STATE(2412)] = 74758, + [SMALL_STATE(2413)] = 74782, + [SMALL_STATE(2414)] = 74800, + [SMALL_STATE(2415)] = 74826, + [SMALL_STATE(2416)] = 74852, + [SMALL_STATE(2417)] = 74878, + [SMALL_STATE(2418)] = 74904, + [SMALL_STATE(2419)] = 74930, + [SMALL_STATE(2420)] = 74954, + [SMALL_STATE(2421)] = 74972, + [SMALL_STATE(2422)] = 74996, + [SMALL_STATE(2423)] = 75022, + [SMALL_STATE(2424)] = 75048, + [SMALL_STATE(2425)] = 75070, + [SMALL_STATE(2426)] = 75088, + [SMALL_STATE(2427)] = 75110, + [SMALL_STATE(2428)] = 75132, + [SMALL_STATE(2429)] = 75154, + [SMALL_STATE(2430)] = 75176, + [SMALL_STATE(2431)] = 75202, + [SMALL_STATE(2432)] = 75226, + [SMALL_STATE(2433)] = 75244, + [SMALL_STATE(2434)] = 75268, + [SMALL_STATE(2435)] = 75286, + [SMALL_STATE(2436)] = 75312, + [SMALL_STATE(2437)] = 75338, + [SMALL_STATE(2438)] = 75360, + [SMALL_STATE(2439)] = 75386, + [SMALL_STATE(2440)] = 75412, + [SMALL_STATE(2441)] = 75438, + [SMALL_STATE(2442)] = 75464, + [SMALL_STATE(2443)] = 75490, + [SMALL_STATE(2444)] = 75514, + [SMALL_STATE(2445)] = 75532, + [SMALL_STATE(2446)] = 75551, + [SMALL_STATE(2447)] = 75570, + [SMALL_STATE(2448)] = 75593, + [SMALL_STATE(2449)] = 75612, + [SMALL_STATE(2450)] = 75635, + [SMALL_STATE(2451)] = 75658, + [SMALL_STATE(2452)] = 75677, + [SMALL_STATE(2453)] = 75696, + [SMALL_STATE(2454)] = 75719, + [SMALL_STATE(2455)] = 75742, + [SMALL_STATE(2456)] = 75763, + [SMALL_STATE(2457)] = 75786, + [SMALL_STATE(2458)] = 75809, + [SMALL_STATE(2459)] = 75832, + [SMALL_STATE(2460)] = 75855, + [SMALL_STATE(2461)] = 75878, + [SMALL_STATE(2462)] = 75901, + [SMALL_STATE(2463)] = 75924, + [SMALL_STATE(2464)] = 75947, + [SMALL_STATE(2465)] = 75970, + [SMALL_STATE(2466)] = 75993, + [SMALL_STATE(2467)] = 76016, + [SMALL_STATE(2468)] = 76039, + [SMALL_STATE(2469)] = 76062, + [SMALL_STATE(2470)] = 76085, + [SMALL_STATE(2471)] = 76108, + [SMALL_STATE(2472)] = 76131, + [SMALL_STATE(2473)] = 76154, + [SMALL_STATE(2474)] = 76177, + [SMALL_STATE(2475)] = 76200, + [SMALL_STATE(2476)] = 76219, + [SMALL_STATE(2477)] = 76242, + [SMALL_STATE(2478)] = 76265, + [SMALL_STATE(2479)] = 76288, + [SMALL_STATE(2480)] = 76311, + [SMALL_STATE(2481)] = 76330, + [SMALL_STATE(2482)] = 76353, + [SMALL_STATE(2483)] = 76374, + [SMALL_STATE(2484)] = 76397, + [SMALL_STATE(2485)] = 76418, + [SMALL_STATE(2486)] = 76441, + [SMALL_STATE(2487)] = 76462, + [SMALL_STATE(2488)] = 76485, + [SMALL_STATE(2489)] = 76508, + [SMALL_STATE(2490)] = 76529, + [SMALL_STATE(2491)] = 76546, + [SMALL_STATE(2492)] = 76563, + [SMALL_STATE(2493)] = 76586, + [SMALL_STATE(2494)] = 76609, + [SMALL_STATE(2495)] = 76632, + [SMALL_STATE(2496)] = 76655, + [SMALL_STATE(2497)] = 76678, + [SMALL_STATE(2498)] = 76701, + [SMALL_STATE(2499)] = 76724, + [SMALL_STATE(2500)] = 76747, + [SMALL_STATE(2501)] = 76770, + [SMALL_STATE(2502)] = 76793, + [SMALL_STATE(2503)] = 76816, + [SMALL_STATE(2504)] = 76839, + [SMALL_STATE(2505)] = 76862, + [SMALL_STATE(2506)] = 76885, + [SMALL_STATE(2507)] = 76908, + [SMALL_STATE(2508)] = 76931, + [SMALL_STATE(2509)] = 76954, + [SMALL_STATE(2510)] = 76977, + [SMALL_STATE(2511)] = 76998, + [SMALL_STATE(2512)] = 77021, + [SMALL_STATE(2513)] = 77040, + [SMALL_STATE(2514)] = 77059, + [SMALL_STATE(2515)] = 77078, + [SMALL_STATE(2516)] = 77101, + [SMALL_STATE(2517)] = 77124, + [SMALL_STATE(2518)] = 77147, + [SMALL_STATE(2519)] = 77170, + [SMALL_STATE(2520)] = 77193, + [SMALL_STATE(2521)] = 77216, + [SMALL_STATE(2522)] = 77239, + [SMALL_STATE(2523)] = 77262, + [SMALL_STATE(2524)] = 77285, + [SMALL_STATE(2525)] = 77306, + [SMALL_STATE(2526)] = 77329, + [SMALL_STATE(2527)] = 77352, + [SMALL_STATE(2528)] = 77375, + [SMALL_STATE(2529)] = 77396, + [SMALL_STATE(2530)] = 77417, + [SMALL_STATE(2531)] = 77440, + [SMALL_STATE(2532)] = 77463, + [SMALL_STATE(2533)] = 77486, + [SMALL_STATE(2534)] = 77505, + [SMALL_STATE(2535)] = 77528, + [SMALL_STATE(2536)] = 77547, + [SMALL_STATE(2537)] = 77570, + [SMALL_STATE(2538)] = 77591, + [SMALL_STATE(2539)] = 77614, + [SMALL_STATE(2540)] = 77637, + [SMALL_STATE(2541)] = 77660, + [SMALL_STATE(2542)] = 77683, + [SMALL_STATE(2543)] = 77704, + [SMALL_STATE(2544)] = 77727, + [SMALL_STATE(2545)] = 77748, + [SMALL_STATE(2546)] = 77771, + [SMALL_STATE(2547)] = 77794, + [SMALL_STATE(2548)] = 77817, + [SMALL_STATE(2549)] = 77840, + [SMALL_STATE(2550)] = 77863, + [SMALL_STATE(2551)] = 77886, + [SMALL_STATE(2552)] = 77909, + [SMALL_STATE(2553)] = 77932, + [SMALL_STATE(2554)] = 77955, + [SMALL_STATE(2555)] = 77978, + [SMALL_STATE(2556)] = 77997, + [SMALL_STATE(2557)] = 78020, + [SMALL_STATE(2558)] = 78043, + [SMALL_STATE(2559)] = 78066, + [SMALL_STATE(2560)] = 78089, + [SMALL_STATE(2561)] = 78112, + [SMALL_STATE(2562)] = 78135, + [SMALL_STATE(2563)] = 78158, + [SMALL_STATE(2564)] = 78177, + [SMALL_STATE(2565)] = 78200, + [SMALL_STATE(2566)] = 78223, + [SMALL_STATE(2567)] = 78246, + [SMALL_STATE(2568)] = 78269, + [SMALL_STATE(2569)] = 78292, + [SMALL_STATE(2570)] = 78315, + [SMALL_STATE(2571)] = 78338, + [SMALL_STATE(2572)] = 78359, + [SMALL_STATE(2573)] = 78382, + [SMALL_STATE(2574)] = 78405, + [SMALL_STATE(2575)] = 78428, + [SMALL_STATE(2576)] = 78451, + [SMALL_STATE(2577)] = 78474, + [SMALL_STATE(2578)] = 78497, + [SMALL_STATE(2579)] = 78520, + [SMALL_STATE(2580)] = 78541, + [SMALL_STATE(2581)] = 78564, + [SMALL_STATE(2582)] = 78587, + [SMALL_STATE(2583)] = 78610, + [SMALL_STATE(2584)] = 78633, + [SMALL_STATE(2585)] = 78656, + [SMALL_STATE(2586)] = 78679, + [SMALL_STATE(2587)] = 78702, + [SMALL_STATE(2588)] = 78725, + [SMALL_STATE(2589)] = 78748, + [SMALL_STATE(2590)] = 78771, + [SMALL_STATE(2591)] = 78794, + [SMALL_STATE(2592)] = 78817, + [SMALL_STATE(2593)] = 78834, + [SMALL_STATE(2594)] = 78855, + [SMALL_STATE(2595)] = 78876, + [SMALL_STATE(2596)] = 78899, + [SMALL_STATE(2597)] = 78922, + [SMALL_STATE(2598)] = 78945, + [SMALL_STATE(2599)] = 78964, + [SMALL_STATE(2600)] = 78987, + [SMALL_STATE(2601)] = 79008, + [SMALL_STATE(2602)] = 79031, + [SMALL_STATE(2603)] = 79052, + [SMALL_STATE(2604)] = 79075, + [SMALL_STATE(2605)] = 79098, + [SMALL_STATE(2606)] = 79121, + [SMALL_STATE(2607)] = 79144, + [SMALL_STATE(2608)] = 79165, + [SMALL_STATE(2609)] = 79188, + [SMALL_STATE(2610)] = 79211, + [SMALL_STATE(2611)] = 79234, + [SMALL_STATE(2612)] = 79257, + [SMALL_STATE(2613)] = 79280, + [SMALL_STATE(2614)] = 79303, + [SMALL_STATE(2615)] = 79326, + [SMALL_STATE(2616)] = 79345, + [SMALL_STATE(2617)] = 79368, + [SMALL_STATE(2618)] = 79387, + [SMALL_STATE(2619)] = 79410, + [SMALL_STATE(2620)] = 79433, + [SMALL_STATE(2621)] = 79452, + [SMALL_STATE(2622)] = 79473, + [SMALL_STATE(2623)] = 79496, + [SMALL_STATE(2624)] = 79519, + [SMALL_STATE(2625)] = 79542, + [SMALL_STATE(2626)] = 79565, + [SMALL_STATE(2627)] = 79586, + [SMALL_STATE(2628)] = 79609, + [SMALL_STATE(2629)] = 79632, + [SMALL_STATE(2630)] = 79653, + [SMALL_STATE(2631)] = 79676, + [SMALL_STATE(2632)] = 79695, + [SMALL_STATE(2633)] = 79716, + [SMALL_STATE(2634)] = 79739, + [SMALL_STATE(2635)] = 79762, + [SMALL_STATE(2636)] = 79783, + [SMALL_STATE(2637)] = 79806, + [SMALL_STATE(2638)] = 79827, + [SMALL_STATE(2639)] = 79846, + [SMALL_STATE(2640)] = 79869, + [SMALL_STATE(2641)] = 79892, + [SMALL_STATE(2642)] = 79915, + [SMALL_STATE(2643)] = 79938, + [SMALL_STATE(2644)] = 79959, + [SMALL_STATE(2645)] = 79978, + [SMALL_STATE(2646)] = 79997, + [SMALL_STATE(2647)] = 80020, + [SMALL_STATE(2648)] = 80043, + [SMALL_STATE(2649)] = 80066, + [SMALL_STATE(2650)] = 80089, + [SMALL_STATE(2651)] = 80112, + [SMALL_STATE(2652)] = 80135, + [SMALL_STATE(2653)] = 80158, + [SMALL_STATE(2654)] = 80181, + [SMALL_STATE(2655)] = 80204, + [SMALL_STATE(2656)] = 80227, + [SMALL_STATE(2657)] = 80246, + [SMALL_STATE(2658)] = 80269, + [SMALL_STATE(2659)] = 80292, + [SMALL_STATE(2660)] = 80315, + [SMALL_STATE(2661)] = 80338, + [SMALL_STATE(2662)] = 80361, + [SMALL_STATE(2663)] = 80384, + [SMALL_STATE(2664)] = 80407, + [SMALL_STATE(2665)] = 80426, + [SMALL_STATE(2666)] = 80449, + [SMALL_STATE(2667)] = 80472, + [SMALL_STATE(2668)] = 80489, + [SMALL_STATE(2669)] = 80512, + [SMALL_STATE(2670)] = 80535, + [SMALL_STATE(2671)] = 80558, + [SMALL_STATE(2672)] = 80581, + [SMALL_STATE(2673)] = 80604, + [SMALL_STATE(2674)] = 80627, + [SMALL_STATE(2675)] = 80650, + [SMALL_STATE(2676)] = 80673, + [SMALL_STATE(2677)] = 80696, + [SMALL_STATE(2678)] = 80719, + [SMALL_STATE(2679)] = 80739, + [SMALL_STATE(2680)] = 80757, + [SMALL_STATE(2681)] = 80777, + [SMALL_STATE(2682)] = 80795, + [SMALL_STATE(2683)] = 80815, + [SMALL_STATE(2684)] = 80835, + [SMALL_STATE(2685)] = 80855, + [SMALL_STATE(2686)] = 80875, + [SMALL_STATE(2687)] = 80895, + [SMALL_STATE(2688)] = 80915, + [SMALL_STATE(2689)] = 80935, + [SMALL_STATE(2690)] = 80951, + [SMALL_STATE(2691)] = 80967, + [SMALL_STATE(2692)] = 80987, + [SMALL_STATE(2693)] = 81007, + [SMALL_STATE(2694)] = 81027, + [SMALL_STATE(2695)] = 81047, + [SMALL_STATE(2696)] = 81065, + [SMALL_STATE(2697)] = 81083, + [SMALL_STATE(2698)] = 81099, + [SMALL_STATE(2699)] = 81115, + [SMALL_STATE(2700)] = 81131, + [SMALL_STATE(2701)] = 81147, + [SMALL_STATE(2702)] = 81163, + [SMALL_STATE(2703)] = 81183, + [SMALL_STATE(2704)] = 81203, + [SMALL_STATE(2705)] = 81223, + [SMALL_STATE(2706)] = 81239, + [SMALL_STATE(2707)] = 81259, + [SMALL_STATE(2708)] = 81279, + [SMALL_STATE(2709)] = 81299, + [SMALL_STATE(2710)] = 81319, + [SMALL_STATE(2711)] = 81339, + [SMALL_STATE(2712)] = 81359, + [SMALL_STATE(2713)] = 81379, + [SMALL_STATE(2714)] = 81399, + [SMALL_STATE(2715)] = 81419, + [SMALL_STATE(2716)] = 81439, + [SMALL_STATE(2717)] = 81459, + [SMALL_STATE(2718)] = 81479, + [SMALL_STATE(2719)] = 81499, + [SMALL_STATE(2720)] = 81519, + [SMALL_STATE(2721)] = 81535, + [SMALL_STATE(2722)] = 81555, + [SMALL_STATE(2723)] = 81571, + [SMALL_STATE(2724)] = 81591, + [SMALL_STATE(2725)] = 81607, + [SMALL_STATE(2726)] = 81627, + [SMALL_STATE(2727)] = 81643, + [SMALL_STATE(2728)] = 81663, + [SMALL_STATE(2729)] = 81683, + [SMALL_STATE(2730)] = 81703, + [SMALL_STATE(2731)] = 81723, + [SMALL_STATE(2732)] = 81743, + [SMALL_STATE(2733)] = 81763, + [SMALL_STATE(2734)] = 81783, + [SMALL_STATE(2735)] = 81799, + [SMALL_STATE(2736)] = 81815, + [SMALL_STATE(2737)] = 81835, + [SMALL_STATE(2738)] = 81855, + [SMALL_STATE(2739)] = 81875, + [SMALL_STATE(2740)] = 81891, + [SMALL_STATE(2741)] = 81911, + [SMALL_STATE(2742)] = 81927, + [SMALL_STATE(2743)] = 81943, + [SMALL_STATE(2744)] = 81963, + [SMALL_STATE(2745)] = 81979, + [SMALL_STATE(2746)] = 81997, + [SMALL_STATE(2747)] = 82017, + [SMALL_STATE(2748)] = 82037, + [SMALL_STATE(2749)] = 82057, + [SMALL_STATE(2750)] = 82075, + [SMALL_STATE(2751)] = 82095, + [SMALL_STATE(2752)] = 82115, + [SMALL_STATE(2753)] = 82133, + [SMALL_STATE(2754)] = 82149, + [SMALL_STATE(2755)] = 82169, + [SMALL_STATE(2756)] = 82187, + [SMALL_STATE(2757)] = 82205, + [SMALL_STATE(2758)] = 82223, + [SMALL_STATE(2759)] = 82241, + [SMALL_STATE(2760)] = 82259, + [SMALL_STATE(2761)] = 82279, + [SMALL_STATE(2762)] = 82297, + [SMALL_STATE(2763)] = 82313, + [SMALL_STATE(2764)] = 82333, + [SMALL_STATE(2765)] = 82351, + [SMALL_STATE(2766)] = 82371, + [SMALL_STATE(2767)] = 82391, + [SMALL_STATE(2768)] = 82411, + [SMALL_STATE(2769)] = 82427, + [SMALL_STATE(2770)] = 82443, + [SMALL_STATE(2771)] = 82463, + [SMALL_STATE(2772)] = 82479, + [SMALL_STATE(2773)] = 82495, + [SMALL_STATE(2774)] = 82515, + [SMALL_STATE(2775)] = 82535, + [SMALL_STATE(2776)] = 82555, + [SMALL_STATE(2777)] = 82575, + [SMALL_STATE(2778)] = 82595, + [SMALL_STATE(2779)] = 82615, + [SMALL_STATE(2780)] = 82635, + [SMALL_STATE(2781)] = 82655, + [SMALL_STATE(2782)] = 82671, + [SMALL_STATE(2783)] = 82691, + [SMALL_STATE(2784)] = 82711, + [SMALL_STATE(2785)] = 82727, + [SMALL_STATE(2786)] = 82745, + [SMALL_STATE(2787)] = 82761, + [SMALL_STATE(2788)] = 82777, + [SMALL_STATE(2789)] = 82797, + [SMALL_STATE(2790)] = 82817, + [SMALL_STATE(2791)] = 82837, + [SMALL_STATE(2792)] = 82857, + [SMALL_STATE(2793)] = 82873, + [SMALL_STATE(2794)] = 82891, + [SMALL_STATE(2795)] = 82911, + [SMALL_STATE(2796)] = 82931, + [SMALL_STATE(2797)] = 82949, + [SMALL_STATE(2798)] = 82969, + [SMALL_STATE(2799)] = 82987, + [SMALL_STATE(2800)] = 83007, + [SMALL_STATE(2801)] = 83023, + [SMALL_STATE(2802)] = 83043, + [SMALL_STATE(2803)] = 83061, + [SMALL_STATE(2804)] = 83079, + [SMALL_STATE(2805)] = 83095, + [SMALL_STATE(2806)] = 83115, + [SMALL_STATE(2807)] = 83133, + [SMALL_STATE(2808)] = 83153, + [SMALL_STATE(2809)] = 83173, + [SMALL_STATE(2810)] = 83193, + [SMALL_STATE(2811)] = 83211, + [SMALL_STATE(2812)] = 83231, + [SMALL_STATE(2813)] = 83251, + [SMALL_STATE(2814)] = 83271, + [SMALL_STATE(2815)] = 83291, + [SMALL_STATE(2816)] = 83311, + [SMALL_STATE(2817)] = 83329, + [SMALL_STATE(2818)] = 83349, + [SMALL_STATE(2819)] = 83369, + [SMALL_STATE(2820)] = 83389, + [SMALL_STATE(2821)] = 83409, + [SMALL_STATE(2822)] = 83429, + [SMALL_STATE(2823)] = 83449, + [SMALL_STATE(2824)] = 83467, + [SMALL_STATE(2825)] = 83487, + [SMALL_STATE(2826)] = 83503, + [SMALL_STATE(2827)] = 83523, + [SMALL_STATE(2828)] = 83539, + [SMALL_STATE(2829)] = 83559, + [SMALL_STATE(2830)] = 83579, + [SMALL_STATE(2831)] = 83595, + [SMALL_STATE(2832)] = 83615, + [SMALL_STATE(2833)] = 83635, + [SMALL_STATE(2834)] = 83655, + [SMALL_STATE(2835)] = 83675, + [SMALL_STATE(2836)] = 83691, + [SMALL_STATE(2837)] = 83711, + [SMALL_STATE(2838)] = 83731, + [SMALL_STATE(2839)] = 83751, + [SMALL_STATE(2840)] = 83771, + [SMALL_STATE(2841)] = 83791, + [SMALL_STATE(2842)] = 83811, + [SMALL_STATE(2843)] = 83829, + [SMALL_STATE(2844)] = 83849, + [SMALL_STATE(2845)] = 83867, + [SMALL_STATE(2846)] = 83887, + [SMALL_STATE(2847)] = 83905, + [SMALL_STATE(2848)] = 83923, + [SMALL_STATE(2849)] = 83943, + [SMALL_STATE(2850)] = 83963, + [SMALL_STATE(2851)] = 83981, + [SMALL_STATE(2852)] = 84001, + [SMALL_STATE(2853)] = 84021, + [SMALL_STATE(2854)] = 84041, + [SMALL_STATE(2855)] = 84061, + [SMALL_STATE(2856)] = 84081, + [SMALL_STATE(2857)] = 84099, + [SMALL_STATE(2858)] = 84119, + [SMALL_STATE(2859)] = 84139, + [SMALL_STATE(2860)] = 84157, + [SMALL_STATE(2861)] = 84177, + [SMALL_STATE(2862)] = 84193, + [SMALL_STATE(2863)] = 84213, + [SMALL_STATE(2864)] = 84233, + [SMALL_STATE(2865)] = 84249, + [SMALL_STATE(2866)] = 84269, + [SMALL_STATE(2867)] = 84289, + [SMALL_STATE(2868)] = 84307, + [SMALL_STATE(2869)] = 84327, + [SMALL_STATE(2870)] = 84343, + [SMALL_STATE(2871)] = 84363, + [SMALL_STATE(2872)] = 84383, + [SMALL_STATE(2873)] = 84403, + [SMALL_STATE(2874)] = 84421, + [SMALL_STATE(2875)] = 84441, + [SMALL_STATE(2876)] = 84459, + [SMALL_STATE(2877)] = 84479, + [SMALL_STATE(2878)] = 84499, + [SMALL_STATE(2879)] = 84519, + [SMALL_STATE(2880)] = 84539, + [SMALL_STATE(2881)] = 84559, + [SMALL_STATE(2882)] = 84579, + [SMALL_STATE(2883)] = 84597, + [SMALL_STATE(2884)] = 84617, + [SMALL_STATE(2885)] = 84637, + [SMALL_STATE(2886)] = 84657, + [SMALL_STATE(2887)] = 84677, + [SMALL_STATE(2888)] = 84697, + [SMALL_STATE(2889)] = 84717, + [SMALL_STATE(2890)] = 84735, + [SMALL_STATE(2891)] = 84751, + [SMALL_STATE(2892)] = 84767, + [SMALL_STATE(2893)] = 84783, + [SMALL_STATE(2894)] = 84803, + [SMALL_STATE(2895)] = 84819, + [SMALL_STATE(2896)] = 84835, + [SMALL_STATE(2897)] = 84855, + [SMALL_STATE(2898)] = 84875, + [SMALL_STATE(2899)] = 84893, + [SMALL_STATE(2900)] = 84913, + [SMALL_STATE(2901)] = 84933, + [SMALL_STATE(2902)] = 84953, + [SMALL_STATE(2903)] = 84971, + [SMALL_STATE(2904)] = 84991, + [SMALL_STATE(2905)] = 85007, + [SMALL_STATE(2906)] = 85027, + [SMALL_STATE(2907)] = 85047, + [SMALL_STATE(2908)] = 85065, + [SMALL_STATE(2909)] = 85085, + [SMALL_STATE(2910)] = 85105, + [SMALL_STATE(2911)] = 85123, + [SMALL_STATE(2912)] = 85143, + [SMALL_STATE(2913)] = 85159, + [SMALL_STATE(2914)] = 85179, + [SMALL_STATE(2915)] = 85195, + [SMALL_STATE(2916)] = 85215, + [SMALL_STATE(2917)] = 85231, + [SMALL_STATE(2918)] = 85247, + [SMALL_STATE(2919)] = 85263, + [SMALL_STATE(2920)] = 85279, + [SMALL_STATE(2921)] = 85295, + [SMALL_STATE(2922)] = 85313, + [SMALL_STATE(2923)] = 85333, + [SMALL_STATE(2924)] = 85349, + [SMALL_STATE(2925)] = 85367, + [SMALL_STATE(2926)] = 85387, + [SMALL_STATE(2927)] = 85407, + [SMALL_STATE(2928)] = 85427, + [SMALL_STATE(2929)] = 85447, + [SMALL_STATE(2930)] = 85467, + [SMALL_STATE(2931)] = 85487, + [SMALL_STATE(2932)] = 85507, + [SMALL_STATE(2933)] = 85527, + [SMALL_STATE(2934)] = 85547, + [SMALL_STATE(2935)] = 85567, + [SMALL_STATE(2936)] = 85587, + [SMALL_STATE(2937)] = 85605, + [SMALL_STATE(2938)] = 85625, + [SMALL_STATE(2939)] = 85641, + [SMALL_STATE(2940)] = 85661, + [SMALL_STATE(2941)] = 85681, + [SMALL_STATE(2942)] = 85701, + [SMALL_STATE(2943)] = 85721, + [SMALL_STATE(2944)] = 85741, + [SMALL_STATE(2945)] = 85759, + [SMALL_STATE(2946)] = 85779, + [SMALL_STATE(2947)] = 85799, + [SMALL_STATE(2948)] = 85819, + [SMALL_STATE(2949)] = 85839, + [SMALL_STATE(2950)] = 85859, + [SMALL_STATE(2951)] = 85879, + [SMALL_STATE(2952)] = 85895, + [SMALL_STATE(2953)] = 85915, + [SMALL_STATE(2954)] = 85935, + [SMALL_STATE(2955)] = 85955, + [SMALL_STATE(2956)] = 85971, + [SMALL_STATE(2957)] = 85991, + [SMALL_STATE(2958)] = 86011, + [SMALL_STATE(2959)] = 86031, + [SMALL_STATE(2960)] = 86051, + [SMALL_STATE(2961)] = 86069, + [SMALL_STATE(2962)] = 86085, + [SMALL_STATE(2963)] = 86103, + [SMALL_STATE(2964)] = 86121, + [SMALL_STATE(2965)] = 86138, + [SMALL_STATE(2966)] = 86155, + [SMALL_STATE(2967)] = 86170, + [SMALL_STATE(2968)] = 86185, + [SMALL_STATE(2969)] = 86202, + [SMALL_STATE(2970)] = 86219, + [SMALL_STATE(2971)] = 86236, + [SMALL_STATE(2972)] = 86253, + [SMALL_STATE(2973)] = 86270, + [SMALL_STATE(2974)] = 86287, + [SMALL_STATE(2975)] = 86304, + [SMALL_STATE(2976)] = 86321, + [SMALL_STATE(2977)] = 86338, + [SMALL_STATE(2978)] = 86355, + [SMALL_STATE(2979)] = 86370, + [SMALL_STATE(2980)] = 86387, + [SMALL_STATE(2981)] = 86404, + [SMALL_STATE(2982)] = 86421, + [SMALL_STATE(2983)] = 86438, + [SMALL_STATE(2984)] = 86453, + [SMALL_STATE(2985)] = 86470, + [SMALL_STATE(2986)] = 86487, + [SMALL_STATE(2987)] = 86504, + [SMALL_STATE(2988)] = 86521, + [SMALL_STATE(2989)] = 86538, + [SMALL_STATE(2990)] = 86555, + [SMALL_STATE(2991)] = 86572, + [SMALL_STATE(2992)] = 86589, + [SMALL_STATE(2993)] = 86606, + [SMALL_STATE(2994)] = 86623, + [SMALL_STATE(2995)] = 86640, + [SMALL_STATE(2996)] = 86657, + [SMALL_STATE(2997)] = 86672, + [SMALL_STATE(2998)] = 86689, + [SMALL_STATE(2999)] = 86706, + [SMALL_STATE(3000)] = 86723, + [SMALL_STATE(3001)] = 86740, + [SMALL_STATE(3002)] = 86755, + [SMALL_STATE(3003)] = 86772, + [SMALL_STATE(3004)] = 86789, + [SMALL_STATE(3005)] = 86806, + [SMALL_STATE(3006)] = 86823, + [SMALL_STATE(3007)] = 86838, + [SMALL_STATE(3008)] = 86853, + [SMALL_STATE(3009)] = 86870, + [SMALL_STATE(3010)] = 86887, + [SMALL_STATE(3011)] = 86904, + [SMALL_STATE(3012)] = 86921, + [SMALL_STATE(3013)] = 86936, + [SMALL_STATE(3014)] = 86953, + [SMALL_STATE(3015)] = 86970, + [SMALL_STATE(3016)] = 86987, + [SMALL_STATE(3017)] = 87004, + [SMALL_STATE(3018)] = 87021, + [SMALL_STATE(3019)] = 87038, + [SMALL_STATE(3020)] = 87053, + [SMALL_STATE(3021)] = 87070, + [SMALL_STATE(3022)] = 87085, + [SMALL_STATE(3023)] = 87102, + [SMALL_STATE(3024)] = 87119, + [SMALL_STATE(3025)] = 87134, + [SMALL_STATE(3026)] = 87151, + [SMALL_STATE(3027)] = 87168, + [SMALL_STATE(3028)] = 87185, + [SMALL_STATE(3029)] = 87200, + [SMALL_STATE(3030)] = 87215, + [SMALL_STATE(3031)] = 87232, + [SMALL_STATE(3032)] = 87249, + [SMALL_STATE(3033)] = 87266, + [SMALL_STATE(3034)] = 87283, + [SMALL_STATE(3035)] = 87298, + [SMALL_STATE(3036)] = 87315, + [SMALL_STATE(3037)] = 87332, + [SMALL_STATE(3038)] = 87349, + [SMALL_STATE(3039)] = 87366, + [SMALL_STATE(3040)] = 87381, + [SMALL_STATE(3041)] = 87398, + [SMALL_STATE(3042)] = 87413, + [SMALL_STATE(3043)] = 87430, + [SMALL_STATE(3044)] = 87445, + [SMALL_STATE(3045)] = 87462, + [SMALL_STATE(3046)] = 87479, + [SMALL_STATE(3047)] = 87496, + [SMALL_STATE(3048)] = 87513, + [SMALL_STATE(3049)] = 87530, + [SMALL_STATE(3050)] = 87547, + [SMALL_STATE(3051)] = 87564, + [SMALL_STATE(3052)] = 87581, + [SMALL_STATE(3053)] = 87598, + [SMALL_STATE(3054)] = 87615, + [SMALL_STATE(3055)] = 87632, + [SMALL_STATE(3056)] = 87649, + [SMALL_STATE(3057)] = 87664, + [SMALL_STATE(3058)] = 87681, + [SMALL_STATE(3059)] = 87698, + [SMALL_STATE(3060)] = 87715, + [SMALL_STATE(3061)] = 87732, + [SMALL_STATE(3062)] = 87749, + [SMALL_STATE(3063)] = 87766, + [SMALL_STATE(3064)] = 87781, + [SMALL_STATE(3065)] = 87798, + [SMALL_STATE(3066)] = 87813, + [SMALL_STATE(3067)] = 87830, + [SMALL_STATE(3068)] = 87845, + [SMALL_STATE(3069)] = 87862, + [SMALL_STATE(3070)] = 87879, + [SMALL_STATE(3071)] = 87894, + [SMALL_STATE(3072)] = 87909, + [SMALL_STATE(3073)] = 87926, + [SMALL_STATE(3074)] = 87943, + [SMALL_STATE(3075)] = 87960, + [SMALL_STATE(3076)] = 87977, + [SMALL_STATE(3077)] = 87992, + [SMALL_STATE(3078)] = 88009, + [SMALL_STATE(3079)] = 88024, + [SMALL_STATE(3080)] = 88041, + [SMALL_STATE(3081)] = 88058, + [SMALL_STATE(3082)] = 88075, + [SMALL_STATE(3083)] = 88092, + [SMALL_STATE(3084)] = 88109, + [SMALL_STATE(3085)] = 88126, + [SMALL_STATE(3086)] = 88143, + [SMALL_STATE(3087)] = 88158, + [SMALL_STATE(3088)] = 88175, + [SMALL_STATE(3089)] = 88192, + [SMALL_STATE(3090)] = 88209, + [SMALL_STATE(3091)] = 88226, + [SMALL_STATE(3092)] = 88243, + [SMALL_STATE(3093)] = 88260, + [SMALL_STATE(3094)] = 88277, + [SMALL_STATE(3095)] = 88294, + [SMALL_STATE(3096)] = 88311, + [SMALL_STATE(3097)] = 88328, + [SMALL_STATE(3098)] = 88345, + [SMALL_STATE(3099)] = 88362, + [SMALL_STATE(3100)] = 88379, + [SMALL_STATE(3101)] = 88396, + [SMALL_STATE(3102)] = 88413, + [SMALL_STATE(3103)] = 88430, + [SMALL_STATE(3104)] = 88447, + [SMALL_STATE(3105)] = 88464, + [SMALL_STATE(3106)] = 88479, + [SMALL_STATE(3107)] = 88496, + [SMALL_STATE(3108)] = 88513, + [SMALL_STATE(3109)] = 88530, + [SMALL_STATE(3110)] = 88547, + [SMALL_STATE(3111)] = 88564, + [SMALL_STATE(3112)] = 88581, + [SMALL_STATE(3113)] = 88596, + [SMALL_STATE(3114)] = 88611, + [SMALL_STATE(3115)] = 88628, + [SMALL_STATE(3116)] = 88645, + [SMALL_STATE(3117)] = 88662, + [SMALL_STATE(3118)] = 88677, + [SMALL_STATE(3119)] = 88692, + [SMALL_STATE(3120)] = 88709, + [SMALL_STATE(3121)] = 88726, + [SMALL_STATE(3122)] = 88743, + [SMALL_STATE(3123)] = 88760, + [SMALL_STATE(3124)] = 88777, + [SMALL_STATE(3125)] = 88792, + [SMALL_STATE(3126)] = 88809, + [SMALL_STATE(3127)] = 88824, + [SMALL_STATE(3128)] = 88839, + [SMALL_STATE(3129)] = 88856, + [SMALL_STATE(3130)] = 88873, + [SMALL_STATE(3131)] = 88888, + [SMALL_STATE(3132)] = 88905, + [SMALL_STATE(3133)] = 88922, + [SMALL_STATE(3134)] = 88939, + [SMALL_STATE(3135)] = 88956, + [SMALL_STATE(3136)] = 88973, + [SMALL_STATE(3137)] = 88990, + [SMALL_STATE(3138)] = 89007, + [SMALL_STATE(3139)] = 89024, + [SMALL_STATE(3140)] = 89041, + [SMALL_STATE(3141)] = 89058, + [SMALL_STATE(3142)] = 89075, + [SMALL_STATE(3143)] = 89092, + [SMALL_STATE(3144)] = 89109, + [SMALL_STATE(3145)] = 89126, + [SMALL_STATE(3146)] = 89143, + [SMALL_STATE(3147)] = 89160, + [SMALL_STATE(3148)] = 89177, + [SMALL_STATE(3149)] = 89194, + [SMALL_STATE(3150)] = 89211, + [SMALL_STATE(3151)] = 89228, + [SMALL_STATE(3152)] = 89245, + [SMALL_STATE(3153)] = 89262, + [SMALL_STATE(3154)] = 89279, + [SMALL_STATE(3155)] = 89296, + [SMALL_STATE(3156)] = 89313, + [SMALL_STATE(3157)] = 89330, + [SMALL_STATE(3158)] = 89347, + [SMALL_STATE(3159)] = 89364, + [SMALL_STATE(3160)] = 89381, + [SMALL_STATE(3161)] = 89398, + [SMALL_STATE(3162)] = 89415, + [SMALL_STATE(3163)] = 89432, + [SMALL_STATE(3164)] = 89447, + [SMALL_STATE(3165)] = 89462, + [SMALL_STATE(3166)] = 89479, + [SMALL_STATE(3167)] = 89496, + [SMALL_STATE(3168)] = 89513, + [SMALL_STATE(3169)] = 89530, + [SMALL_STATE(3170)] = 89547, + [SMALL_STATE(3171)] = 89564, + [SMALL_STATE(3172)] = 89581, + [SMALL_STATE(3173)] = 89598, + [SMALL_STATE(3174)] = 89615, + [SMALL_STATE(3175)] = 89632, + [SMALL_STATE(3176)] = 89649, + [SMALL_STATE(3177)] = 89666, + [SMALL_STATE(3178)] = 89683, + [SMALL_STATE(3179)] = 89698, + [SMALL_STATE(3180)] = 89713, + [SMALL_STATE(3181)] = 89730, + [SMALL_STATE(3182)] = 89747, + [SMALL_STATE(3183)] = 89764, + [SMALL_STATE(3184)] = 89781, + [SMALL_STATE(3185)] = 89796, + [SMALL_STATE(3186)] = 89813, + [SMALL_STATE(3187)] = 89830, + [SMALL_STATE(3188)] = 89847, + [SMALL_STATE(3189)] = 89864, + [SMALL_STATE(3190)] = 89881, + [SMALL_STATE(3191)] = 89898, + [SMALL_STATE(3192)] = 89915, + [SMALL_STATE(3193)] = 89932, + [SMALL_STATE(3194)] = 89949, + [SMALL_STATE(3195)] = 89966, + [SMALL_STATE(3196)] = 89983, + [SMALL_STATE(3197)] = 90000, + [SMALL_STATE(3198)] = 90015, + [SMALL_STATE(3199)] = 90032, + [SMALL_STATE(3200)] = 90049, + [SMALL_STATE(3201)] = 90064, + [SMALL_STATE(3202)] = 90081, + [SMALL_STATE(3203)] = 90098, + [SMALL_STATE(3204)] = 90115, + [SMALL_STATE(3205)] = 90132, + [SMALL_STATE(3206)] = 90149, + [SMALL_STATE(3207)] = 90166, + [SMALL_STATE(3208)] = 90183, + [SMALL_STATE(3209)] = 90200, + [SMALL_STATE(3210)] = 90217, + [SMALL_STATE(3211)] = 90234, + [SMALL_STATE(3212)] = 90251, + [SMALL_STATE(3213)] = 90268, + [SMALL_STATE(3214)] = 90285, + [SMALL_STATE(3215)] = 90302, + [SMALL_STATE(3216)] = 90319, + [SMALL_STATE(3217)] = 90336, + [SMALL_STATE(3218)] = 90353, + [SMALL_STATE(3219)] = 90370, + [SMALL_STATE(3220)] = 90387, + [SMALL_STATE(3221)] = 90404, + [SMALL_STATE(3222)] = 90421, + [SMALL_STATE(3223)] = 90438, + [SMALL_STATE(3224)] = 90455, + [SMALL_STATE(3225)] = 90469, + [SMALL_STATE(3226)] = 90483, + [SMALL_STATE(3227)] = 90497, + [SMALL_STATE(3228)] = 90511, + [SMALL_STATE(3229)] = 90525, + [SMALL_STATE(3230)] = 90539, + [SMALL_STATE(3231)] = 90553, + [SMALL_STATE(3232)] = 90567, + [SMALL_STATE(3233)] = 90581, + [SMALL_STATE(3234)] = 90595, + [SMALL_STATE(3235)] = 90609, + [SMALL_STATE(3236)] = 90623, + [SMALL_STATE(3237)] = 90637, + [SMALL_STATE(3238)] = 90651, + [SMALL_STATE(3239)] = 90665, + [SMALL_STATE(3240)] = 90679, + [SMALL_STATE(3241)] = 90693, + [SMALL_STATE(3242)] = 90707, + [SMALL_STATE(3243)] = 90721, + [SMALL_STATE(3244)] = 90735, + [SMALL_STATE(3245)] = 90749, + [SMALL_STATE(3246)] = 90763, + [SMALL_STATE(3247)] = 90777, + [SMALL_STATE(3248)] = 90791, + [SMALL_STATE(3249)] = 90805, + [SMALL_STATE(3250)] = 90819, + [SMALL_STATE(3251)] = 90833, + [SMALL_STATE(3252)] = 90847, + [SMALL_STATE(3253)] = 90861, + [SMALL_STATE(3254)] = 90875, + [SMALL_STATE(3255)] = 90889, + [SMALL_STATE(3256)] = 90903, + [SMALL_STATE(3257)] = 90917, + [SMALL_STATE(3258)] = 90931, + [SMALL_STATE(3259)] = 90945, + [SMALL_STATE(3260)] = 90959, + [SMALL_STATE(3261)] = 90973, + [SMALL_STATE(3262)] = 90987, + [SMALL_STATE(3263)] = 91001, + [SMALL_STATE(3264)] = 91015, + [SMALL_STATE(3265)] = 91029, + [SMALL_STATE(3266)] = 91043, + [SMALL_STATE(3267)] = 91057, + [SMALL_STATE(3268)] = 91071, + [SMALL_STATE(3269)] = 91085, + [SMALL_STATE(3270)] = 91099, + [SMALL_STATE(3271)] = 91113, + [SMALL_STATE(3272)] = 91127, + [SMALL_STATE(3273)] = 91141, + [SMALL_STATE(3274)] = 91155, + [SMALL_STATE(3275)] = 91169, + [SMALL_STATE(3276)] = 91183, + [SMALL_STATE(3277)] = 91197, + [SMALL_STATE(3278)] = 91211, + [SMALL_STATE(3279)] = 91225, + [SMALL_STATE(3280)] = 91239, + [SMALL_STATE(3281)] = 91253, + [SMALL_STATE(3282)] = 91267, + [SMALL_STATE(3283)] = 91281, + [SMALL_STATE(3284)] = 91295, + [SMALL_STATE(3285)] = 91309, + [SMALL_STATE(3286)] = 91323, + [SMALL_STATE(3287)] = 91337, + [SMALL_STATE(3288)] = 91351, + [SMALL_STATE(3289)] = 91365, + [SMALL_STATE(3290)] = 91379, + [SMALL_STATE(3291)] = 91393, + [SMALL_STATE(3292)] = 91407, + [SMALL_STATE(3293)] = 91421, + [SMALL_STATE(3294)] = 91435, + [SMALL_STATE(3295)] = 91449, + [SMALL_STATE(3296)] = 91463, + [SMALL_STATE(3297)] = 91477, + [SMALL_STATE(3298)] = 91491, + [SMALL_STATE(3299)] = 91505, + [SMALL_STATE(3300)] = 91519, + [SMALL_STATE(3301)] = 91533, + [SMALL_STATE(3302)] = 91547, + [SMALL_STATE(3303)] = 91561, + [SMALL_STATE(3304)] = 91575, + [SMALL_STATE(3305)] = 91589, + [SMALL_STATE(3306)] = 91603, + [SMALL_STATE(3307)] = 91617, + [SMALL_STATE(3308)] = 91631, + [SMALL_STATE(3309)] = 91645, + [SMALL_STATE(3310)] = 91659, + [SMALL_STATE(3311)] = 91673, + [SMALL_STATE(3312)] = 91687, + [SMALL_STATE(3313)] = 91701, + [SMALL_STATE(3314)] = 91715, + [SMALL_STATE(3315)] = 91729, + [SMALL_STATE(3316)] = 91743, + [SMALL_STATE(3317)] = 91757, + [SMALL_STATE(3318)] = 91771, + [SMALL_STATE(3319)] = 91785, + [SMALL_STATE(3320)] = 91799, + [SMALL_STATE(3321)] = 91813, + [SMALL_STATE(3322)] = 91827, + [SMALL_STATE(3323)] = 91841, + [SMALL_STATE(3324)] = 91855, + [SMALL_STATE(3325)] = 91869, + [SMALL_STATE(3326)] = 91883, + [SMALL_STATE(3327)] = 91897, + [SMALL_STATE(3328)] = 91911, + [SMALL_STATE(3329)] = 91925, + [SMALL_STATE(3330)] = 91939, + [SMALL_STATE(3331)] = 91953, + [SMALL_STATE(3332)] = 91967, + [SMALL_STATE(3333)] = 91981, + [SMALL_STATE(3334)] = 91995, + [SMALL_STATE(3335)] = 92009, + [SMALL_STATE(3336)] = 92023, + [SMALL_STATE(3337)] = 92037, + [SMALL_STATE(3338)] = 92051, + [SMALL_STATE(3339)] = 92065, + [SMALL_STATE(3340)] = 92079, + [SMALL_STATE(3341)] = 92093, + [SMALL_STATE(3342)] = 92107, + [SMALL_STATE(3343)] = 92121, + [SMALL_STATE(3344)] = 92135, + [SMALL_STATE(3345)] = 92149, + [SMALL_STATE(3346)] = 92163, + [SMALL_STATE(3347)] = 92177, + [SMALL_STATE(3348)] = 92191, + [SMALL_STATE(3349)] = 92205, + [SMALL_STATE(3350)] = 92219, + [SMALL_STATE(3351)] = 92233, + [SMALL_STATE(3352)] = 92247, + [SMALL_STATE(3353)] = 92261, + [SMALL_STATE(3354)] = 92275, + [SMALL_STATE(3355)] = 92289, + [SMALL_STATE(3356)] = 92303, + [SMALL_STATE(3357)] = 92317, + [SMALL_STATE(3358)] = 92331, + [SMALL_STATE(3359)] = 92345, + [SMALL_STATE(3360)] = 92359, + [SMALL_STATE(3361)] = 92373, + [SMALL_STATE(3362)] = 92387, + [SMALL_STATE(3363)] = 92401, + [SMALL_STATE(3364)] = 92415, + [SMALL_STATE(3365)] = 92429, + [SMALL_STATE(3366)] = 92443, + [SMALL_STATE(3367)] = 92457, + [SMALL_STATE(3368)] = 92471, + [SMALL_STATE(3369)] = 92485, + [SMALL_STATE(3370)] = 92499, + [SMALL_STATE(3371)] = 92513, + [SMALL_STATE(3372)] = 92527, + [SMALL_STATE(3373)] = 92541, + [SMALL_STATE(3374)] = 92555, + [SMALL_STATE(3375)] = 92569, + [SMALL_STATE(3376)] = 92583, + [SMALL_STATE(3377)] = 92597, + [SMALL_STATE(3378)] = 92611, + [SMALL_STATE(3379)] = 92625, + [SMALL_STATE(3380)] = 92639, + [SMALL_STATE(3381)] = 92653, + [SMALL_STATE(3382)] = 92667, + [SMALL_STATE(3383)] = 92681, + [SMALL_STATE(3384)] = 92695, + [SMALL_STATE(3385)] = 92709, + [SMALL_STATE(3386)] = 92723, + [SMALL_STATE(3387)] = 92737, + [SMALL_STATE(3388)] = 92751, + [SMALL_STATE(3389)] = 92765, + [SMALL_STATE(3390)] = 92779, + [SMALL_STATE(3391)] = 92793, + [SMALL_STATE(3392)] = 92807, + [SMALL_STATE(3393)] = 92821, + [SMALL_STATE(3394)] = 92835, + [SMALL_STATE(3395)] = 92849, + [SMALL_STATE(3396)] = 92863, + [SMALL_STATE(3397)] = 92877, + [SMALL_STATE(3398)] = 92891, + [SMALL_STATE(3399)] = 92905, + [SMALL_STATE(3400)] = 92919, + [SMALL_STATE(3401)] = 92933, + [SMALL_STATE(3402)] = 92947, + [SMALL_STATE(3403)] = 92961, + [SMALL_STATE(3404)] = 92975, + [SMALL_STATE(3405)] = 92989, + [SMALL_STATE(3406)] = 93003, + [SMALL_STATE(3407)] = 93017, + [SMALL_STATE(3408)] = 93031, + [SMALL_STATE(3409)] = 93045, + [SMALL_STATE(3410)] = 93059, + [SMALL_STATE(3411)] = 93073, + [SMALL_STATE(3412)] = 93087, + [SMALL_STATE(3413)] = 93101, + [SMALL_STATE(3414)] = 93115, + [SMALL_STATE(3415)] = 93129, + [SMALL_STATE(3416)] = 93143, + [SMALL_STATE(3417)] = 93157, + [SMALL_STATE(3418)] = 93171, + [SMALL_STATE(3419)] = 93185, + [SMALL_STATE(3420)] = 93199, + [SMALL_STATE(3421)] = 93213, + [SMALL_STATE(3422)] = 93227, + [SMALL_STATE(3423)] = 93241, + [SMALL_STATE(3424)] = 93255, + [SMALL_STATE(3425)] = 93269, + [SMALL_STATE(3426)] = 93283, + [SMALL_STATE(3427)] = 93297, + [SMALL_STATE(3428)] = 93311, + [SMALL_STATE(3429)] = 93325, + [SMALL_STATE(3430)] = 93339, + [SMALL_STATE(3431)] = 93353, + [SMALL_STATE(3432)] = 93367, + [SMALL_STATE(3433)] = 93381, + [SMALL_STATE(3434)] = 93395, + [SMALL_STATE(3435)] = 93409, + [SMALL_STATE(3436)] = 93423, + [SMALL_STATE(3437)] = 93437, + [SMALL_STATE(3438)] = 93451, + [SMALL_STATE(3439)] = 93465, + [SMALL_STATE(3440)] = 93479, + [SMALL_STATE(3441)] = 93493, + [SMALL_STATE(3442)] = 93507, + [SMALL_STATE(3443)] = 93521, + [SMALL_STATE(3444)] = 93535, + [SMALL_STATE(3445)] = 93549, + [SMALL_STATE(3446)] = 93563, + [SMALL_STATE(3447)] = 93577, + [SMALL_STATE(3448)] = 93591, + [SMALL_STATE(3449)] = 93605, + [SMALL_STATE(3450)] = 93619, + [SMALL_STATE(3451)] = 93633, + [SMALL_STATE(3452)] = 93647, + [SMALL_STATE(3453)] = 93661, + [SMALL_STATE(3454)] = 93675, + [SMALL_STATE(3455)] = 93689, + [SMALL_STATE(3456)] = 93703, + [SMALL_STATE(3457)] = 93717, + [SMALL_STATE(3458)] = 93731, + [SMALL_STATE(3459)] = 93745, + [SMALL_STATE(3460)] = 93759, + [SMALL_STATE(3461)] = 93773, + [SMALL_STATE(3462)] = 93787, + [SMALL_STATE(3463)] = 93801, + [SMALL_STATE(3464)] = 93815, + [SMALL_STATE(3465)] = 93829, + [SMALL_STATE(3466)] = 93843, + [SMALL_STATE(3467)] = 93857, + [SMALL_STATE(3468)] = 93871, + [SMALL_STATE(3469)] = 93885, + [SMALL_STATE(3470)] = 93899, + [SMALL_STATE(3471)] = 93913, + [SMALL_STATE(3472)] = 93927, + [SMALL_STATE(3473)] = 93941, + [SMALL_STATE(3474)] = 93955, + [SMALL_STATE(3475)] = 93969, + [SMALL_STATE(3476)] = 93983, + [SMALL_STATE(3477)] = 93997, + [SMALL_STATE(3478)] = 94011, + [SMALL_STATE(3479)] = 94025, + [SMALL_STATE(3480)] = 94039, + [SMALL_STATE(3481)] = 94053, + [SMALL_STATE(3482)] = 94067, + [SMALL_STATE(3483)] = 94081, + [SMALL_STATE(3484)] = 94095, + [SMALL_STATE(3485)] = 94109, + [SMALL_STATE(3486)] = 94123, + [SMALL_STATE(3487)] = 94137, + [SMALL_STATE(3488)] = 94151, + [SMALL_STATE(3489)] = 94165, + [SMALL_STATE(3490)] = 94179, + [SMALL_STATE(3491)] = 94193, + [SMALL_STATE(3492)] = 94207, + [SMALL_STATE(3493)] = 94221, + [SMALL_STATE(3494)] = 94235, + [SMALL_STATE(3495)] = 94249, + [SMALL_STATE(3496)] = 94263, + [SMALL_STATE(3497)] = 94277, + [SMALL_STATE(3498)] = 94291, + [SMALL_STATE(3499)] = 94305, + [SMALL_STATE(3500)] = 94319, + [SMALL_STATE(3501)] = 94333, + [SMALL_STATE(3502)] = 94347, + [SMALL_STATE(3503)] = 94361, + [SMALL_STATE(3504)] = 94375, + [SMALL_STATE(3505)] = 94389, + [SMALL_STATE(3506)] = 94403, + [SMALL_STATE(3507)] = 94407, + [SMALL_STATE(3508)] = 94411, + [SMALL_STATE(3509)] = 94415, + [SMALL_STATE(3510)] = 94419, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1463), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(603), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2698), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(171), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1431), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2937), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(159), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2942), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(850), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(781), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3467), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2019), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2002), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1047), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1024), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3450), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3005), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(848), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(815), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2430), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(205), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3371), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1921), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2270), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3359), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3358), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3357), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1487), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1989), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1856), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(102), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1998), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(40), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3030), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2434), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1274), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2435), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1100), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1434), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3251), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1958), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1434), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1034), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(87), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(26), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(82), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(171), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1431), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2937), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(159), - [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3315), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(850), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(781), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3467), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2356), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(41), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2445), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1047), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1171), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(825), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(84), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2498), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(220), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(42), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2725), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2446), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(101), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(40), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(36), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3030), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2500), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1274), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2435), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1100), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1434), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3251), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1434), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1034), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(87), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(26), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(82), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(171), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1431), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2937), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(159), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(850), - [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3467), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2356), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(41), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2445), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1047), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1171), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(825), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(84), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2498), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(220), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2725), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2446), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(101), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(40), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3030), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2500), - [824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1274), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2435), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1100), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1434), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3251), - [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1434), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 26), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 26), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 6), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 6), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 6), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 6), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 138), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 138), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 233), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 233), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 39), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 39), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 34), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 34), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 93), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 93), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 29), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 29), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 69), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 69), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 24), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 24), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 110), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 110), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(333), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(421), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(353), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(349), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(347), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(421), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(3227), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(430), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2523), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(432), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(441), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1469), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(585), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2960), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(105), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8), + [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(78), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(300), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1448), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2970), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(157), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2973), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(856), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(790), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3504), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2031), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(40), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2045), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1083), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1041), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3413), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3034), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(853), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(809), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2506), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(245), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3410), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1949), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(37), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2310), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3398), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3397), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3396), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1492), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2013), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1878), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(100), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2041), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3044), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2584), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1282), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2528), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1106), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1452), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3372), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1964), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1452), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1037), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(105), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(33), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(78), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(300), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1448), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2970), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(157), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3340), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(856), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(790), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3504), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2374), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(40), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2556), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1083), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1204), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(823), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(110), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2539), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(176), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(37), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2795), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2558), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(111), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(41), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(42), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3044), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2541), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1282), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2528), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1106), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1452), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3372), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1452), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 29), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 29), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1037), + [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(105), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(78), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(300), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1448), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2970), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(157), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(856), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(790), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3504), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2374), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(40), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2556), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1083), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1204), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(823), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(110), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2539), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(176), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(37), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2795), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2558), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(111), + [834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(41), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3044), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2541), + [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1282), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2528), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1106), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1452), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3372), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1452), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 42), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 42), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 141), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 141), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 8), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 8), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 72), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 72), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 37), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 37), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 8), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 8), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 32), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 32), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 113), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 113), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 236), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 236), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 96), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 96), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 27), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 27), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(445), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(430), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(349), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(348), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(347), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(430), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(3338), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(432), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2602), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(438), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(428), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(343), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(427), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(386), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(454), + [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(451), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(359), [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(385), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(381), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(427), - [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(343), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(449), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(2581), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(444), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(352), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(423), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(409), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(407), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(397), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(423), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(3280), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(430), - [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2523), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(432), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(352), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(422), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(422), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 189), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 189), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(431), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(431), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 111), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 111), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 164), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 164), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1986), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(766), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(786), - [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2200), - [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2675), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3080), - [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3097), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(806), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3315), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(850), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(781), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2580), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2057), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2825), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(819), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(829), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2676), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3091), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2258), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2544), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2271), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2530), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2530), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 2), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 2), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 238), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 238), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 40), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 40), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 135), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 135), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 129), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 129), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 237), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 237), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 236), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 236), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 196), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 196), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 83), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 83), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 131), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 131), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 129), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 129), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 134), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 134), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 133), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 133), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 130), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 130), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 232), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 232), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 187), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 129), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 129), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 128), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 128), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 53), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 53), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 127), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 127), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 231), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 231), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 239), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 239), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 126), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 126), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 106), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 106), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 240), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 240), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 125), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 125), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 129), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 129), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 241), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 241), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 33), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 33), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 49), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 49), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 131), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 131), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 124), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 124), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 136), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 136), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 131), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 131), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 242), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 242), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 106), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 106), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 137), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 137), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 106), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 106), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 25), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 25), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 66), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 66), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 230), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 230), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 3), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 3), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 25), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 25), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 25), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 25), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 25), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 25), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 3), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 3), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 49), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 49), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 105), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 105), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 229), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 229), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 2), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 2), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 270), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 270), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 30), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 30), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 2), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 2), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 213), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 213), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 265), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 265), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 269), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 269), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 28), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 28), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 119), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 119), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 111), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 103), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 103), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 27), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 27), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 15), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 15), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 117), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 117), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 244), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 244), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 215), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 116), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 116), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 73), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 73), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 268), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 268), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 115), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 245), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 245), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 114), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 267), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 267), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 109), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 109), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 67), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 67), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 108), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 108), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 107), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 107), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 106), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 106), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 25), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 25), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 246), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 246), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 247), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 247), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 107), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 107), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 148), - [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 148), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 258), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 258), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 266), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 266), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 265), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 265), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 105), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 105), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 149), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 149), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 150), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 150), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 248), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 248), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 249), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 249), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 228), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 228), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 227), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 227), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 226), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 226), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 152), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 153), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 225), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 225), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 114), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 114), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 183), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 183), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 131), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 131), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 117), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 117), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 224), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 224), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 223), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 223), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 222), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 222), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 160), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 160), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 161), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 161), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 162), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 162), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 163), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 163), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 221), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 221), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 220), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 220), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 264), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 264), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 167), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 167), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 219), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 219), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 66), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 66), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 217), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 217), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 218), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 218), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 217), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 217), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 216), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 216), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 215), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 215), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 214), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 214), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 213), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 213), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 252), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 252), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 172), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 124), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 124), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 173), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 173), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 173), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 173), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 126), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 126), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 174), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 174), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 175), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 175), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 263), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 263), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 176), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 176), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 250), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 250), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 178), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 178), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 2), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 2), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 181), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 181), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 133), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 182), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 182), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 167), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 167), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 49), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 49), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 176), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 176), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 83), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 83), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 131), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 131), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 176), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 176), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 183), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 183), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 176), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 176), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 219), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 219), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 65), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 65), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 66), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 66), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 251), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 251), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 252), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 252), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 67), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 67), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 184), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 184), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 242), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 242), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 68), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 68), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 185), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 185), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 253), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 253), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 223), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 223), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 186), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 186), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 254), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 254), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 91), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 91), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 187), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 187), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 83), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 83), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 188), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 188), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 83), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 83), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 255), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 255), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 193), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 193), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 90), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 90), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 89), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 89), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, .production_id = 225), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, .production_id = 225), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 256), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 256), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 88), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 88), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 230), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 257), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 257), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 83), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 83), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 258), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 258), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 6), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3181), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1099), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2679), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3321), - [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2962), - [2702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3010), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(850), - [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2180), - [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2216), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2185), - [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3217), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3006), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(853), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(828), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3212), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1921), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2716), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3208), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3206), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3202), - [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2714), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2190), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1855), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1996), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3198), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1949), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3198), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 73), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 73), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 74), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 15), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 15), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 210), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 210), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 76), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 76), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 49), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 49), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 259), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 259), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 2), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 2), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 88), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 88), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 260), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 260), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 248), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 248), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 262), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 262), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 83), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 83), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 82), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 82), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 53), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 53), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 193), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 193), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 209), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 209), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 66), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 66), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 261), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 261), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 65), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 65), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 208), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 208), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 79), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 79), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 207), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 207), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 81), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 81), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 66), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 66), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 246), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 246), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 158), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 158), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 156), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 156), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 196), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 196), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 80), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 80), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 65), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 65), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 197), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 197), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 25), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 25), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 65), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 65), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 79), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 79), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 66), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 66), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 153), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 153), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 199), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 199), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 149), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 149), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 151), - [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 151), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 198), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 198), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 5), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 5), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, .production_id = 98), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, .production_id = 98), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, .production_id = 99), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, .production_id = 99), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 111), - [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 111), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 111), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 164), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 164), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 164), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 17), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 17), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 23), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 23), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 57), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 57), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 56), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 56), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 20), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 20), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 21), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 21), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 3), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 54), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 54), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 22), - [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 22), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 101), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 101), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 42), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 121), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 121), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 139), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 139), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 140), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 140), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 102), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 102), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 97), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 97), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 96), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 96), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 4), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 4), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 191), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 191), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, .production_id = 168), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, .production_id = 168), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 53), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 53), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 53), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 53), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 52), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 52), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 94), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 94), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 92), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 92), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, .production_id = 11), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 14), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 14), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 15), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 15), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 31), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, .production_id = 31), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 78), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 78), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 37), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 37), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 47), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 47), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 48), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3396), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 70), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 70), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 70), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 70), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 70), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 70), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 43), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 120), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 120), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 179), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 111), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 194), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 147), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 195), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 132), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 235), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 164), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 111), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 95), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 14), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 5), REDUCE(sym__pattern, 1), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 41), REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), - [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 2), REDUCE(sym_scoped_type_identifier, 2, .production_id = 3), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 62), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 62), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 60), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 60), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 59), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 59), - [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 59), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 59), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 60), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 60), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 59), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 59), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 59), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, .production_id = 1), - [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 59), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(812), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 73), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(341), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(345), - [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(348), - [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(2143), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(2174), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 64), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 2), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 59), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 59), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(399), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(396), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(451), + [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(454), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(453), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(2455), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(452), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(437), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(430), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(389), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(390), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(391), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(430), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(3332), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(432), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2602), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(438), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(437), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(430), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(430), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 192), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 192), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(451), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(451), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 114), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 114), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 167), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 167), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2009), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(775), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(791), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2221), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2864), + [1649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3124), + [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3138), + [1655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(815), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3340), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(856), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(790), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2461), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2059), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2751), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(812), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(839), + [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2861), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3132), + [1688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2306), + [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2544), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2336), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2571), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2571), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 164), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 164), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 208), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 208), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 36), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 36), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 151), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 151), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 152), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 152), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 110), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 110), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 28), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 28), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 86), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 43), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 43), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 153), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 153), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 154), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 154), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 190), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 190), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 28), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 28), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 93), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 93), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 183), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 28), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 28), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 199), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 199), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 234), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 234), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 233), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 233), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 232), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 232), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 92), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 92), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 231), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 231), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 230), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 230), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 229), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 229), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 228), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 228), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 186), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 186), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 134), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 134), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 227), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 227), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 226), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 226), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 225), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 225), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 239), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 239), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 91), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 91), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 204), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 86), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 86), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 183), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 240), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 240), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3004), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1403), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2873), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3465), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3006), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3030), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(856), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2346), + [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2218), + [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2155), + [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3231), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3029), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(858), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(825), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3226), + [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1949), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2926), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3227), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3228), + [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3229), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2927), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2157), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1876), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2014), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3236), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1988), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3236), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 206), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 206), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 224), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 224), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 241), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 241), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 52), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 52), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 242), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 242), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 33), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 33), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 184), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 184), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 136), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 185), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 185), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 31), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 31), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 170), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 170), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 30), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 30), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 18), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 18), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 243), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 243), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 269), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 269), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 223), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 223), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 179), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 179), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 244), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 244), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 28), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 28), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 91), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 91), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 86), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 86), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 108), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 108), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 134), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 134), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 251), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 251), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 179), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 179), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 245), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 245), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 186), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 186), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 179), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 179), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 117), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 117), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 187), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 187), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 188), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 188), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 86), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 86), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 189), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 189), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 109), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 109), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 85), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 85), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 56), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 56), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 110), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 110), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 111), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 111), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 70), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 70), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 216), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 216), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 247), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 247), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 218), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 218), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 86), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 86), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 248), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 248), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 249), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 249), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 250), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 250), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 222), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 222), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 221), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 221), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 112), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 112), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 129), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 129), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 220), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 220), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 139), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 139), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 252), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 252), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 273), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 273), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 160), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 160), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 219), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 219), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 218), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 218), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 161), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 161), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 217), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 217), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 162), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 216), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 216), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 176), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 176), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 120), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 120), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 181), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 181), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 190), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 190), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 220), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 220), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 253), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 253), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 165), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 165), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 52), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 52), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 177), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 177), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 191), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 191), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 166), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 166), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 267), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 267), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 69), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 69), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 68), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 68), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 222), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 94), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 94), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 254), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 254), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 8), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 8), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 82), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 82), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 84), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 84), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 255), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 255), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 196), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 196), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 268), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 268), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 213), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 213), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 256), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 256), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 226), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 226), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 257), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 257), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 245), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 245), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 258), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 258), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 212), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 212), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 211), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 211), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 210), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 210), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 129), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 129), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 209), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 209), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 161), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 161), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 109), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 109), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 69), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 69), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 170), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 170), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 83), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 83), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 235), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 235), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 159), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 159), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 68), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 68), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, .production_id = 228), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, .production_id = 228), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 259), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 259), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 272), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 272), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 128), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 128), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 233), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 260), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 260), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 261), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 261), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 127), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 127), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 268), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 268), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 176), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 176), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 126), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 126), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 117), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 117), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 69), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 69), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 118), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 82), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 82), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 68), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 68), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 76), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 76), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 140), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 140), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 114), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 114), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 262), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 262), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 134), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 134), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 68), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 68), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 69), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 69), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 28), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 28), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 207), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 207), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 70), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 70), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 255), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 255), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 71), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 71), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 132), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 132), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 122), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 122), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 52), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 52), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 134), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 134), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 138), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 138), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 132), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 132), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 156), + [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 156), + [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 86), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 86), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 154), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 154), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 201), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 201), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 271), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 271), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 134), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 134), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 108), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 108), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 127), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 127), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 132), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 132), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 152), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 152), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 263), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 263), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 52), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 52), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 76), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 76), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 77), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 77), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 137), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 137), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 136), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 136), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 18), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 18), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 78), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 78), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 200), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 200), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 79), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 79), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 134), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 134), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 199), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 199), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 133), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 133), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 132), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 131), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 131), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 28), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 28), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 69), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 69), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 56), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 56), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 109), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 109), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 270), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 270), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 196), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 196), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 264), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 264), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 130), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 130), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 266), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 266), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 261), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 261), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 175), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 175), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 251), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 251), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 125), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 125), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 69), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 69), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 249), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 249), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 265), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 265), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 7), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 7), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, .production_id = 101), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, .production_id = 101), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, .production_id = 102), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, .production_id = 102), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 45), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 45), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 44), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 44), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 22), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 22), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 167), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 167), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 167), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 114), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 114), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 114), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 59), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 59), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 25), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 25), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 60), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 60), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 39), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 45), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 48), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 48), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 49), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 49), + [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 57), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 57), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 26), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 26), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 104), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 104), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 16), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 19), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 19), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 20), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 20), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 24), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 24), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 124), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 124), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 143), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 143), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 145), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 145), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 146), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 146), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 147), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 147), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 142), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 142), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 99), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 99), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 194), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 194), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 56), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 56), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 56), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 56), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 55), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 55), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 97), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 97), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, .production_id = 171), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, .production_id = 171), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 10), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 10), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 95), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 95), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 11), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 11), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 18), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 18), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 17), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 17), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 13), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, .production_id = 13), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 81), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 81), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 34), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, .production_id = 34), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 40), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 41), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 40), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 46), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 46), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 50), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 50), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 51), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 73), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 73), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3437), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 73), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 73), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 73), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 73), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 46), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 46), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 47), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 47), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 123), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 123), + [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 114), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 182), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 114), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 197), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 167), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 238), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 198), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 150), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 135), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 17), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 98), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 7), REDUCE(sym__pattern, 1), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 44), REDUCE(sym_scoped_type_identifier, 3, .production_id = 45), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 15), REDUCE(sym_scoped_type_identifier, 3, .production_id = 16), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [4516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 65), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 65), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 61), + [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 61), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [4576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, .production_id = 1), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 62), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 62), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 62), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 63), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 62), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 63), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 62), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 63), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 62), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 62), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 63), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 62), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(827), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(2346), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(2176), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(339), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(345), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(341), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 76), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 67), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 62), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 62), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 99), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 18), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 172), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 18), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 56), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1953), + [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(330), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 169), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 15), - [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 169), - [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1938), - [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(331), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 15), - [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 53), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 53), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 211), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 96), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 70), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1437), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 211), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 96), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 243), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 243), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(2450), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(114), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 63), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 71), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 72), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 103), - [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), - [5743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), SHIFT_REPEAT(807), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 96), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 234), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 212), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 53), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 84), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 85), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 86), - [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 87), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 192), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2171), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 32), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 171), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 170), - [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 170), SHIFT_REPEAT(779), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 15), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 190), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 7), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(972), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(338), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 105), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 61), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 30), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [6146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(2279), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 146), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [6165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(2160), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(3050), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(771), - [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(795), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 104), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 112), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2165), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 113), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [6256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(494), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 44), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 71), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 72), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 145), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [6349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(2133), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [6354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1854), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [6571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 77), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 55), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 166), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 51), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 165), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 50), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6809] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 56), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 214), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 172), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 99), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1455), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 214), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 246), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 73), + [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 246), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(115), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(2804), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 74), + [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 75), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 106), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), SHIFT_REPEAT(841), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 66), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 108), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 9), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 87), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 88), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 89), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 90), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 33), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 18), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 74), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(2167), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 173), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 173), SHIFT_REPEAT(795), + [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 174), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 149), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(2325), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [5883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2165), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(3058), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 195), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 193), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(797), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 75), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(338), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 64), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(987), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(502), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [6031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(781), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 144), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 56), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 215), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 47), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 107), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 11), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 115), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2194), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 116), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 35), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 237), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 148), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 99), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1880), + [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(2178), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 58), + [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 80), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 168), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 169), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment, 1, .production_id = 2), + [6685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment, 1, .production_id = 3), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line_doc_comment, 1, .production_id = 3), + [6695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line_doc_comment, 1, .production_id = 2), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6839] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 54), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 53), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 14), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, .production_id = 14), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3), + [6947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), }; enum ts_external_scanner_symbol_identifiers { ts_external_token__string_content = 0, ts_external_token_raw_string_literal = 1, ts_external_token_float_literal = 2, - ts_external_token_block_comment = 3, + ts_external_token__outer_block_doc_comment = 3, + ts_external_token__inner_block_doc_comment = 4, + ts_external_token_STAR_SLASH = 5, + ts_external_token__error_sentinel = 6, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__string_content] = sym__string_content, [ts_external_token_raw_string_literal] = sym_raw_string_literal, [ts_external_token_float_literal] = sym_float_literal, - [ts_external_token_block_comment] = sym_block_comment, + [ts_external_token__outer_block_doc_comment] = sym__outer_block_doc_comment, + [ts_external_token__inner_block_doc_comment] = sym__inner_block_doc_comment, + [ts_external_token_STAR_SLASH] = anon_sym_STAR_SLASH, + [ts_external_token__error_sentinel] = sym__error_sentinel, }; -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[7][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__string_content] = true, [ts_external_token_raw_string_literal] = true, [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, + [ts_external_token__outer_block_doc_comment] = true, + [ts_external_token__inner_block_doc_comment] = true, + [ts_external_token__error_sentinel] = true, }, [2] = { [ts_external_token_raw_string_literal] = true, [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, }, [3] = { - [ts_external_token_block_comment] = true, + [ts_external_token__outer_block_doc_comment] = true, + [ts_external_token__inner_block_doc_comment] = true, + [ts_external_token_STAR_SLASH] = true, }, [4] = { [ts_external_token__string_content] = true, - [ts_external_token_block_comment] = true, }, [5] = { [ts_external_token_float_literal] = true, - [ts_external_token_block_comment] = true, + }, + [6] = { + [ts_external_token_STAR_SLASH] = true, }, };